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.

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