diff options
author | jstebbins <[email protected]> | 2015-08-17 20:22:53 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-08-17 20:22:53 +0000 |
commit | 4ffa869d091efecbb19b5dafc18fcb7ecdb73629 (patch) | |
tree | 425283fdab720340b21a2d4db27bec2239a72004 | |
parent | 50a9070021357bbfba3f330e81a1c00778a7340c (diff) |
nlmeans: fix the default values
Make the nlmeans default (when no string supplied) match "medium"
preset. And make the CLI default the medium preset.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7402 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | libhb/nlmeans.c | 4 | ||||
-rw-r--r-- | test/test.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libhb/nlmeans.c b/libhb/nlmeans.c index 3e78ab95a..a306c8f4a 100644 --- a/libhb/nlmeans.c +++ b/libhb/nlmeans.c @@ -55,8 +55,8 @@ #include "taskset.h" #include "nlmeans.h" -#define NLMEANS_STRENGTH_LUMA_DEFAULT 8 -#define NLMEANS_STRENGTH_CHROMA_DEFAULT 8 +#define NLMEANS_STRENGTH_LUMA_DEFAULT 6 +#define NLMEANS_STRENGTH_CHROMA_DEFAULT 6 #define NLMEANS_ORIGIN_TUNE_LUMA_DEFAULT 1 #define NLMEANS_ORIGIN_TUNE_CHROMA_DEFAULT 1 #define NLMEANS_PATCH_SIZE_LUMA_DEFAULT 7 diff --git a/test/test.c b/test/test.c index 513add980..7aa8aad0a 100644 --- a/test/test.c +++ b/test/test.c @@ -2204,7 +2204,7 @@ static int ParseOptions( int argc, char ** argv ) } else { - nlmeans = strdup("light"); + nlmeans = strdup("medium"); } break; case FILTER_NLMEANS_TUNE: |