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