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.

281 lines
9.5KB

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