vf_unsharp.c 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. /*
  2. * Original copyright (c) 2002 Remi Guyomarch <rguyom@pobox.com>
  3. * Port copyright (c) 2010 Daniel G. Taylor <dan@programmer-art.org>
  4. * Relicensed to the LGPL with permission from Remi Guyomarch.
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. /**
  23. * @file
  24. * blur / sharpen filter, ported to FFmpeg from MPlayer
  25. * libmpcodecs/unsharp.c.
  26. *
  27. * This code is based on:
  28. *
  29. * An Efficient algorithm for Gaussian blur using finite-state machines
  30. * Frederick M. Waltz and John W. V. Miller
  31. *
  32. * SPIE Conf. on Machine Vision Systems for Inspection and Metrology VII
  33. * Originally published Boston, Nov 98
  34. *
  35. * http://www.engin.umd.umich.edu/~jwvm/ece581/21_GBlur.pdf
  36. */
  37. #include "avfilter.h"
  38. #include "formats.h"
  39. #include "internal.h"
  40. #include "video.h"
  41. #include "libavutil/common.h"
  42. #include "libavutil/mem.h"
  43. #include "libavutil/pixdesc.h"
  44. #define MIN_SIZE 3
  45. #define MAX_SIZE 13
  46. /* right-shift and round-up */
  47. #define SHIFTUP(x,shift) (-((-(x))>>(shift)))
  48. typedef struct FilterParam {
  49. int msize_x; ///< matrix width
  50. int msize_y; ///< matrix height
  51. int amount; ///< effect amount
  52. int steps_x; ///< horizontal step count
  53. int steps_y; ///< vertical step count
  54. int scalebits; ///< bits to shift pixel
  55. int32_t halfscale; ///< amount to add to pixel
  56. uint32_t *sc[(MAX_SIZE * MAX_SIZE) - 1]; ///< finite state machine storage
  57. } FilterParam;
  58. typedef struct {
  59. FilterParam luma; ///< luma parameters (width, height, amount)
  60. FilterParam chroma; ///< chroma parameters (width, height, amount)
  61. int hsub, vsub;
  62. } UnsharpContext;
  63. static void apply_unsharp( uint8_t *dst, int dst_stride,
  64. const uint8_t *src, int src_stride,
  65. int width, int height, FilterParam *fp)
  66. {
  67. uint32_t **sc = fp->sc;
  68. uint32_t sr[(MAX_SIZE * MAX_SIZE) - 1], tmp1, tmp2;
  69. int32_t res;
  70. int x, y, z;
  71. const uint8_t *src2 = NULL; //silence a warning
  72. if (!fp->amount) {
  73. if (dst_stride == src_stride)
  74. memcpy(dst, src, src_stride * height);
  75. else
  76. for (y = 0; y < height; y++, dst += dst_stride, src += src_stride)
  77. memcpy(dst, src, width);
  78. return;
  79. }
  80. for (y = 0; y < 2 * fp->steps_y; y++)
  81. memset(sc[y], 0, sizeof(sc[y][0]) * (width + 2 * fp->steps_x));
  82. for (y = -fp->steps_y; y < height + fp->steps_y; y++) {
  83. if (y < height)
  84. src2 = src;
  85. memset(sr, 0, sizeof(sr[0]) * (2 * fp->steps_x - 1));
  86. for (x = -fp->steps_x; x < width + fp->steps_x; x++) {
  87. tmp1 = x <= 0 ? src2[0] : x >= width ? src2[width-1] : src2[x];
  88. for (z = 0; z < fp->steps_x * 2; z += 2) {
  89. tmp2 = sr[z + 0] + tmp1; sr[z + 0] = tmp1;
  90. tmp1 = sr[z + 1] + tmp2; sr[z + 1] = tmp2;
  91. }
  92. for (z = 0; z < fp->steps_y * 2; z += 2) {
  93. tmp2 = sc[z + 0][x + fp->steps_x] + tmp1; sc[z + 0][x + fp->steps_x] = tmp1;
  94. tmp1 = sc[z + 1][x + fp->steps_x] + tmp2; sc[z + 1][x + fp->steps_x] = tmp2;
  95. }
  96. if (x >= fp->steps_x && y >= fp->steps_y) {
  97. const uint8_t *srx = src - fp->steps_y * src_stride + x - fp->steps_x;
  98. uint8_t *dsx = dst - fp->steps_y * dst_stride + x - fp->steps_x;
  99. res = (int32_t)*srx + ((((int32_t) * srx - (int32_t)((tmp1 + fp->halfscale) >> fp->scalebits)) * fp->amount) >> 16);
  100. *dsx = av_clip_uint8(res);
  101. }
  102. }
  103. if (y >= 0) {
  104. dst += dst_stride;
  105. src += src_stride;
  106. }
  107. }
  108. }
  109. static void set_filter_param(FilterParam *fp, int msize_x, int msize_y, double amount)
  110. {
  111. fp->msize_x = msize_x;
  112. fp->msize_y = msize_y;
  113. fp->amount = amount * 65536.0;
  114. fp->steps_x = msize_x / 2;
  115. fp->steps_y = msize_y / 2;
  116. fp->scalebits = (fp->steps_x + fp->steps_y) * 2;
  117. fp->halfscale = 1 << (fp->scalebits - 1);
  118. }
  119. static av_cold int init(AVFilterContext *ctx, const char *args)
  120. {
  121. UnsharpContext *unsharp = ctx->priv;
  122. int lmsize_x = 5, cmsize_x = 5;
  123. int lmsize_y = 5, cmsize_y = 5;
  124. double lamount = 1.0f, camount = 0.0f;
  125. if (args)
  126. sscanf(args, "%d:%d:%lf:%d:%d:%lf", &lmsize_x, &lmsize_y, &lamount,
  127. &cmsize_x, &cmsize_y, &camount);
  128. if ((lamount && (lmsize_x < 2 || lmsize_y < 2)) ||
  129. (camount && (cmsize_x < 2 || cmsize_y < 2))) {
  130. av_log(ctx, AV_LOG_ERROR,
  131. "Invalid value <2 for lmsize_x:%d or lmsize_y:%d or cmsize_x:%d or cmsize_y:%d\n",
  132. lmsize_x, lmsize_y, cmsize_x, cmsize_y);
  133. return AVERROR(EINVAL);
  134. }
  135. set_filter_param(&unsharp->luma, lmsize_x, lmsize_y, lamount);
  136. set_filter_param(&unsharp->chroma, cmsize_x, cmsize_y, camount);
  137. return 0;
  138. }
  139. static int query_formats(AVFilterContext *ctx)
  140. {
  141. enum PixelFormat pix_fmts[] = {
  142. PIX_FMT_YUV420P, PIX_FMT_YUV422P, PIX_FMT_YUV444P, PIX_FMT_YUV410P,
  143. PIX_FMT_YUV411P, PIX_FMT_YUV440P, PIX_FMT_YUVJ420P, PIX_FMT_YUVJ422P,
  144. PIX_FMT_YUVJ444P, PIX_FMT_YUVJ440P, PIX_FMT_NONE
  145. };
  146. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  147. return 0;
  148. }
  149. static void init_filter_param(AVFilterContext *ctx, FilterParam *fp, const char *effect_type, int width)
  150. {
  151. int z;
  152. const char *effect;
  153. effect = fp->amount == 0 ? "none" : fp->amount < 0 ? "blur" : "sharpen";
  154. av_log(ctx, AV_LOG_VERBOSE, "effect:%s type:%s msize_x:%d msize_y:%d amount:%0.2f\n",
  155. effect, effect_type, fp->msize_x, fp->msize_y, fp->amount / 65535.0);
  156. for (z = 0; z < 2 * fp->steps_y; z++)
  157. fp->sc[z] = av_malloc(sizeof(*(fp->sc[z])) * (width + 2 * fp->steps_x));
  158. }
  159. static int config_props(AVFilterLink *link)
  160. {
  161. UnsharpContext *unsharp = link->dst->priv;
  162. unsharp->hsub = av_pix_fmt_descriptors[link->format].log2_chroma_w;
  163. unsharp->vsub = av_pix_fmt_descriptors[link->format].log2_chroma_h;
  164. init_filter_param(link->dst, &unsharp->luma, "luma", link->w);
  165. init_filter_param(link->dst, &unsharp->chroma, "chroma", SHIFTUP(link->w, unsharp->hsub));
  166. return 0;
  167. }
  168. static void free_filter_param(FilterParam *fp)
  169. {
  170. int z;
  171. for (z = 0; z < 2 * fp->steps_y; z++)
  172. av_free(fp->sc[z]);
  173. }
  174. static av_cold void uninit(AVFilterContext *ctx)
  175. {
  176. UnsharpContext *unsharp = ctx->priv;
  177. free_filter_param(&unsharp->luma);
  178. free_filter_param(&unsharp->chroma);
  179. }
  180. static int end_frame(AVFilterLink *link)
  181. {
  182. UnsharpContext *unsharp = link->dst->priv;
  183. AVFilterBufferRef *in = link->cur_buf;
  184. AVFilterBufferRef *out = link->dst->outputs[0]->out_buf;
  185. int cw = SHIFTUP(link->w, unsharp->hsub);
  186. int ch = SHIFTUP(link->h, unsharp->vsub);
  187. int ret;
  188. apply_unsharp(out->data[0], out->linesize[0], in->data[0], in->linesize[0], link->w, link->h, &unsharp->luma);
  189. apply_unsharp(out->data[1], out->linesize[1], in->data[1], in->linesize[1], cw, ch, &unsharp->chroma);
  190. apply_unsharp(out->data[2], out->linesize[2], in->data[2], in->linesize[2], cw, ch, &unsharp->chroma);
  191. if ((ret = ff_draw_slice(link->dst->outputs[0], 0, link->h, 1)) < 0 ||
  192. (ret = ff_end_frame(link->dst->outputs[0])) < 0)
  193. return ret;
  194. return 0;
  195. }
  196. static int draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
  197. {
  198. return 0;
  199. }
  200. AVFilter avfilter_vf_unsharp = {
  201. .name = "unsharp",
  202. .description = NULL_IF_CONFIG_SMALL("Sharpen or blur the input video."),
  203. .priv_size = sizeof(UnsharpContext),
  204. .init = init,
  205. .uninit = uninit,
  206. .query_formats = query_formats,
  207. .inputs = (const AVFilterPad[]) {{ .name = "default",
  208. .type = AVMEDIA_TYPE_VIDEO,
  209. .draw_slice = draw_slice,
  210. .end_frame = end_frame,
  211. .config_props = config_props,
  212. .min_perms = AV_PERM_READ, },
  213. { .name = NULL}},
  214. .outputs = (const AVFilterPad[]) {{ .name = "default",
  215. .type = AVMEDIA_TYPE_VIDEO, },
  216. { .name = NULL}},
  217. };