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.

253 lines
8.9KB

  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 "libavutil/common.h"
  39. #include "libavutil/mem.h"
  40. #include "libavutil/pixdesc.h"
  41. #define MIN_SIZE 3
  42. #define MAX_SIZE 13
  43. /* right-shift and round-up */
  44. #define SHIFTUP(x,shift) (-((-(x))>>(shift)))
  45. typedef struct FilterParam {
  46. int msize_x; ///< matrix width
  47. int msize_y; ///< matrix height
  48. int amount; ///< effect amount
  49. int steps_x; ///< horizontal step count
  50. int steps_y; ///< vertical step count
  51. int scalebits; ///< bits to shift pixel
  52. int32_t halfscale; ///< amount to add to pixel
  53. uint32_t *sc[(MAX_SIZE * MAX_SIZE) - 1]; ///< finite state machine storage
  54. } FilterParam;
  55. typedef struct {
  56. FilterParam luma; ///< luma parameters (width, height, amount)
  57. FilterParam chroma; ///< chroma parameters (width, height, amount)
  58. int hsub, vsub;
  59. } UnsharpContext;
  60. static void apply_unsharp( uint8_t *dst, int dst_stride,
  61. const uint8_t *src, int src_stride,
  62. int width, int height, FilterParam *fp)
  63. {
  64. uint32_t **sc = fp->sc;
  65. uint32_t sr[(MAX_SIZE * MAX_SIZE) - 1], tmp1, tmp2;
  66. int32_t res;
  67. int x, y, z;
  68. if (!fp->amount) {
  69. if (dst_stride == src_stride)
  70. memcpy(dst, src, src_stride * height);
  71. else
  72. for (y = 0; y < height; y++, dst += dst_stride, src += src_stride)
  73. memcpy(dst, src, width);
  74. return;
  75. }
  76. for (y = 0; y < 2 * fp->steps_y; y++)
  77. memset(sc[y], 0, sizeof(sc[y][0]) * (width + 2 * fp->steps_x));
  78. for (y = -fp->steps_y; y < height + fp->steps_y; y++) {
  79. memset(sr, 0, sizeof(sr[0]) * (2 * fp->steps_x - 1));
  80. for (x = -fp->steps_x; x < width + fp->steps_x; x++) {
  81. tmp1 = x <= 0 ? src[0] : x >= width ? src[width-1] : src[x];
  82. for (z = 0; z < fp->steps_x * 2; z += 2) {
  83. tmp2 = sr[z + 0] + tmp1; sr[z + 0] = tmp1;
  84. tmp1 = sr[z + 1] + tmp2; sr[z + 1] = tmp2;
  85. }
  86. for (z = 0; z < fp->steps_y * 2; z += 2) {
  87. tmp2 = sc[z + 0][x + fp->steps_x] + tmp1; sc[z + 0][x + fp->steps_x] = tmp1;
  88. tmp1 = sc[z + 1][x + fp->steps_x] + tmp2; sc[z + 1][x + fp->steps_x] = tmp2;
  89. }
  90. if (x >= fp->steps_x && y >= fp->steps_y) {
  91. const uint8_t *srx = src - fp->steps_y * src_stride + x - fp->steps_x;
  92. uint8_t *dsx = dst - fp->steps_y * dst_stride + x - fp->steps_x;
  93. res = (int32_t)*srx + ((((int32_t) * srx - (int32_t)((tmp1 + fp->halfscale) >> fp->scalebits)) * fp->amount) >> 16);
  94. *dsx = av_clip_uint8(res);
  95. }
  96. }
  97. if (y >= 0) {
  98. dst += dst_stride;
  99. src += src_stride;
  100. }
  101. }
  102. }
  103. static void set_filter_param(FilterParam *fp, int msize_x, int msize_y, double amount)
  104. {
  105. fp->msize_x = msize_x;
  106. fp->msize_y = msize_y;
  107. fp->amount = amount * 65536.0;
  108. fp->steps_x = msize_x / 2;
  109. fp->steps_y = msize_y / 2;
  110. fp->scalebits = (fp->steps_x + fp->steps_y) * 2;
  111. fp->halfscale = 1 << (fp->scalebits - 1);
  112. }
  113. static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
  114. {
  115. UnsharpContext *unsharp = ctx->priv;
  116. int lmsize_x = 5, cmsize_x = 0;
  117. int lmsize_y = 5, cmsize_y = 0;
  118. double lamount = 1.0f, camount = 0.0f;
  119. if (args)
  120. sscanf(args, "%d:%d:%lf:%d:%d:%lf", &lmsize_x, &lmsize_y, &lamount,
  121. &cmsize_x, &cmsize_y, &camount);
  122. if ((lamount && (lmsize_x < 2 || lmsize_y < 2)) ||
  123. (camount && (cmsize_x < 2 || cmsize_y < 2))) {
  124. av_log(ctx, AV_LOG_ERROR,
  125. "Invalid value <2 for lmsize_x:%d or lmsize_y:%d or cmsize_x:%d or cmsize_y:%d\n",
  126. lmsize_x, lmsize_y, cmsize_x, cmsize_y);
  127. return AVERROR(EINVAL);
  128. }
  129. set_filter_param(&unsharp->luma, lmsize_x, lmsize_y, lamount);
  130. set_filter_param(&unsharp->chroma, cmsize_x, cmsize_y, camount);
  131. return 0;
  132. }
  133. static int query_formats(AVFilterContext *ctx)
  134. {
  135. enum PixelFormat pix_fmts[] = {
  136. PIX_FMT_YUV420P, PIX_FMT_YUV422P, PIX_FMT_YUV444P, PIX_FMT_YUV410P,
  137. PIX_FMT_YUV411P, PIX_FMT_YUV440P, PIX_FMT_YUVJ420P, PIX_FMT_YUVJ422P,
  138. PIX_FMT_YUVJ444P, PIX_FMT_YUVJ440P, PIX_FMT_NONE
  139. };
  140. avfilter_set_common_pixel_formats(ctx, avfilter_make_format_list(pix_fmts));
  141. return 0;
  142. }
  143. static void init_filter_param(AVFilterContext *ctx, FilterParam *fp, const char *effect_type, int width)
  144. {
  145. int z;
  146. const char *effect;
  147. effect = fp->amount == 0 ? "none" : fp->amount < 0 ? "blur" : "sharpen";
  148. av_log(ctx, AV_LOG_INFO, "effect:%s type:%s msize_x:%d msize_y:%d amount:%0.2f\n",
  149. effect, effect_type, fp->msize_x, fp->msize_y, fp->amount / 65535.0);
  150. for (z = 0; z < 2 * fp->steps_y; z++)
  151. fp->sc[z] = av_malloc(sizeof(*(fp->sc[z])) * (width + 2 * fp->steps_x));
  152. }
  153. static int config_props(AVFilterLink *link)
  154. {
  155. UnsharpContext *unsharp = link->dst->priv;
  156. unsharp->hsub = av_pix_fmt_descriptors[link->format].log2_chroma_w;
  157. unsharp->vsub = av_pix_fmt_descriptors[link->format].log2_chroma_h;
  158. init_filter_param(link->dst, &unsharp->luma, "luma", link->w);
  159. init_filter_param(link->dst, &unsharp->chroma, "chroma", SHIFTUP(link->w, unsharp->hsub));
  160. return 0;
  161. }
  162. static void free_filter_param(FilterParam *fp)
  163. {
  164. int z;
  165. for (z = 0; z < 2 * fp->steps_y; z++)
  166. av_free(fp->sc[z]);
  167. }
  168. static av_cold void uninit(AVFilterContext *ctx)
  169. {
  170. UnsharpContext *unsharp = ctx->priv;
  171. free_filter_param(&unsharp->luma);
  172. free_filter_param(&unsharp->chroma);
  173. }
  174. static void end_frame(AVFilterLink *link)
  175. {
  176. UnsharpContext *unsharp = link->dst->priv;
  177. AVFilterBufferRef *in = link->cur_buf;
  178. AVFilterBufferRef *out = link->dst->outputs[0]->out_buf;
  179. int cw = SHIFTUP(link->w, unsharp->hsub);
  180. int ch = SHIFTUP(link->h, unsharp->vsub);
  181. apply_unsharp(out->data[0], out->linesize[0], in->data[0], in->linesize[0], link->w, link->h, &unsharp->luma);
  182. apply_unsharp(out->data[1], out->linesize[1], in->data[1], in->linesize[1], cw, ch, &unsharp->chroma);
  183. apply_unsharp(out->data[2], out->linesize[2], in->data[2], in->linesize[2], cw, ch, &unsharp->chroma);
  184. avfilter_unref_buffer(in);
  185. avfilter_draw_slice(link->dst->outputs[0], 0, link->h, 1);
  186. avfilter_end_frame(link->dst->outputs[0]);
  187. avfilter_unref_buffer(out);
  188. }
  189. static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
  190. {
  191. }
  192. AVFilter avfilter_vf_unsharp = {
  193. .name = "unsharp",
  194. .description = NULL_IF_CONFIG_SMALL("Sharpen or blur the input video."),
  195. .priv_size = sizeof(UnsharpContext),
  196. .init = init,
  197. .uninit = uninit,
  198. .query_formats = query_formats,
  199. .inputs = (AVFilterPad[]) {{ .name = "default",
  200. .type = AVMEDIA_TYPE_VIDEO,
  201. .draw_slice = draw_slice,
  202. .end_frame = end_frame,
  203. .config_props = config_props,
  204. .min_perms = AV_PERM_READ, },
  205. { .name = NULL}},
  206. .outputs = (AVFilterPad[]) {{ .name = "default",
  207. .type = AVMEDIA_TYPE_VIDEO, },
  208. { .name = NULL}},
  209. };