libavfilter/vf_gradfun.c
d5f187fd
 /*
  * Copyright (c) 2010 Nolan Lum <nol888@gmail.com>
f6633c55
  * Copyright (c) 2009 Loren Merritt <lorenm@u.washington.edu>
d5f187fd
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
  * @file
  * gradfun debanding filter, ported from MPlayer
  * libmpcodecs/vf_gradfun.c
  *
  * Apply a boxblur debanding algorithm (based on the gradfun2db
0e8c6f22
  * AviSynth filter by prunedtree).
41ed7ab4
  * For each pixel, if it is within the threshold of the blurred value, make it
  * closer. So now we have a smoothed and higher bitdepth version of all the
  * shallow gradients, while leaving detailed areas untouched.
d5f187fd
  * Dither it back to 8bit.
  */
 
7ffe76e5
 #include "libavutil/imgutils.h"
1d9c2dc8
 #include "libavutil/common.h"
d5f187fd
 #include "libavutil/cpu.h"
7ed833d7
 #include "libavutil/opt.h"
d5f187fd
 #include "libavutil/pixdesc.h"
 #include "avfilter.h"
b74a1da4
 #include "formats.h"
d5f187fd
 #include "gradfun.h"
9d0bfc50
 #include "internal.h"
803391f7
 #include "video.h"
d5f187fd
 
 DECLARE_ALIGNED(16, static const uint16_t, dither)[8][8] = {
     {0x00,0x60,0x18,0x78,0x06,0x66,0x1E,0x7E},
     {0x40,0x20,0x58,0x38,0x46,0x26,0x5E,0x3E},
     {0x10,0x70,0x08,0x68,0x16,0x76,0x0E,0x6E},
     {0x50,0x30,0x48,0x28,0x56,0x36,0x4E,0x2E},
     {0x04,0x64,0x1C,0x7C,0x02,0x62,0x1A,0x7A},
     {0x44,0x24,0x5C,0x3C,0x42,0x22,0x5A,0x3A},
     {0x14,0x74,0x0C,0x6C,0x12,0x72,0x0A,0x6A},
     {0x54,0x34,0x4C,0x2C,0x52,0x32,0x4A,0x2A},
 };
 
e6e7ba0c
 void ff_gradfun_filter_line_c(uint8_t *dst, const uint8_t *src, const uint16_t *dc, int width, int thresh, const uint16_t *dithers)
d5f187fd
 {
     int x;
dd8a76ab
     for (x = 0; x < width; dc += x & 1, x++) {
d5f187fd
         int pix = src[x] << 7;
         int delta = dc[0] - pix;
         int m = abs(delta) * thresh >> 16;
         m = FFMAX(0, 127 - m);
         m = m * m * delta >> 14;
         pix += m + dithers[x & 7];
         dst[x] = av_clip_uint8(pix >> 7);
     }
 }
 
e6e7ba0c
 void ff_gradfun_blur_line_c(uint16_t *dc, uint16_t *buf, const uint16_t *buf1, const uint8_t *src, int src_linesize, int width)
d5f187fd
 {
     int x, v, old;
     for (x = 0; x < width; x++) {
         v = buf1[x] + src[2 * x] + src[2 * x + 1] + src[2 * x + src_linesize] + src[2 * x + 1 + src_linesize];
         old = buf[x];
         buf[x] = v;
         dc[x] = v - old;
     }
 }
 
e6e7ba0c
 static void filter(GradFunContext *ctx, uint8_t *dst, const uint8_t *src, int width, int height, int dst_linesize, int src_linesize, int r)
