vf_unsharp.c 11 KB

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