summaryrefslogtreecommitdiffstats
path: root/macosx/Controller.m
diff options
context:
space:
mode:
authordynaflash <[email protected]>2010-04-14 17:04:01 +0000
committerdynaflash <[email protected]>2010-04-14 17:04:01 +0000
commit11da8e43bff624ee1dea51c99969ca5f97e44723 (patch)
tree9579cdf75c2a04be1d2d838994f526f64032e5a0 /macosx/Controller.m
parent18a10c15de751301f5a67ede5f917a761bf060a5 (diff)
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://svn.handbrake.fr/HandBrake/trunk@3223 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.m')
-rw-r--r--macosx/Controller.m7
1 files changed, 3 insertions, 4 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m
index f38320481..71cc5a618 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;
}