summaryrefslogtreecommitdiffstats
path: root/libhb/preset.c
diff options
context:
space:
mode:
authorRodeo <[email protected]>2015-06-28 18:44:43 +0000
committerRodeo <[email protected]>2015-06-28 18:44:43 +0000
commit7a19505c34eae53aff8543226ad2b55e62c9df6d (patch)
tree12ef87cc63e8c256d9a142b502d7d348782386b3 /libhb/preset.c
parentb7eef0ad6ef14845a2a1fb89980ba971b4b6db98 (diff)
libhb fix some typos in hb_preset_apply_filters().
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7330 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/preset.c')
-rw-r--r--libhb/preset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/preset.c b/libhb/preset.c
index 3db53a2b1..e1097283e 100644
--- a/libhb/preset.c
+++ b/libhb/preset.c
@@ -1162,7 +1162,7 @@ int hb_preset_apply_filters(const hb_dict_t *preset, hb_dict_t *job_dict)
else if (filter_str != hb_filter_off)
{
filter_dict = hb_dict_init();
- hb_dict_set(filter_dict, "ID", hb_value_int(HB_FILTER_DECOMB));
+ hb_dict_set(filter_dict, "ID", hb_value_int(HB_FILTER_DEINTERLACE));
hb_dict_set(filter_dict, "Settings", hb_value_string(filter_str));
hb_value_array_append(filter_list, filter_dict);
free(filter_str);
@@ -1190,7 +1190,7 @@ int hb_preset_apply_filters(const hb_dict_t *preset, hb_dict_t *job_dict)
hb_dict_get(preset, "PictureDenoiseTune"));
else
denoise_tune = hb_value_get_string(
- hb_dict_get(preset, "PictureDeinterlaceCustom"));
+ hb_dict_get(preset, "PictureDenoiseCustom"));
filter_str = hb_generate_filter_settings(
filter_id, denoise_preset, denoise_tune);