From 7a2691ef25219a3017838cb8c2d67ff7a575dcfe Mon Sep 17 00:00:00 2001 From: dynaflash Date: Wed, 14 Apr 2010 17:04:01 +0000 Subject: [PATCH] MacGui: Allow up to 320 kbps bitrate for stereo and 768 kbps for 6 channel discrete when using the faac audio encoder as per rev 3222 to the libhb. git-svn-id: svn://localhost/HandBrake/trunk@3223 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- macosx/Controller.m | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/macosx/Controller.m b/macosx/Controller.m index f3832048..71cc5a61 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -5951,17 +5951,16 @@ the user is using "Custom" settings by determining the sender*/ { /* FAAC has a minimum of 192 kbps for 6-channel discrete */ minbitrate = 192; - /* If either mixdown popup includes 6-channel discrete, then allow up to 448 kbps */ - maxbitrate = 448; + /* If either mixdown popup includes 6-channel discrete, then allow up to 768 kbps */ + maxbitrate = 768; break; } else { /* FAAC is happy using our min bitrate of 32 kbps for stereo or mono */ minbitrate = 32; - /* FAAC won't honour anything more than 160 for stereo, so let's not offer it */ /* note: haven't dealt with mono separately here, FAAC will just use the max it can */ - maxbitrate = 160; + maxbitrate = 320; break; } -- 2.11.0