diff options
author | dynaflash <[email protected]> | 2007-05-18 16:34:16 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2007-05-18 16:34:16 +0000 |
commit | 2d0944ef51714895056e4efabbc4ab4114115616 (patch) | |
tree | 3ce41ae743e082d7ab4af64bc76145674384b332 | |
parent | ed10e79c89fa39abcc408da6780abc1b14f3875b (diff) |
MacGui: Remove x264 option "No DCT-Decimate" value from option strings for any Built In HB Presets as they all use a target bitrate as per jbrjake.
Please update built in presets for this to take effect.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@589 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | macosx/Controller.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 697842053..65a1d7077 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -2721,7 +2721,7 @@ the user is using "Custom" settings by determining the sender*/ /* Video encoder */ [preset setObject:@"x264 (h.264 iPod)" forKey:@"VideoEncoder"]; /* x264 Option String */ - [preset setObject:@"frameref=1:bframes=0:nofast_pskip:subq=6:partitions=p8x8,p8x4,p4x8,i4x4:qcomp=0:me=umh:nodct_decimate" forKey:@"x264Option"]; + [preset setObject:@"frameref=1:bframes=0:nofast_pskip:subq=6:partitions=p8x8,p8x4,p4x8,i4x4:qcomp=0:me=umh" forKey:@"x264Option"]; /* Video quality */ [preset setObject:[NSNumber numberWithInt:1] forKey:@"VideoQualityType"]; [preset setObject:[fVidTargetSizeField stringValue] forKey:@"VideoTargetSize"]; @@ -2786,7 +2786,7 @@ the user is using "Custom" settings by determining the sender*/ /* Video encoder */ [preset setObject:@"x264 (h.264 Main)" forKey:@"VideoEncoder"]; /* x264 Option String (We can use this to tweak the appleTV output)*/ - [preset setObject:@"bframes=3:ref=1:subme=5:me=umh:no-fast-pskip=1:no-dct-decimate=1:trellis=2" forKey:@"x264Option"]; + [preset setObject:@"bframes=3:ref=1:subme=5:me=umh:no-fast-pskip=1:trellis=2" forKey:@"x264Option"]; /* Video quality */ [preset setObject:[NSNumber numberWithInt:1] forKey:@"VideoQualityType"]; [preset setObject:[fVidTargetSizeField stringValue] forKey:@"VideoTargetSize"]; |