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.

299 lines
11KB

  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/opt.h"
  44. #include "libavutil/pixdesc.h"
  45. #define MIN_MATRIX_SIZE 3
  46. #define MAX_MATRIX_SIZE 63
  47. /* right-shift and round-up */
  48. #define SHIFTUP(x,shift) (-((-(x))>>(shift)))
  49. typedef struct FilterParam {
  50. int msize_x; ///< matrix width
  51. int msize_y; ///< matrix height
  52. int amount; ///< effect amount
  53. int steps_x; ///< horizontal step count
  54. int steps_y; ///< vertical step count
  55. int scalebits; ///< bits to shift pixel
  56. int32_t halfscale; ///< amount to add to pixel
  57. uint32_t *sc[MAX_MATRIX_SIZE - 1]; ///< finite state machine storage
  58. } FilterParam;
  59. typedef struct {
  60. const AVClass *class;
  61. FilterParam luma; ///< luma parameters (width, height, amount)
  62. FilterParam chroma; ///< chroma parameters (width, height, amount)
  63. int hsub, vsub;
  64. int luma_msize_x, luma_msize_y, chroma_msize_x, chroma_msize_y;
  65. double luma_amount, chroma_amount;
  66. } UnsharpContext;
  67. #define OFFSET(x) offsetof(UnsharpContext, x)
  68. static const AVOption unsharp_options[] = {
  69. { "luma_msize_x", "set luma matrix x size", OFFSET(luma_msize_x), AV_OPT_TYPE_INT, {.i64=5}, 3, 63 },
  70. { "lx", "set luma matrix x size", OFFSET(luma_msize_x), AV_OPT_TYPE_INT, {.i64=5}, 3, 63 },
  71. { "luma_msize_y", "set luma matrix y size", OFFSET(luma_msize_y), AV_OPT_TYPE_INT, {.i64=5}, 3, 63 },
  72. { "ly", "set luma matrix y size", OFFSET(luma_msize_y), AV_OPT_TYPE_INT, {.i64=5}, 3, 63 },
  73. { "luma_amount", "set luma effect amount", OFFSET(luma_amount), AV_OPT_TYPE_DOUBLE, {.dbl=1.0}, -2.0, 5.0 },
  74. { "la", "set luma effect amount", OFFSET(luma_amount), AV_OPT_TYPE_DOUBLE, {.dbl=1.0}, -2.0, 5.0 },
  75. { "chroma_msize_x", "set chroma matrix x size", OFFSET(chroma_msize_x), AV_OPT_TYPE_INT, {.i64=5}, 3, 63 },
  76. { "cx", "set chroma matrix x size", OFFSET(chroma_msize_x), AV_OPT_TYPE_INT, {.i64=5}, 3, 63 },
  77. { "chroma_msize_y", "set chroma matrix y size", OFFSET(chroma_msize_y), AV_OPT_TYPE_INT, {.i64=5}, 3, 63 },
  78. { "cy" , "set chroma matrix y size", OFFSET(chroma_msize_y), AV_OPT_TYPE_INT, {.i64=5}, 3, 63 },
  79. { "chroma_amount", "set chroma effect strenght", OFFSET(chroma_amount), AV_OPT_TYPE_DOUBLE, {.dbl=0.0}, -2.0, 5.0 },
  80. { "ca", "set chroma effect strenght", OFFSET(chroma_amount), AV_OPT_TYPE_DOUBLE, {.dbl=0.0}, -2.0, 5.0 },
  81. { NULL }
  82. };
  83. AVFILTER_DEFINE_CLASS(unsharp);
  84. static void apply_unsharp( uint8_t *dst, int dst_stride,
  85. const uint8_t *src, int src_stride,
  86. int width, int height, FilterParam *fp)
  87. {
  88. uint32_t **sc = fp->sc;
  89. uint32_t sr[MAX_MATRIX_SIZE - 1], tmp1, tmp2;
  90. int32_t res;
  91. int x, y, z;
  92. const uint8_t *src2 = NULL; //silence a warning
  93. if (!fp->amount) {
  94. if (dst_stride == src_stride)
  95. memcpy(dst, src, src_stride * height);
  96. else
  97. for (y = 0; y < height; y++, dst += dst_stride, src += src_stride)
  98. memcpy(dst, src, width);
  99. return;
  100. }
  101. for (y = 0; y < 2 * fp->steps_y; y++)
  102. memset(sc[y], 0, sizeof(sc[y][0]) * (width + 2 * fp->steps_x));
  103. for (y = -fp->steps_y; y < height + fp->steps_y; y++) {
  104. if (y < height)
  105. src2 = src;
  106. memset(sr, 0, sizeof(sr[0]) * (2 * fp->steps_x - 1));
  107. for (x = -fp->steps_x; x < width + fp->steps_x; x++) {
  108. tmp1 = x <= 0 ? src2[0] : x >= width ? src2[width-1] : src2[x];
  109. for (z = 0; z < fp->steps_x * 2; z += 2) {
  110. tmp2 = sr[z + 0] + tmp1; sr[z + 0] = tmp1;
  111. tmp1 = sr[z + 1] + tmp2; sr[z + 1] = tmp2;
  112. }
  113. for (z = 0; z < fp->steps_y * 2; z += 2) {
  114. tmp2 = sc[z + 0][x + fp->steps_x] + tmp1; sc[z + 0][x + fp->steps_x] = tmp1;
  115. tmp1 = sc[z + 1][x + fp->steps_x] + tmp2; sc[z + 1][x + fp->steps_x] = tmp2;
  116. }
  117. if (x >= fp->steps_x && y >= fp->steps_y) {
  118. const uint8_t *srx = src - fp->steps_y * src_stride + x - fp->steps_x;
  119. uint8_t *dsx = dst - fp->steps_y * dst_stride + x - fp->steps_x;
  120. res = (int32_t)*srx + ((((int32_t) * srx - (int32_t)((tmp1 + fp->halfscale) >> fp->scalebits)) * fp->amount) >> 16);
  121. *dsx = av_clip_uint8(res);
  122. }
  123. }
  124. if (y >= 0) {
  125. dst += dst_stride;
  126. src += src_stride;
  127. }
  128. }
  129. }
  130. static void set_filter_param(FilterParam *fp, int msize_x, int msize_y, double amount)
  131. {
  132. fp->msize_x = msize_x;
  133. fp->msize_y = msize_y;
  134. fp->amount = amount * 65536.0;
  135. fp->steps_x = msize_x / 2;
  136. fp->steps_y = msize_y / 2;
  137. fp->scalebits = (fp->steps_x + fp->steps_y) * 2;
  138. fp->halfscale = 1 << (fp->scalebits - 1);
  139. }
  140. static av_cold int init(AVFilterContext *ctx, const char *args)
  141. {
  142. UnsharpContext *unsharp = ctx->priv;
  143. static const char *shorthand[] = {
  144. "luma_msize_x", "luma_msize_y", "luma_amount",
  145. "chroma_msize_x", "chroma_msize_y", "chroma_amount",
  146. NULL
  147. };
  148. int ret;
  149. unsharp->class = &unsharp_class;
  150. av_opt_set_defaults(unsharp);
  151. if ((ret = av_opt_set_from_string(unsharp, args, shorthand, "=", ":")) < 0)
  152. return ret;
  153. set_filter_param(&unsharp->luma, unsharp->luma_msize_x, unsharp->luma_msize_y, unsharp->luma_amount);
  154. set_filter_param(&unsharp->chroma, unsharp->chroma_msize_x, unsharp->chroma_msize_y, unsharp->chroma_amount);
  155. return 0;
  156. }
  157. static int query_formats(AVFilterContext *ctx)
  158. {
  159. static const enum AVPixelFormat pix_fmts[] = {
  160. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV410P,
  161. AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ422P,
  162. AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ440P, AV_PIX_FMT_NONE
  163. };
  164. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  165. return 0;
  166. }
  167. static void init_filter_param(AVFilterContext *ctx, FilterParam *fp, const char *effect_type, int width)
  168. {
  169. int z;
  170. const char *effect;
  171. effect = fp->amount == 0 ? "none" : fp->amount < 0 ? "blur" : "sharpen";
  172. av_log(ctx, AV_LOG_VERBOSE, "effect:%s type:%s msize_x:%d msize_y:%d amount:%0.2f\n",
  173. effect, effect_type, fp->msize_x, fp->msize_y, fp->amount / 65535.0);
  174. for (z = 0; z < 2 * fp->steps_y; z++)
  175. fp->sc[z] = av_malloc(sizeof(*(fp->sc[z])) * (width + 2 * fp->steps_x));
  176. }
  177. static int config_props(AVFilterLink *link)
  178. {
  179. UnsharpContext *unsharp = link->dst->priv;
  180. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
  181. unsharp->hsub = desc->log2_chroma_w;
  182. unsharp->vsub = desc->log2_chroma_h;
  183. init_filter_param(link->dst, &unsharp->luma, "luma", link->w);
  184. init_filter_param(link->dst, &unsharp->chroma, "chroma", SHIFTUP(link->w, unsharp->hsub));
  185. return 0;
  186. }
  187. static void free_filter_param(FilterParam *fp)
  188. {
  189. int z;
  190. for (z = 0; z < 2 * fp->steps_y; z++)
  191. av_free(fp->sc[z]);
  192. }
  193. static av_cold void uninit(AVFilterContext *ctx)
  194. {
  195. UnsharpContext *unsharp = ctx->priv;
  196. free_filter_param(&unsharp->luma);
  197. free_filter_param(&unsharp->chroma);
  198. av_opt_free(unsharp);
  199. }
  200. static int filter_frame(AVFilterLink *link, AVFilterBufferRef *in)
  201. {
  202. UnsharpContext *unsharp = link->dst->priv;
  203. AVFilterLink *outlink = link->dst->outputs[0];
  204. AVFilterBufferRef *out;
  205. int cw = SHIFTUP(link->w, unsharp->hsub);
  206. int ch = SHIFTUP(link->h, unsharp->vsub);
  207. out = ff_get_video_buffer(outlink, AV_PERM_WRITE, outlink->w, outlink->h);
  208. if (!out) {
  209. avfilter_unref_bufferp(&in);
  210. return AVERROR(ENOMEM);
  211. }
  212. avfilter_copy_buffer_ref_props(out, in);
  213. apply_unsharp(out->data[0], out->linesize[0], in->data[0], in->linesize[0], link->w, link->h, &unsharp->luma);
  214. apply_unsharp(out->data[1], out->linesize[1], in->data[1], in->linesize[1], cw, ch, &unsharp->chroma);
  215. apply_unsharp(out->data[2], out->linesize[2], in->data[2], in->linesize[2], cw, ch, &unsharp->chroma);
  216. avfilter_unref_bufferp(&in);
  217. return ff_filter_frame(outlink, out);
  218. }
  219. static const AVFilterPad avfilter_vf_unsharp_inputs[] = {
  220. {
  221. .name = "default",
  222. .type = AVMEDIA_TYPE_VIDEO,
  223. .filter_frame = filter_frame,
  224. .config_props = config_props,
  225. .min_perms = AV_PERM_READ,
  226. },
  227. { NULL }
  228. };
  229. static const AVFilterPad avfilter_vf_unsharp_outputs[] = {
  230. {
  231. .name = "default",
  232. .type = AVMEDIA_TYPE_VIDEO,
  233. },
  234. { NULL }
  235. };
  236. AVFilter avfilter_vf_unsharp = {
  237. .name = "unsharp",
  238. .description = NULL_IF_CONFIG_SMALL("Sharpen or blur the input video."),
  239. .priv_size = sizeof(UnsharpContext),
  240. .init = init,
  241. .uninit = uninit,
  242. .query_formats = query_formats,
  243. .inputs = avfilter_vf_unsharp_inputs,
  244. .outputs = avfilter_vf_unsharp_outputs,
  245. .priv_class = &unsharp_class,
  246. };