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.

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