diff options
author | Rodeo <[email protected]> | 2013-11-08 12:45:25 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2013-11-08 12:45:25 +0000 |
commit | de099ce149bd447d66971682f9a4979806443ebe (patch) | |
tree | 78612854922a7f8de8fd05040b6429c75ebf81ee /test | |
parent | 7f98b4c5d93c02b4457a692a52208d0a129e8941 (diff) |
Denoise (hqdn3d) syntax change: accept settings for individual chroma channels.
Patch by BradleyS. Thanks!
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5880 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r-- | test/test.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/test.c b/test/test.c index d4c739b6d..826528172 100644 --- a/test/test.c +++ b/test/test.c @@ -3507,7 +3507,8 @@ if (hb_qsv_available()) " -8, --denoise Denoise video with hqdn3d filter\n" " <weak/medium/strong> or omitted (default settings)\n" " or\n" - " <SL:SC:TL:TC> (default 4:3:6:4.5)\n" + " <SL:SCb:SCr:TL:TCb:TCr>\n" + " (default: 4:3:3:6:4.5:4.5)\n" " -7, --deblock Deblock video with pp7 filter\n" " <QP:M> (default 5:2)\n" " --rotate Flips images axes\n" @@ -4105,15 +4106,15 @@ static int ParseOptions( int argc, char ** argv ) { if (!( strcmp( optarg, "weak" ) )) { - denoise_opt = "2:1:2:3"; + denoise_opt = "2:1:1:2:3:3"; } else if (!( strcmp( optarg, "medium" ) )) { - denoise_opt = "3:2:2:3"; + denoise_opt = "3:2:2:2:3:3"; } else if (!( strcmp( optarg, "strong" ) )) { - denoise_opt = "7:7:5:5"; + denoise_opt = "7:7:7:5:5:5"; } else { |