]> granicus.if.org Git - handbrake/commitdiff
MacGui: change the min and max bitrate for faac six channel discrete encodes.
authordynaflash <dynaflashtech@gmail.com>
Wed, 18 Nov 2009 20:27:18 +0000 (20:27 +0000)
committerdynaflash <dynaflashtech@gmail.com>
Wed, 18 Nov 2009 20:27:18 +0000 (20:27 +0000)
- 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

macosx/Controller.m

index 8fcd1ba7b253e223f66028e1ceb59adf2c8f86bc..32b1395c2ce4e7dbf58fc73018fb0079159711a3 100644 (file)
@@ -5599,10 +5599,10 @@ the user is using "Custom" settings by determining the sender*/
             /* 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