diff options
author | Rodeo <[email protected]> | 2011-09-19 21:15:01 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2011-09-19 21:15:01 +0000 |
commit | a3367322b982a61975df2a28307455d16a7ab081 (patch) | |
tree | 6cd2359254fc23066d3a08e9edfc43e93898937c /macosx/HBAudioController.m | |
parent | 3453ca5ca1601c613e2998fc18ce49f5a13fe0b5 (diff) |
libhb: Auto Passthru and audio/video encoder lists.
This adds Auto Passthru as another encoder in libhb.
Used in LinGUI and CLI. MacGUI features a partial impplmentation (with hardcoded values), which is disabled for now.
Also, audio and video encoders are now stored in "lists", like we previously did for mixdowns.
New mixdown "None" (HB_AMIXDOWN_NONE) added to hb_audio_mixdowns (was previously declared in MacGUI/LinGUI).
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4237 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBAudioController.m')
-rw-r--r-- | macosx/HBAudioController.m | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/macosx/HBAudioController.m b/macosx/HBAudioController.m index 16538c2ff..b275f7a82 100644 --- a/macosx/HBAudioController.m +++ b/macosx/HBAudioController.m @@ -302,14 +302,6 @@ NSString *HBMixdownChangedNotification = @"HBMixdownChangedNotification"; [dict setObject: @"AAC (CoreAudio)" forKey: @"AudioEncoder"]; } - // Auto Passthru not yet implemented - 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"]) { |