diff options
Diffstat (limited to 'macosx/HBAudioController.m')
-rw-r--r-- | macosx/HBAudioController.m | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/macosx/HBAudioController.m b/macosx/HBAudioController.m index b275f7a82..cc1a62165 100644 --- a/macosx/HBAudioController.m +++ b/macosx/HBAudioController.m @@ -302,6 +302,14 @@ NSString *HBMixdownChangedNotification = @"HBMixdownChangedNotification"; [dict setObject: @"AAC (CoreAudio)" forKey: @"AudioEncoder"]; } + // Auto Passthru not yet enabled - fallback to AC3 Passthru as it is + // compatible with all source codecs (via the AC3 encoder fallback) + if ([key isEqualToString: @"Auto Passthru"]) + { + [dict setObject: @"AC3 Passthru" forKey: @"AudioEncoder"]; + key = @"AC3 Passthru"; + } + // passthru fallbacks if ([key isEqualToString: @"AAC Passthru"]) { |