You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

266 lines
8.6KB

  1. /*
  2. * Copyright (c) 2010 Nolan Lum <nol888@gmail.com>
  3. * Copyright (c) 2009 Loren Merritt <lorenm@u.washignton.edu>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * gradfun debanding filter, ported from MPlayer
  24. * libmpcodecs/vf_gradfun.c
  25. *
  26. * Apply a boxblur debanding algorithm (based on the gradfun2db
  27. * Avisynth filter by prunedtree).
  28. * Foreach pixel, if it's within threshold of the blurred value, make it closer.
  29. * So now we have a smoothed and higher bitdepth version of all the shallow
  30. * gradients, while leaving detailed areas untouched.
  31. * Dither it back to 8bit.
  32. */
  33. #include "libavutil/imgutils.h"
  34. #include "libavutil/common.h"
  35. #include "libavutil/cpu.h"
  36. #include "libavutil/pixdesc.h"
  37. #include "libavutil/opt.h"
  38. #include "avfilter.h"
  39. #include "formats.h"
  40. #include "gradfun.h"
  41. #include "internal.h"
  42. #include "video.h"
  43. #define OFFSET(x) offsetof(GradFunContext, x)
  44. #define F AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
  45. static const AVOption gradfun_options[] = {
  46. { "strength", "set the maximum amount by which the filter will change any one pixel", OFFSET(strength), AV_OPT_TYPE_DOUBLE, {.dbl = 1.2}, 0.51, 64, F },
  47. { "radius", "set the neighborhood to fit the gradient to", OFFSET(radius), AV_OPT_TYPE_INT, {.i64 = 16}, 4, 32, F },
  48. { NULL }
  49. };
  50. AVFILTER_DEFINE_CLASS(gradfun);
  51. DECLARE_ALIGNED(16, static const uint16_t, dither)[8][8] = {
  52. {0x00,0x60,0x18,0x78,0x06,0x66,0x1E,0x7E},
  53. {0x40,0x20,0x58,0x38,0x46,0x26,0x5E,0x3E},
  54. {0x10,0x70,0x08,0x68,0x16,0x76,0x0E,0x6E},
  55. {0x50,0x30,0x48,0x28,0x56,0x36,0x4E,0x2E},
  56. {0x04,0x64,0x1C,0x7C,0x02,0x62,0x1A,0x7A},
  57. {0x44,0x24,0x5C,0x3C,0x42,0x22,0x5A,0x3A},
  58. {0x14,0x74,0x0C,0x6C,0x12,0x72,0x0A,0x6A},
  59. {0x54,0x34,0x4C,0x2C,0x52,0x32,0x4A,0x2A},
  60. };
  61. 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)
  62. {
  63. int x;
  64. for (x = 0; x < width; dc += x & 1, x++) {
  65. int pix = src[x] << 7;
  66. int delta = dc[0] - pix;
  67. int m = abs(delta) * thresh >> 16;
  68. m = FFMAX(0, 127 - m);
  69. m = m * m * delta >> 14;
  70. pix += m + dithers[x & 7];
  71. dst[x] = av_clip_uint8(pix >> 7);
  72. }
  73. }
  74. 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)
  75. {
  76. int x, v, old;
  77. for (x = 0; x < width; x++) {
  78. v = buf1[x] + src[2 * x] + src[2 * x + 1] + src[2 * x + src_linesize] + src[2 * x + 1 + src_linesize];
  79. old = buf[x];
  80. buf[x] = v;
  81. dc[x] = v - old;
  82. }
  83. }
  84. static void filter(GradFunContext *ctx, uint8_t *dst, const uint8_t *src, int width, int height, int dst_linesize, int src_linesize, int r)
  85. {
  86. int bstride = FFALIGN(width, 16) / 2;
  87. int y;
  88. uint32_t dc_factor = (1 << 21) / (r * r);
  89. uint16_t *dc = ctx->buf + 16;
  90. uint16_t *buf = ctx->buf + bstride + 32;
  91. int thresh = ctx->thresh;
  92. memset(dc, 0, (bstride + 16) * sizeof(*buf));
  93. for (y = 0; y < r; y++)
  94. ctx->blur_line(dc, buf + y * bstride, buf + (y - 1) * bstride, src + 2 * y * src_linesize, src_linesize, width / 2);
  95. for (;;) {
  96. if (y < height - r) {
  97. int mod = ((y + r) / 2) % r;
  98. uint16_t *buf0 = buf + mod * bstride;
  99. uint16_t *buf1 = buf + (mod ? mod - 1 : r - 1) * bstride;
  100. int x, v;
  101. ctx->blur_line(dc, buf0, buf1, src + (y + r) * src_linesize, src_linesize, width / 2);
  102. for (x = v = 0; x < r; x++)
  103. v += dc[x];
  104. for (; x < width / 2; x++) {
  105. v += dc[x] - dc[x-r];
  106. dc[x-r] = v * dc_factor >> 16;
  107. }
  108. for (; x < (width + r + 1) / 2; x++)
  109. dc[x-r] = v * dc_factor >> 16;
  110. for (x = -r / 2; x < 0; x++)
  111. dc[x] = dc[0];
  112. }
  113. if (y == r) {
  114. for (y = 0; y < r; y++)
  115. ctx->filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh, dither[y & 7]);
  116. }
  117. ctx->filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh, dither[y & 7]);
  118. if (++y >= height) break;
  119. ctx->filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh, dither[y & 7]);
  120. if (++y >= height) break;
  121. }
  122. }
  123. static av_cold int init(AVFilterContext *ctx, const char *args)
  124. {
  125. GradFunContext *gf = ctx->priv;
  126. gf->thresh = (1 << 15) / gf->strength;
  127. gf->radius = av_clip((gf->radius + 1) & ~1, 4, 32);
  128. gf->blur_line = ff_gradfun_blur_line_c;
  129. gf->filter_line = ff_gradfun_filter_line_c;
  130. if (ARCH_X86)
  131. ff_gradfun_init_x86(gf);
  132. av_log(ctx, AV_LOG_VERBOSE, "threshold:%.2f radius:%d\n", gf->strength, gf->radius);
  133. return 0;
  134. }
  135. static av_cold void uninit(AVFilterContext *ctx)
  136. {
  137. GradFunContext *gf = ctx->priv;
  138. av_freep(&gf->buf);
  139. }
  140. static int query_formats(AVFilterContext *ctx)
  141. {
  142. static const enum AVPixelFormat pix_fmts[] = {
  143. AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV420P,
  144. AV_PIX_FMT_GRAY8, AV_PIX_FMT_NV12,
  145. AV_PIX_FMT_NV21, AV_PIX_FMT_YUV444P,
  146. AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV411P,
  147. AV_PIX_FMT_YUV440P,
  148. AV_PIX_FMT_NONE
  149. };
  150. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  151. return 0;
  152. }
  153. static int config_input(AVFilterLink *inlink)
  154. {
  155. GradFunContext *gf = inlink->dst->priv;
  156. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  157. int hsub = desc->log2_chroma_w;
  158. int vsub = desc->log2_chroma_h;
  159. gf->buf = av_mallocz((FFALIGN(inlink->w, 16) * (gf->radius + 1) / 2 + 32) * sizeof(uint16_t));
  160. if (!gf->buf)
  161. return AVERROR(ENOMEM);
  162. gf->chroma_w = -((-inlink->w) >> hsub);
  163. gf->chroma_h = -((-inlink->h) >> vsub);
  164. gf->chroma_r = av_clip(((((gf->radius >> hsub) + (gf->radius >> vsub)) / 2 ) + 1) & ~1, 4, 32);
  165. return 0;
  166. }
  167. static int filter_frame(AVFilterLink *inlink, AVFrame *in)
  168. {
  169. GradFunContext *gf = inlink->dst->priv;
  170. AVFilterLink *outlink = inlink->dst->outputs[0];
  171. AVFrame *out;
  172. int p, direct;
  173. if (av_frame_is_writable(in)) {
  174. direct = 1;
  175. out = in;
  176. } else {
  177. direct = 0;
  178. out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
  179. if (!out) {
  180. av_frame_free(&in);
  181. return AVERROR(ENOMEM);
  182. }
  183. av_frame_copy_props(out, in);
  184. }
  185. for (p = 0; p < 4 && in->data[p]; p++) {
  186. int w = inlink->w;
  187. int h = inlink->h;
  188. int r = gf->radius;
  189. if (p) {
  190. w = gf->chroma_w;
  191. h = gf->chroma_h;
  192. r = gf->chroma_r;
  193. }
  194. if (FFMIN(w, h) > 2 * r)
  195. filter(gf, out->data[p], in->data[p], w, h, out->linesize[p], in->linesize[p], r);
  196. else if (out->data[p] != in->data[p])
  197. av_image_copy_plane(out->data[p], out->linesize[p], in->data[p], in->linesize[p], w, h);
  198. }
  199. if (!direct)
  200. av_frame_free(&in);
  201. return ff_filter_frame(outlink, out);
  202. }
  203. static const AVFilterPad avfilter_vf_gradfun_inputs[] = {
  204. {
  205. .name = "default",
  206. .type = AVMEDIA_TYPE_VIDEO,
  207. .config_props = config_input,
  208. .filter_frame = filter_frame,
  209. },
  210. { NULL }
  211. };
  212. static const AVFilterPad avfilter_vf_gradfun_outputs[] = {
  213. {
  214. .name = "default",
  215. .type = AVMEDIA_TYPE_VIDEO,
  216. },
  217. { NULL }
  218. };
  219. static const char *const shorthand[] = { "strength", "radius", NULL };
  220. AVFilter avfilter_vf_gradfun = {
  221. .name = "gradfun",
  222. .description = NULL_IF_CONFIG_SMALL("Debands video quickly using gradients."),
  223. .priv_size = sizeof(GradFunContext),
  224. .init = init,
  225. .uninit = uninit,
  226. .query_formats = query_formats,
  227. .inputs = avfilter_vf_gradfun_inputs,
  228. .outputs = avfilter_vf_gradfun_outputs,
  229. .priv_class = &gradfun_class,
  230. .shorthand = shorthand,
  231. };