From e2b69f7fa2e85bd12ad62145de1e51f87e246637 Mon Sep 17 00:00:00 2001 From: dynaflash Date: Tue, 5 Oct 2010 16:36:19 +0000 Subject: [PATCH] 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://localhost/HandBrake/trunk@3571 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- macosx/HBAudio.m | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/macosx/HBAudio.m b/macosx/HBAudio.m index b32d90d1..62e0658b 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]; } -- 2.11.0