diff options
author | jstebbins <[email protected]> | 2009-08-26 16:29:05 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-08-26 16:29:05 +0000 |
commit | 60fae20f233b2c8c4a0576fe46f5527e9c66552a (patch) | |
tree | c653ce7cafb878cb1ad9086c0b5b7f489b2ef976 /gtk/src/widgetdeps.c | |
parent | 31f7fbe8dd16aa524a8e3675060423127956a3e9 (diff) |
LinGui: picture filter changes
- change "None" to "Off" for detelecine, decomb, deinterlace, and denoise
- add decomb/deinterlace switch, hide controls that are not active
- update builtin presets to reflect change in order of "Custom" option
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2777 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/widgetdeps.c')
-rw-r--r-- | gtk/src/widgetdeps.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gtk/src/widgetdeps.c b/gtk/src/widgetdeps.c index 598b86b4e..4747f69de 100644 --- a/gtk/src/widgetdeps.c +++ b/gtk/src/widgetdeps.c @@ -40,8 +40,12 @@ static dependency_t dep_map[] = {"FileFormat", "Mp4LargeFile", "mp4", FALSE, TRUE}, {"FileFormat", "Mp4HttpOptimize", "mp4", FALSE, TRUE}, {"FileFormat", "Mp4iPodCompatible", "mp4", FALSE, TRUE}, - {"PictureDecomb", "PictureDeinterlace", "none", FALSE, FALSE}, - {"PictureDecomb", "PictureDeinterlaceCustom", "none", FALSE, TRUE}, + {"PictureDecombDeinterlace", "PictureDeinterlace", "TRUE", TRUE, TRUE}, + {"PictureDecombDeinterlace", "PictureDeinterlaceCustom", "TRUE", TRUE, TRUE}, + {"PictureDecombDeinterlace", "PictureDeinterlaceLabel", "TRUE", TRUE, TRUE}, + {"PictureDecombDeinterlace", "PictureDecomb", "FALSE", TRUE, TRUE}, + {"PictureDecombDeinterlace", "PictureDecombCustom", "FALSE", TRUE, TRUE}, + {"PictureDecombDeinterlace", "PictureDecombLabel", "FALSE", TRUE, TRUE}, {"PictureDeinterlace", "PictureDeinterlaceCustom", "custom", FALSE, TRUE}, {"PictureDenoise", "PictureDenoiseCustom", "custom", FALSE, TRUE}, {"PictureDecomb", "PictureDecombCustom", "custom", FALSE, TRUE}, |