summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authordynaflash <[email protected]>2010-10-05 16:36:19 +0000
committerdynaflash <[email protected]>2010-10-05 16:36:19 +0000
commit35019fa7cd7df9ee7278c01554b768856db27e1d (patch)
treeac19724b8abb9810b3bfc097a14372ebcda12d93 /macosx
parentafffc15c0fec6680f6a612c729d184d92fbc809c (diff)
MacGui: Remove the audio encoder bitrate cap.
- This used to cap the bitrate available in the ui to the sources audio bitrate. - Note: this can allow people to do stupid things. A more elegant solution is forthcoming. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3571 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r--macosx/HBAudio.m9
1 files changed, 1 insertions, 8 deletions
diff --git a/macosx/HBAudio.m b/macosx/HBAudio.m
index b32d90d1f..62e0658b3 100644
--- a/macosx/HBAudio.m
+++ b/macosx/HBAudio.m
@@ -396,14 +396,7 @@ static NSDictionary *bitRate384 = nil;
shouldAdd = NO;
}
}
-
- // Now make sure the bitrate does not exceed the track's bitrate
- if (YES == shouldAdd) {
- if (currentBitRate > trackInputBitRate) {
- shouldAdd = NO;
- }
- }
-
+
if (YES == shouldAdd) {
[permittedBitRates addObject: dict];
}