summaryrefslogtreecommitdiffstats
path: root/macosx/HBPresets.m
diff options
context:
space:
mode:
authordynaflash <[email protected]>2009-08-26 16:50:51 +0000
committerdynaflash <[email protected]>2009-08-26 16:50:51 +0000
commitd9288ec957cd0bab391a8580dd2975498f4e467e (patch)
tree1cea63826227881637efc56b97fd81e27ab7c504 /macosx/HBPresets.m
parente1bd59b0d835296f141ea8b20a41f4c34506e3e6 (diff)
MacGui: Picture Filters
- Re order NSPopupButton selections for Detelecine, Decomb, Deinterlace, and Denoise so the first three choices for each are ordered: Off, Custom, Default - Change so off is "Off" instead of "None" - NOTE: This *will* break any custom user presets that use these filters. You will need to recreate them. Built In Presets will be updated properly. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2779 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBPresets.m')
-rw-r--r--macosx/HBPresets.m5
1 files changed, 3 insertions, 2 deletions
diff --git a/macosx/HBPresets.m b/macosx/HBPresets.m
index 9092f4bd6..9b68e9135 100644
--- a/macosx/HBPresets.m
+++ b/macosx/HBPresets.m
@@ -636,11 +636,12 @@
/* Explicitly set the filters for built-in presets */
[preset setObject:[NSNumber numberWithInt:1] forKey:@"UsesPictureFilters"];
+ [preset setObject:[NSNumber numberWithInt:1] forKey:@"PictureDecombDeinterlace"];
[preset setObject:[NSNumber numberWithInt:0] forKey:@"PictureDeinterlace"];
[preset setObject:[NSNumber numberWithInt:0] forKey:@"PictureDenoise"];
[preset setObject:[NSNumber numberWithInt:0] forKey:@"PictureDeblock"];
- [preset setObject:[NSNumber numberWithInt:1] forKey:@"PictureDetelecine"];
- [preset setObject:[NSNumber numberWithInt:1] forKey:@"PictureDecomb"];
+ [preset setObject:[NSNumber numberWithInt:2] forKey:@"PictureDetelecine"];
+ [preset setObject:[NSNumber numberWithInt:2] forKey:@"PictureDecomb"];
/* Set crop settings here */
/* The Auto Crop Matrix in the Picture Window autodetects differences in crop settings */