diff options
author | jstebbins <[email protected]> | 2014-06-18 21:26:44 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-06-18 21:26:44 +0000 |
commit | 80a124ff2567ac45b26a606d425420a1ee590506 (patch) | |
tree | c298a7164dc5fd1d21e730fbd3ae66dc7820272b /macosx/HBPresets.m | |
parent | c152bd90aec1ab2d28edd26a08f3d4760d01b167 (diff) |
macui/cli/libhb: cleanup
macui: Simplifies code in Controller.m and fixes a few bugs
macui: Fixes "Windows 8 Phone" preset aspect ratio problem
macui: round up to next mod boundary when limiting to title dimensions - crop
libhb: Eliminates hb_fix_aspect and hb_set_size functions.
libhb: Makes hb_validate_size a passthru to hb_set_anamorphic_size
cli: eliminage use of hb_validate_size
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6215 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBPresets.m')
-rw-r--r-- | macosx/HBPresets.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBPresets.m b/macosx/HBPresets.m index e47b7fd77..4afac4113 100644 --- a/macosx/HBPresets.m +++ b/macosx/HBPresets.m @@ -1140,7 +1140,7 @@ [preset setObject:[NSNumber numberWithInt:720] forKey:@"PictureHeight"]; [preset setObject:[NSNumber numberWithInt:0] forKey:@"PicturePAR"]; //None [preset setObject:[NSNumber numberWithInt:2] forKey:@"PictureModulus"]; - [preset setObject:[NSNumber numberWithInt:0] forKey:@"PictureKeepRatio"]; //set to 0 for Loose (FIXME: why?) + [preset setObject:[NSNumber numberWithInt:1] forKey:@"PictureKeepRatio"]; /* Picture filters */ [preset setObject:[NSNumber numberWithInt:1] forKey:@"UsesPictureFilters"]; |