d5f187fd
 {
     int bstride = FFALIGN(width, 16) / 2;
     int y;
     uint32_t dc_factor = (1 << 21) / (r * r);
     uint16_t *dc = ctx->buf + 16;
     uint16_t *buf = ctx->buf + bstride + 32;
     int thresh = ctx->thresh;
 
     memset(dc, 0, (bstride + 16) * sizeof(*buf));
     for (y = 0; y < r; y++)
         ctx->blur_line(dc, buf + y * bstride, buf + (y - 1) * bstride, src + 2 * y * src_linesize, src_linesize, width / 2);
     for (;;) {
         if (y < height - r) {
             int mod = ((y + r) / 2) % r;
             uint16_t *buf0 = buf + mod * bstride;
             uint16_t *buf1 = buf + (mod ? mod - 1 : r - 1) * bstride;
             int x, v;
             ctx->blur_line(dc, buf0, buf1, src + (y + r) * src_linesize, src_linesize, width / 2);
             for (x = v = 0; x < r; x++)
                 v += dc[x];
             for (; x < width / 2; x++) {
                 v += dc[x] - dc[x-r];
                 dc[x-r] = v * dc_factor >> 16;
             }
             for (; x < (width + r + 1) / 2; x++)
                 dc[x-r] = v * dc_factor >> 16;
             for (x = -r / 2; x < 0; x++)
                 dc[x] = dc[0];
         }
         if (y == r) {
             for (y = 0; y < r; y++)
                 ctx->filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh, dither[y & 7]);
         }
         ctx->filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh, dither[y & 7]);
         if (++y >= height) break;
         ctx->filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh, dither[y & 7]);
         if (++y >= height) break;
     }
599c2851
     emms_c();
d5f187fd
 }
 
d69a4177
 static av_cold int init(AVFilterContext *ctx)
d5f187fd
 {
05fab553
     GradFunContext *s = ctx->priv;
d5f187fd
 
05fab553
     s->thresh  = (1 << 15) / s->strength;
df003cbb
     s->radius  = av_clip((s->radius + 1) & ~1, 4, 32);
d5f187fd
 
df003cbb
     s->blur_line   = ff_gradfun_blur_line_c;
05fab553
     s->filter_line = ff_gradfun_filter_line_c;
d5f187fd
 
f6c38c5f
     if (ARCH_X86)
05fab553
         ff_gradfun_init_x86(s);
d5f187fd
 
05fab553
     av_log(ctx, AV_LOG_VERBOSE, "threshold:%.2f radius:%d\n", s->strength, s->radius);
d5f187fd
 
     return 0;
 }
 
 static av_cold void uninit(AVFilterContext *ctx)
 {
05fab553
     GradFunContext *s = ctx->priv;
     av_freep(&s->buf);
d5f187fd
 }
 
 static int query_formats(AVFilterContext *ctx)
 {
716d413c
     static const enum AVPixelFormat pix_fmts[] = {
         AV_PIX_FMT_YUV410P,            AV_PIX_FMT_YUV420P,
a4b899f5
         AV_PIX_FMT_GRAY8,              AV_PIX_FMT_YUV444P,
716d413c
         AV_PIX_FMT_YUV422P,            AV_PIX_FMT_YUV411P,
5b9126ba
         AV_PIX_FMT_YUV440P,
139a98be
         AV_PIX_FMT_GBRP,
716d413c
         AV_PIX_FMT_NONE
d5f187fd
     };
fd682b18
     AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
     if (!fmts_list)
         return AVERROR(ENOMEM);
     return ff_set_common_formats(ctx, fmts_list);
d5f187fd
 }
 
 static int config_input(AVFilterLink *inlink)
 {
05fab553
     GradFunContext *s = inlink->dst->priv;
59ee9f78
     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
     int hsub = desc->log2_chroma_w;
     int vsub = desc->log2_chroma_h;
d5f187fd
 
87c31cfd
     av_freep(&s->buf);
24678a61
     s->buf = av_calloc((FFALIGN(inlink->w, 16) * (s->radius + 1) / 2 + 32), sizeof(*s->buf));
05fab553
     if (!s->buf)
d5f187fd
         return AVERROR(ENOMEM);
 
21f94684
     s->chroma_w = AV_CEIL_RSHIFT(inlink->w, hsub);
     s->chroma_h = AV_CEIL_RSHIFT(inlink->h, vsub);
05fab553
     s->chroma_r = av_clip(((((s->radius >> hsub) + (s->radius >> vsub)) / 2 ) + 1) & ~1, 4, 32);
d5f187fd
 
     return 0;
 }
 
