OSDN Git Service

MacGui: change the min and max bitrate for faac six channel discrete encodes.
authordynaflash <dynaflash@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Wed, 18 Nov 2009 20:27:18 +0000 (20:27 +0000)
committerdynaflash <dynaflash@b64f7644-9d1e-0410-96f1-a4d463321fa5>
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://localhost/HandBrake/trunk@2942 b64f7644-9d1e-0410-96f1-a4d463321fa5

macosx/Controller.m

index 8fcd1ba..32b1395 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