diff options
author | Rodeo <tdskywalker@gmail.com> | 2013-06-20 17:24:36 +0000 |
---|---|---|
committer | Rodeo <tdskywalker@gmail.com> | 2013-06-20 17:24:36 +0000 |
commit | 35a67836e6cb56dea296dda376ef9b34089d1bb6 (patch) | |
tree | 5234d0e526b6f4d85e3a8d5a9d44eeffaa4f6c90 /macosx/HBAudioController.m | |
parent | f7fbce3a0ca517b886a38ec59e41d619d5e0c157 (diff) |
MacGui: get rid of now obsolete @"UseCoreAudio" preference and related widgets
MacGui doesn't include faac anymore. Mapping from faac to Core Audio is done by libhb's fallback mechanism.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5594 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBAudioController.m')
-rw-r--r-- | macosx/HBAudioController.m | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/macosx/HBAudioController.m b/macosx/HBAudioController.m index 52cc8284b..30a2f5e95 100644 --- a/macosx/HBAudioController.m +++ b/macosx/HBAudioController.m @@ -295,19 +295,8 @@ NSString *HBMixdownChangedNotification = @"HBMixdownChangedNotification"; [newAudio setVideoContainerTag: [self videoContainerTag]]; [newAudio setTrackFromIndex: trackIndex]; - // map faac to ca_aac for built-in presets (can be disabled in preferences) - if (0 == aType && - [[NSUserDefaults standardUserDefaults] boolForKey:@"UseCoreAudio"] && - [[dict objectForKey:@"AudioEncoder"] isEqualToString:@"AAC (faac)"]) - { - key = @"AAC (CoreAudio)"; - } - else - { - key = [dict objectForKey:@"AudioEncoder"]; - } - // map legacy encoder names via libhb + key = [dict objectForKey:@"AudioEncoder"]; if (key != nil) { const char *name; |