vf_geq.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. /*
  2. * Copyright (C) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. * Copyright (C) 2012 Clément Bœsch <u pkh me>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along
  18. * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
  19. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  20. */
  21. /**
  22. * @file
  23. * Generic equation change filter
  24. * Originally written by Michael Niedermayer for the MPlayer project, and
  25. * ported by Clément Bœsch for FFmpeg.
  26. */
  27. #include "libavutil/avstring.h"
  28. #include "libavutil/eval.h"
  29. #include "libavutil/opt.h"
  30. #include "libavutil/pixdesc.h"
  31. #include "internal.h"
  32. typedef struct {
  33. const AVClass *class;
  34. AVExpr *e[4]; ///< expressions for each plane
  35. char *expr_str[4+3]; ///< expression strings for each plane
  36. AVFrame *picref; ///< current input buffer
  37. int hsub, vsub; ///< chroma subsampling
  38. int planes; ///< number of planes
  39. int is_rgb;
  40. } GEQContext;
  41. enum { Y = 0, U, V, A, G, B, R };
  42. #define OFFSET(x) offsetof(GEQContext, x)
  43. #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
  44. static const AVOption geq_options[] = {
  45. { "lum_expr", "set luminance expression", OFFSET(expr_str[Y]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  46. { "lum", "set luminance expression", OFFSET(expr_str[Y]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  47. { "cb_expr", "set chroma blue expression", OFFSET(expr_str[U]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  48. { "cb", "set chroma blue expression", OFFSET(expr_str[U]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  49. { "cr_expr", "set chroma red expression", OFFSET(expr_str[V]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  50. { "cr", "set chroma red expression", OFFSET(expr_str[V]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  51. { "alpha_expr", "set alpha expression", OFFSET(expr_str[A]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  52. { "a", "set alpha expression", OFFSET(expr_str[A]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  53. { "red_expr", "set red expression", OFFSET(expr_str[R]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  54. { "r", "set red expression", OFFSET(expr_str[R]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  55. { "green_expr", "set green expression", OFFSET(expr_str[G]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  56. { "g", "set green expression", OFFSET(expr_str[G]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  57. { "blue_expr", "set blue expression", OFFSET(expr_str[B]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  58. { "b", "set blue expression", OFFSET(expr_str[B]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  59. {NULL},
  60. };
  61. AVFILTER_DEFINE_CLASS(geq);
  62. static inline double getpix(void *priv, double x, double y, int plane)
  63. {
  64. int xi, yi;
  65. GEQContext *geq = priv;
  66. AVFrame *picref = geq->picref;
  67. const uint8_t *src = picref->data[plane];
  68. const int linesize = picref->linesize[plane];
  69. const int w = (plane == 1 || plane == 2) ? FF_CEIL_RSHIFT(picref->width, geq->hsub) : picref->width;
  70. const int h = (plane == 1 || plane == 2) ? FF_CEIL_RSHIFT(picref->height, geq->vsub) : picref->height;
  71. if (!src)
  72. return 0;
  73. xi = x = av_clipf(x, 0, w - 2);
  74. yi = y = av_clipf(y, 0, h - 2);
  75. x -= xi;
  76. y -= yi;
  77. return (1-y)*((1-x)*src[xi + yi * linesize] + x*src[xi + 1 + yi * linesize])
  78. + y *((1-x)*src[xi + (yi+1) * linesize] + x*src[xi + 1 + (yi+1) * linesize]);
  79. }
  80. //TODO: cubic interpolate
  81. //TODO: keep the last few frames
  82. static double lum(void *priv, double x, double y) { return getpix(priv, x, y, 0); }
  83. static double cb(void *priv, double x, double y) { return getpix(priv, x, y, 1); }
  84. static double cr(void *priv, double x, double y) { return getpix(priv, x, y, 2); }
  85. static double alpha(void *priv, double x, double y) { return getpix(priv, x, y, 3); }
  86. static const char *const var_names[] = { "X", "Y", "W", "H", "N", "SW", "SH", "T", NULL };
  87. enum { VAR_X, VAR_Y, VAR_W, VAR_H, VAR_N, VAR_SW, VAR_SH, VAR_T, VAR_VARS_NB };
  88. static av_cold int geq_init(AVFilterContext *ctx)
  89. {
  90. GEQContext *geq = ctx->priv;
  91. int plane, ret = 0;
  92. if (!geq->expr_str[Y] && !geq->expr_str[G] && !geq->expr_str[B] && !geq->expr_str[R]) {
  93. av_log(ctx, AV_LOG_ERROR, "A luminance or RGB expression is mandatory\n");
  94. ret = AVERROR(EINVAL);
  95. goto end;
  96. }
  97. geq->is_rgb = !geq->expr_str[Y];
  98. if ((geq->expr_str[Y] || geq->expr_str[U] || geq->expr_str[V]) && (geq->expr_str[G] || geq->expr_str[B] || geq->expr_str[R])) {
  99. av_log(ctx, AV_LOG_ERROR, "Either YCbCr or RGB but not both must be specified\n");
  100. ret = AVERROR(EINVAL);
  101. goto end;
  102. }
  103. if (!geq->expr_str[U] && !geq->expr_str[V]) {
  104. /* No chroma at all: fallback on luma */
  105. geq->expr_str[U] = av_strdup(geq->expr_str[Y]);
  106. geq->expr_str[V] = av_strdup(geq->expr_str[Y]);
  107. } else {
  108. /* One chroma unspecified, fallback on the other */
  109. if (!geq->expr_str[U]) geq->expr_str[U] = av_strdup(geq->expr_str[V]);
  110. if (!geq->expr_str[V]) geq->expr_str[V] = av_strdup(geq->expr_str[U]);
  111. }
  112. if (!geq->expr_str[A])
  113. geq->expr_str[A] = av_strdup("255");
  114. if (!geq->expr_str[G])
  115. geq->expr_str[G] = av_strdup("g(X,Y)");
  116. if (!geq->expr_str[B])
  117. geq->expr_str[B] = av_strdup("b(X,Y)");
  118. if (!geq->expr_str[R])
  119. geq->expr_str[R] = av_strdup("r(X,Y)");
  120. if (geq->is_rgb ?
  121. (!geq->expr_str[G] || !geq->expr_str[B] || !geq->expr_str[R])
  122. :
  123. (!geq->expr_str[U] || !geq->expr_str[V] || !geq->expr_str[A])) {
  124. ret = AVERROR(ENOMEM);
  125. goto end;
  126. }
  127. for (plane = 0; plane < 4; plane++) {
  128. static double (*p[])(void *, double, double) = { lum, cb, cr, alpha };
  129. static const char *const func2_yuv_names[] = { "lum", "cb", "cr", "alpha", "p", NULL };
  130. static const char *const func2_rgb_names[] = { "g", "b", "r", "alpha", "p", NULL };
  131. const char *const *func2_names = geq->is_rgb ? func2_rgb_names : func2_yuv_names;
  132. double (*func2[])(void *, double, double) = { lum, cb, cr, alpha, p[plane], NULL };
  133. ret = av_expr_parse(&geq->e[plane], geq->expr_str[plane < 3 && geq->is_rgb ? plane+4 : plane], var_names,
  134. NULL, NULL, func2_names, func2, 0, ctx);
  135. if (ret < 0)
  136. break;
  137. }
  138. end:
  139. return ret;
  140. }
  141. static int geq_query_formats(AVFilterContext *ctx)
  142. {
  143. GEQContext *geq = ctx->priv;
  144. static const enum PixelFormat yuv_pix_fmts[] = {
  145. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P,
  146. AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV440P,
  147. AV_PIX_FMT_YUVA444P, AV_PIX_FMT_YUVA422P, AV_PIX_FMT_YUVA420P,
  148. AV_PIX_FMT_GRAY8,
  149. AV_PIX_FMT_NONE
  150. };
  151. static const enum PixelFormat rgb_pix_fmts[] = {
  152. AV_PIX_FMT_GBRP, AV_PIX_FMT_GBRAP,
  153. AV_PIX_FMT_NONE
  154. };
  155. if (geq->is_rgb) {
  156. ff_set_common_formats(ctx, ff_make_format_list(rgb_pix_fmts));
  157. } else
  158. ff_set_common_formats(ctx, ff_make_format_list(yuv_pix_fmts));
  159. return 0;
  160. }
  161. static int geq_config_props(AVFilterLink *inlink)
  162. {
  163. GEQContext *geq = inlink->dst->priv;
  164. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  165. geq->hsub = desc->log2_chroma_w;
  166. geq->vsub = desc->log2_chroma_h;
  167. geq->planes = desc->nb_components;
  168. return 0;
  169. }
  170. static int geq_filter_frame(AVFilterLink *inlink, AVFrame *in)
  171. {
  172. int plane;
  173. GEQContext *geq = inlink->dst->priv;
  174. AVFilterLink *outlink = inlink->dst->outputs[0];
  175. AVFrame *out;
  176. double values[VAR_VARS_NB] = {
  177. [VAR_N] = inlink->frame_count,
  178. [VAR_T] = in->pts == AV_NOPTS_VALUE ? NAN : in->pts * av_q2d(inlink->time_base),
  179. };
  180. geq->picref = in;
  181. out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
  182. if (!out) {
  183. av_frame_free(&in);
  184. return AVERROR(ENOMEM);
  185. }
  186. av_frame_copy_props(out, in);
  187. for (plane = 0; plane < geq->planes && out->data[plane]; plane++) {
  188. int x, y;
  189. uint8_t *dst = out->data[plane];
  190. const int linesize = out->linesize[plane];
  191. const int w = (plane == 1 || plane == 2) ? FF_CEIL_RSHIFT(inlink->w, geq->hsub) : inlink->w;
  192. const int h = (plane == 1 || plane == 2) ? FF_CEIL_RSHIFT(inlink->h, geq->vsub) : inlink->h;
  193. values[VAR_W] = w;
  194. values[VAR_H] = h;
  195. values[VAR_SW] = w / (double)inlink->w;
  196. values[VAR_SH] = h / (double)inlink->h;
  197. for (y = 0; y < h; y++) {
  198. values[VAR_Y] = y;
  199. for (x = 0; x < w; x++) {
  200. values[VAR_X] = x;
  201. dst[x] = av_expr_eval(geq->e[plane], values, geq);
  202. }
  203. dst += linesize;
  204. }
  205. }
  206. av_frame_free(&geq->picref);
  207. return ff_filter_frame(outlink, out);
  208. }
  209. static av_cold void geq_uninit(AVFilterContext *ctx)
  210. {
  211. int i;
  212. GEQContext *geq = ctx->priv;
  213. for (i = 0; i < FF_ARRAY_ELEMS(geq->e); i++)
  214. av_expr_free(geq->e[i]);
  215. }
  216. static const AVFilterPad geq_inputs[] = {
  217. {
  218. .name = "default",
  219. .type = AVMEDIA_TYPE_VIDEO,
  220. .config_props = geq_config_props,
  221. .filter_frame = geq_filter_frame,
  222. },
  223. { NULL }
  224. };
  225. static const AVFilterPad geq_outputs[] = {
  226. {
  227. .name = "default",
  228. .type = AVMEDIA_TYPE_VIDEO,
  229. },
  230. { NULL }
  231. };
  232. AVFilter ff_vf_geq = {
  233. .name = "geq",
  234. .description = NULL_IF_CONFIG_SMALL("Apply generic equation to each pixel."),
  235. .priv_size = sizeof(GEQContext),
  236. .init = geq_init,
  237. .uninit = geq_uninit,
  238. .query_formats = geq_query_formats,
  239. .inputs = geq_inputs,
  240. .outputs = geq_outputs,
  241. .priv_class = &geq_class,
  242. .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
  243. };