vf_gradfun.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  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/cpu.h"
  35. #include "libavutil/pixdesc.h"
  36. #include "avfilter.h"
  37. #include "formats.h"
  38. #include "gradfun.h"
  39. #include "internal.h"
  40. #include "video.h"
  41. DECLARE_ALIGNED(16, static const uint16_t, dither)[8][8] = {
  42. {0x00,0x60,0x18,0x78,0x06,0x66,0x1E,0x7E},
  43. {0x40,0x20,0x58,0x38,0x46,0x26,0x5E,0x3E},
  44. {0x10,0x70,0x08,0x68,0x16,0x76,0x0E,0x6E},
  45. {0x50,0x30,0x48,0x28,0x56,0x36,0x4E,0x2E},
  46. {0x04,0x64,0x1C,0x7C,0x02,0x62,0x1A,0x7A},
  47. {0x44,0x24,0x5C,0x3C,0x42,0x22,0x5A,0x3A},
  48. {0x14,0x74,0x0C,0x6C,0x12,0x72,0x0A,0x6A},
  49. {0x54,0x34,0x4C,0x2C,0x52,0x32,0x4A,0x2A},
  50. };
  51. 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)
  52. {
  53. int x;
  54. for (x = 0; x < width; x++, dc += x & 1) {
  55. int pix = src[x] << 7;
  56. int delta = dc[0] - pix;
  57. int m = abs(delta) * thresh >> 16;
  58. m = FFMAX(0, 127 - m);
  59. m = m * m * delta >> 14;
  60. pix += m + dithers[x & 7];
  61. dst[x] = av_clip_uint8(pix >> 7);
  62. }
  63. }
  64. 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)
  65. {
  66. int x, v, old;
  67. for (x = 0; x < width; x++) {
  68. v = buf1[x] + src[2 * x] + src[2 * x + 1] + src[2 * x + src_linesize] + src[2 * x + 1 + src_linesize];
  69. old = buf[x];
  70. buf[x] = v;
  71. dc[x] = v - old;
  72. }
  73. }
  74. static void filter(GradFunContext *ctx, uint8_t *dst, const uint8_t *src, int width, int height, int dst_linesize, int src_linesize, int r)
  75. {
  76. int bstride = FFALIGN(width, 16) / 2;
  77. int y;
  78. uint32_t dc_factor = (1 << 21) / (r * r);
  79. uint16_t *dc = ctx->buf + 16;
  80. uint16_t *buf = ctx->buf + bstride + 32;
  81. int thresh = ctx->thresh;
  82. memset(dc, 0, (bstride + 16) * sizeof(*buf));
  83. for (y = 0; y < r; y++)
  84. ctx->blur_line(dc, buf + y * bstride, buf + (y - 1) * bstride, src + 2 * y * src_linesize, src_linesize, width / 2);
  85. for (;;) {
  86. if (y < height - r) {
  87. int mod = ((y + r) / 2) % r;
  88. uint16_t *buf0 = buf + mod * bstride;
  89. uint16_t *buf1 = buf + (mod ? mod - 1 : r - 1) * bstride;
  90. int x, v;
  91. ctx->blur_line(dc, buf0, buf1, src + (y + r) * src_linesize, src_linesize, width / 2);
  92. for (x = v = 0; x < r; x++)
  93. v += dc[x];
  94. for (; x < width / 2; x++) {
  95. v += dc[x] - dc[x-r];
  96. dc[x-r] = v * dc_factor >> 16;
  97. }
  98. for (; x < (width + r + 1) / 2; x++)
  99. dc[x-r] = v * dc_factor >> 16;
  100. for (x = -r / 2; x < 0; x++)
  101. dc[x] = dc[0];
  102. }
  103. if (y == r) {
  104. for (y = 0; y < r; y++)
  105. ctx->filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh, dither[y & 7]);
  106. }
  107. ctx->filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh, dither[y & 7]);
  108. if (++y >= height) break;
  109. ctx->filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh, dither[y & 7]);
  110. if (++y >= height) break;
  111. }
  112. }
  113. static av_cold int init(AVFilterContext *ctx, const char *args)
  114. {
  115. GradFunContext *gf = ctx->priv;
  116. float thresh = 1.2;
  117. int radius = 16;
  118. if (args)
  119. sscanf(args, "%f:%d", &thresh, &radius);
  120. thresh = av_clipf(thresh, 0.51, 255);
  121. gf->thresh = (1 << 15) / thresh;
  122. gf->radius = av_clip((radius + 1) & ~1, 4, 32);
  123. gf->blur_line = ff_gradfun_blur_line_c;
  124. gf->filter_line = ff_gradfun_filter_line_c;
  125. if (HAVE_MMX)
  126. ff_gradfun_init_x86(gf);
  127. av_log(ctx, AV_LOG_VERBOSE, "threshold:%.2f radius:%d\n", thresh, gf->radius);
  128. return 0;
  129. }
  130. static av_cold void uninit(AVFilterContext *ctx)
  131. {
  132. GradFunContext *gf = ctx->priv;
  133. av_freep(&gf->buf);
  134. }
  135. static int query_formats(AVFilterContext *ctx)
  136. {
  137. static const enum PixelFormat pix_fmts[] = {
  138. PIX_FMT_YUV410P, PIX_FMT_YUV420P,
  139. PIX_FMT_GRAY8, PIX_FMT_NV12,
  140. PIX_FMT_NV21, PIX_FMT_YUV444P,
  141. PIX_FMT_YUV422P, PIX_FMT_YUV411P,
  142. PIX_FMT_NONE
  143. };
  144. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  145. return 0;
  146. }
  147. static int config_input(AVFilterLink *inlink)
  148. {
  149. GradFunContext *gf = inlink->dst->priv;
  150. int hsub = av_pix_fmt_descriptors[inlink->format].log2_chroma_w;
  151. int vsub = av_pix_fmt_descriptors[inlink->format].log2_chroma_h;
  152. gf->buf = av_mallocz((FFALIGN(inlink->w, 16) * (gf->radius + 1) / 2 + 32) * sizeof(uint16_t));
  153. if (!gf->buf)
  154. return AVERROR(ENOMEM);
  155. gf->chroma_w = -((-inlink->w) >> hsub);
  156. gf->chroma_h = -((-inlink->h) >> vsub);
  157. gf->chroma_r = av_clip(((((gf->radius >> hsub) + (gf->radius >> vsub)) / 2 ) + 1) & ~1, 4, 32);
  158. return 0;
  159. }
  160. static int null_draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
  161. {
  162. return 0;
  163. }
  164. static int end_frame(AVFilterLink *inlink)
  165. {
  166. GradFunContext *gf = inlink->dst->priv;
  167. AVFilterBufferRef *inpic = inlink->cur_buf;
  168. AVFilterLink *outlink = inlink->dst->outputs[0];
  169. AVFilterBufferRef *outpic = outlink->out_buf;
  170. int p, ret;
  171. for (p = 0; p < 4 && inpic->data[p]; p++) {
  172. int w = inlink->w;
  173. int h = inlink->h;
  174. int r = gf->radius;
  175. if (p) {
  176. w = gf->chroma_w;
  177. h = gf->chroma_h;
  178. r = gf->chroma_r;
  179. }
  180. if (FFMIN(w, h) > 2 * r)
  181. filter(gf, outpic->data[p], inpic->data[p], w, h, outpic->linesize[p], inpic->linesize[p], r);
  182. else if (outpic->data[p] != inpic->data[p])
  183. av_image_copy_plane(outpic->data[p], outpic->linesize[p], inpic->data[p], inpic->linesize[p], w, h);
  184. }
  185. if ((ret = ff_draw_slice(outlink, 0, inlink->h, 1)) < 0 ||
  186. (ret = ff_end_frame(outlink)) < 0)
  187. return ret;
  188. return 0;
  189. }
  190. AVFilter avfilter_vf_gradfun = {
  191. .name = "gradfun",
  192. .description = NULL_IF_CONFIG_SMALL("Debands video quickly using gradients."),
  193. .priv_size = sizeof(GradFunContext),
  194. .init = init,
  195. .uninit = uninit,
  196. .query_formats = query_formats,
  197. .inputs = (const AVFilterPad[]) {{ .name = "default",
  198. .type = AVMEDIA_TYPE_VIDEO,
  199. .config_props = config_input,
  200. .start_frame = ff_inplace_start_frame,
  201. .draw_slice = null_draw_slice,
  202. .end_frame = end_frame,
  203. .min_perms = AV_PERM_READ, },
  204. { .name = NULL}},
  205. .outputs = (const AVFilterPad[]) {{ .name = "default",
  206. .type = AVMEDIA_TYPE_VIDEO, },
  207. { .name = NULL}},
  208. };