diff options
author | jstebbins <[email protected]> | 2009-07-12 19:59:41 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-07-12 19:59:41 +0000 |
commit | 33966cd4cdaecff781a9cfeff7aa108a31465323 (patch) | |
tree | ba7864dab30b6567e057638a9e3ba1d8ea27811f /gtk | |
parent | 1cd30250857de0992ea0e3c3c48ab932b5249401 (diff) |
LinGui: update decomb filter string validation.
it can now have up to 15 parameters
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2686 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/src/hb-backend.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/src/hb-backend.c b/gtk/src/hb-backend.c index 89b0c7599..db9199869 100644 --- a/gtk/src/hb-backend.c +++ b/gtk/src/hb-backend.c @@ -3378,7 +3378,7 @@ ghb_validate_filters(signal_user_data_t *ud) gint index; gchar *message; - // deinte 4 + // deinte index = ghb_settings_combo_int(ud->settings, "PictureDeinterlace"); if (index == 1) { @@ -3412,12 +3412,12 @@ ghb_validate_filters(signal_user_data_t *ud) } g_free(str); } - // decomb 4 + // decomb index = ghb_settings_combo_int(ud->settings, "PictureDecomb"); if (index == 1) { str = ghb_settings_get_string(ud->settings, "PictureDecombCustom"); - if (!ghb_validate_filter_string(str, 7)) + if (!ghb_validate_filter_string(str, 15)) { message = g_strdup_printf( "Invalid Decomb Settings:\n\n%s\n", @@ -3429,7 +3429,7 @@ ghb_validate_filters(signal_user_data_t *ud) } g_free(str); } - // denois 4 + // denois index = ghb_settings_combo_int(ud->settings, "PictureDenoise"); if (index == 1) { |