- Patch by Rodeo so its his fault. ;)
- Addresses http://forum.handbrake.fr/viewtopic.php?f=4&t=13114
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2942
b64f7644-9d1e-0410-96f1-
a4d463321fa5
/* check if we have a 6ch discrete conversion in either audio track */
if ([[mixdownPopUp selectedItem] tag] == HB_AMIXDOWN_6CH)
{
- /* FAAC is happy using our min bitrate of 32 kbps, even for 6ch */
- minbitrate = 32;
- /* If either mixdown popup includes 6-channel discrete, then allow up to 384 kbps */
- maxbitrate = 384;
+ /* 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;
break;
}
else