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.

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