diff options
author | jbrjake <[email protected]> | 2007-08-31 14:23:06 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2007-08-31 14:23:06 +0000 |
commit | ae359cec5611cdacf436527fafc286fa30e34bea (patch) | |
tree | 984ded6e98d31a80d73a3b2ee118c45736f01fb9 /macosx | |
parent | b3a10e705540459c4c038dd2fc795627c3af11f3 (diff) |
MacGui: Fixes a minor typo in the x264 options for the QuickTime preset
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@910 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/Controller.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index f1c0673b1..ac4a8a5bb 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -4638,7 +4638,7 @@ the user is using "Custom" settings by determining the sender*/ /* Video encoder */ [preset setObject:@"x264 (h.264 Main)" forKey:@"VideoEncoder"]; /* x264 Option String */ - [preset setObject:@"ref=3:mixed-refs:bframes=3:bime:weightb:b-rdo:direct-auto:me=umh:subme=5:analyse=all:8x8dct:trellis=1:no-fast-pskip" forKey:@"x264Option"]; + [preset setObject:@"ref=3:mixed-refs:bframes=3:bime:weightb:b-rdo:direct=auto:me=umh:subme=5:analyse=all:8x8dct:trellis=1:no-fast-pskip" forKey:@"x264Option"]; /* Video quality */ [preset setObject:[NSNumber numberWithInt:1] forKey:@"VideoQualityType"]; [preset setObject:[fVidTargetSizeField stringValue] forKey:@"VideoTargetSize"]; |