diff options
author | dynaflash <[email protected]> | 2009-11-20 21:46:39 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2009-11-20 21:46:39 +0000 |
commit | bbca17709dcc2986538b0c58612c6a0701a54c4d (patch) | |
tree | cde743f885a80c5d5139f787ea21b4736d28777a /macosx | |
parent | 557ce97371d16613017e537a3d20dd2972fcda51 (diff) |
MacGui: Change the subme=1 option in turbo first pass to subme=2 as per x264 dev Dark_Shikari.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2948 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/Controller.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m index 7047e5734..ea3460731 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -3373,7 +3373,7 @@ bool one_burned = FALSE; if( [[queueToApply objectForKey:@"VideoTwoPass"] intValue] == 1 && [[queueToApply objectForKey:@"VideoTurboTwoPass"] intValue] == 1 ) { /* pass the "Turbo" string to be appended to the existing x264 opts string into a variable for the first pass */ - NSString *firstPassOptStringTurbo = @":ref=1:subme=1:me=dia:analyse=none:trellis=0:no-fast-pskip=0:8x8dct=0:weightb=0"; + NSString *firstPassOptStringTurbo = @":ref=1:subme=2:me=dia:analyse=none:trellis=0:no-fast-pskip=0:8x8dct=0:weightb=0"; /* append the "Turbo" string variable to the existing opts string. Note: the "Turbo" string must be appended, not prepended to work properly*/ NSString *firstPassOptStringCombined = [[queueToApply objectForKey:@"x264Option"] stringByAppendingString:firstPassOptStringTurbo]; |