diff options
author | Rodeo <[email protected]> | 2015-06-28 18:45:47 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2015-06-28 18:45:47 +0000 |
commit | af9de404779378e28af413d18291975dedd68861 (patch) | |
tree | 59a696d4880375fe757f04ba7134621627370385 /test/test.c | |
parent | 7a19505c34eae53aff8543226ad2b55e62c9df6d (diff) |
CLI: fix some typos in ParseOptions().
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7331 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test/test.c')
-rw-r--r-- | test/test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test.c b/test/test.c index 049be4d99..123289c29 100644 --- a/test/test.c +++ b/test/test.c @@ -2546,7 +2546,7 @@ static int ParseOptions( int argc, char ** argv ) // attempting to validate custom settings to prevent potential // false positive } - else if (!hb_validate_filter_settings(HB_FILTER_HQDN3D, deinterlace)) + else if (!hb_validate_filter_settings(HB_FILTER_DEINTERLACE, deinterlace)) { deinterlace_custom = 1; } @@ -2615,13 +2615,13 @@ static int ParseOptions( int argc, char ** argv ) "Incompatible options --nlmeans and --no-nlmeans\n"); return -1; } - if (!hb_validate_filter_preset(HB_FILTER_HQDN3D, nlmeans, nlmeans_tune)) + if (!hb_validate_filter_preset(HB_FILTER_NLMEANS, nlmeans, nlmeans_tune)) { // Nothing to do, but must validate preset before // attempting to validate custom settings to prevent potential // false positive } - else if (!hb_validate_filter_settings(HB_FILTER_HQDN3D, nlmeans)) + else if (!hb_validate_filter_settings(HB_FILTER_NLMEANS, nlmeans)) { nlmeans_custom = 1; } |