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 /scripts | |
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 'scripts')
-rwxr-xr-x | scripts/manicure.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/manicure.rb b/scripts/manicure.rb index 83b991dd9..5cbc9d906 100755 --- a/scripts/manicure.rb +++ b/scripts/manicure.rb @@ -1439,11 +1439,11 @@ class Display when 1 commandString << "denoise_opt = \"" << hash["PictureDenoiseCustom"].to_s << "\";\n " when 2 - commandString << "denoise_opt = \"2:1:2:3\";\n " + commandString << "denoise_opt = \"2:1:1:2:3:3\";\n " when 3 - commandString << "denoise_opt = \"3:2:2:3\";\n " + commandString << "denoise_opt = \"3:2:2:2:3:3\";\n " when 4 - commandString << "denoise_opt = \"7:7:5:5\";\n " + commandString << "denoise_opt = \"7:7:7:5:5:5\";\n " end if hash["PictureDecomb"].to_i != 0 |