7e350379
 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
d5f187fd
 {
05fab553
     GradFunContext *s = inlink->dst->priv;
d5f187fd
     AVFilterLink *outlink = inlink->dst->outputs[0];
7e350379
     AVFrame *out;
565e4993
     int p, direct;
2a06bc10
 
7e350379
     if (av_frame_is_writable(in)) {
2a06bc10
         direct = 1;
         out = in;
     } else {
887d31d4
         direct = 0;
7e350379
         out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
2a06bc10
         if (!out) {
7e350379
             av_frame_free(&in);
2a06bc10
             return AVERROR(ENOMEM);
         }
7e350379
         av_frame_copy_props(out, in);
2a06bc10
     }
d5f187fd
 
e43a0a23
     for (p = 0; p < 4 && in->data[p] && in->linesize[p]; p++) {
d5f187fd
         int w = inlink->w;
         int h = inlink->h;
05fab553
         int r = s->radius;
d5f187fd
         if (p) {
05fab553
             w = s->chroma_w;
             h = s->chroma_h;
             r = s->chroma_r;
d5f187fd
         }
 
         if (FFMIN(w, h) > 2 * r)
05fab553
             filter(s, out->data[p], in->data[p], w, h, out->linesize[p], in->linesize[p], r);
2a06bc10
         else if (out->data[p] != in->data[p])
             av_image_copy_plane(out->data[p], out->linesize[p], in->data[p], in->linesize[p], w, h);
d5f187fd
     }
 
2a06bc10
     if (!direct)
7e350379
         av_frame_free(&in);
2a06bc10
 
     return ff_filter_frame(outlink, out);
d5f187fd
 }
 
7ed833d7
 #define OFFSET(x) offsetof(GradFunContext, x)
1ee9eaca
 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
 
 static const AVOption gradfun_options[] = {
7ed833d7
     { "strength", "The maximum amount by which the filter will change any one pixel.", OFFSET(strength), AV_OPT_TYPE_FLOAT, { .dbl = 1.2 }, 0.51, 64, FLAGS },
     { "radius",   "The neighborhood to fit the gradient to.",                          OFFSET(radius),   AV_OPT_TYPE_INT,   { .i64 = 16  }, 4,    32, FLAGS },
b211607b
     { NULL }
7ed833d7
 };
 
1ee9eaca
 AVFILTER_DEFINE_CLASS(gradfun);
7ed833d7
 
568c70e7
 static const AVFilterPad avfilter_vf_gradfun_inputs[] = {
     {
         .name         = "default",
         .type         = AVMEDIA_TYPE_VIDEO,
         .config_props = config_input,
2a06bc10
         .filter_frame = filter_frame,
568c70e7
     },
     { NULL }
 };
 
 static const AVFilterPad avfilter_vf_gradfun_outputs[] = {
     {
         .name = "default",
         .type = AVMEDIA_TYPE_VIDEO,
     },
     { NULL }
 };
 
cd43ca04
 AVFilter ff_vf_gradfun = {
d5f187fd
     .name          = "gradfun",
     .description   = NULL_IF_CONFIG_SMALL("Debands video quickly using gradients."),
     .priv_size     = sizeof(GradFunContext),
7ed833d7
     .priv_class    = &gradfun_class,
d5f187fd
     .init          = init,
     .uninit        = uninit,
     .query_formats = query_formats,
de2022c5
     .inputs        = avfilter_vf_gradfun_inputs,
     .outputs       = avfilter_vf_gradfun_outputs,
1776177b
     .flags         = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
d5f187fd
 };