summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
Diffstat (limited to 'libhb')
-rw-r--r--libhb/nlmeans.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libhb/nlmeans.c b/libhb/nlmeans.c
index 19bd99e5a..d5dd4a2c1 100644
--- a/libhb/nlmeans.c
+++ b/libhb/nlmeans.c
@@ -1109,16 +1109,16 @@ static void nlmeans_filter_thread(void *thread_args_v)
for (int c = 0; c < 3; c++)
{
- if (pv->strength[c] == 0)
+ if (pv->prefilter[c] & NLMEANS_PREFILTER_MODE_PASSTHRU)
{
+ nlmeans_prefilter(&frame->plane[c], pv->prefilter[c]);
nlmeans_deborder(&frame->plane[c], buf->plane[c].data,
buf->plane[c].width, buf->plane[c].stride,
buf->plane[c].height);
continue;
}
- if (pv->prefilter[c] & NLMEANS_PREFILTER_MODE_PASSTHRU)
+ if (pv->strength[c] == 0)
{
- nlmeans_prefilter(&frame->plane[c], pv->prefilter[c]);
nlmeans_deborder(&frame->plane[c], buf->plane[c].data,
buf->plane[c].width, buf->plane[c].stride,
buf->plane[c].height);
@@ -1240,16 +1240,16 @@ static hb_buffer_t * nlmeans_filter_flush(hb_filter_private_t *pv)
for (int c = 0; c < 3; c++)
{
- if (pv->strength[c] == 0)
+ if (pv->prefilter[c] & NLMEANS_PREFILTER_MODE_PASSTHRU)
{
+ nlmeans_prefilter(&frame->plane[c], pv->prefilter[c]);
nlmeans_deborder(&frame->plane[c], buf->plane[c].data,
buf->plane[c].width, buf->plane[c].stride,
buf->plane[c].height);
continue;
}
- if (pv->prefilter[c] & NLMEANS_PREFILTER_MODE_PASSTHRU)
+ if (pv->strength[c] == 0)
{
- nlmeans_prefilter(&frame->plane[c], pv->prefilter[c]);
nlmeans_deborder(&frame->plane[c], buf->plane[c].data,
buf->plane[c].width, buf->plane[c].stride,
buf->plane[c].height);