vf_geq.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  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/avassert.h"
  28. #include "libavutil/avstring.h"
  29. #include "libavutil/eval.h"
  30. #include "libavutil/opt.h"
  31. #include "libavutil/pixdesc.h"
  32. #include "internal.h"
  33. typedef struct {
  34. const AVClass *class;
  35. AVExpr *e[4]; ///< expressions for each plane
  36. char *expr_str[4+3]; ///< expression strings for each plane
  37. AVFrame *picref; ///< current input buffer
  38. int hsub, vsub; ///< chroma subsampling
  39. int planes; ///< number of planes
  40. int is_rgb;
  41. } GEQContext;
  42. enum { Y = 0, U, V, A, G, B, R };
  43. #define OFFSET(x) offsetof(GEQContext, x)
  44. #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
  45. static const AVOption geq_options[] = {
  46. { "lum_expr", "set luminance expression", OFFSET(expr_str[Y]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  47. { "lum", "set luminance expression", OFFSET(expr_str[Y]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  48. { "cb_expr", "set chroma blue expression", OFFSET(expr_str[U]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  49. { "cb", "set chroma blue expression", OFFSET(expr_str[U]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  50. { "cr_expr", "set chroma red expression", OFFSET(expr_str[V]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  51. { "cr", "set chroma red expression", OFFSET(expr_str[V]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  52. { "alpha_expr", "set alpha expression", OFFSET(expr_str[A]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  53. { "a", "set alpha expression", OFFSET(expr_str[A]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  54. { "red_expr", "set red expression", OFFSET(expr_str[R]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  55. { "r", "set red expression", OFFSET(expr_str[R]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  56. { "green_expr", "set green expression", OFFSET(expr_str[G]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  57. { "g", "set green expression", OFFSET(expr_str[G]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  58. { "blue_expr", "set blue expression", OFFSET(expr_str[B]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  59. { "b", "set blue expression", OFFSET(expr_str[B]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  60. {NULL},
  61. };
  62. AVFILTER_DEFINE_CLASS(geq);
  63. static inline double getpix(void *priv, double x, double y, int plane)
  64. {
  65. int xi, yi;
  66. GEQContext *geq = priv;
  67. AVFrame *picref = geq->picref;
  68. const uint8_t *src = picref->data[plane];
  69. const int linesize = picref->linesize[plane];
  70. const int w = (plane == 1 || plane == 2) ? AV_CEIL_RSHIFT(picref->width, geq->hsub) : picref->width;
  71. const int h = (plane == 1 || plane == 2) ? AV_CEIL_RSHIFT(picref->height, geq->vsub) : picref->height;
  72. if (!src)
  73. return 0;
  74. xi = x = av_clipf(x, 0, w - 2);
  75. yi = y = av_clipf(y, 0, h - 2);
  76. x -= xi;
  77. y -= yi;
  78. return (1-y)*((1-x)*src[xi + yi * linesize] + x*src[xi + 1 + yi * linesize])
  79. + y *((1-x)*src[xi + (yi+1) * linesize] + x*src[xi + 1 + (yi+1) * linesize]);
  80. }
  81. //TODO: cubic interpolate
  82. //TODO: keep the last few frames
  83. static double lum(void *priv, double x, double y) { return getpix(priv, x, y, 0); }
  84. static double cb(void *priv, double x, double y) { return getpix(priv, x, y, 1); }
  85. static double cr(void *priv, double x, double y) { return getpix(priv, x, y, 2); }
  86. static double alpha(void *priv, double x, double y) { return getpix(priv, x, y, 3); }
  87. static const char *const var_names[] = { "X", "Y", "W", "H", "N", "SW", "SH", "T", NULL };
  88. enum { VAR_X, VAR_Y, VAR_W, VAR_H, VAR_N, VAR_SW, VAR_SH, VAR_T, VAR_VARS_NB };
  89. static av_cold int geq_init(AVFilterContext *ctx)
  90. {
  91. GEQContext *geq = ctx->priv;
  92. int plane, ret = 0;
  93. if (!geq->expr_str[Y] && !geq->expr_str[G] && !geq->expr_str[B] && !geq->expr_str[R]) {
  94. av_log(ctx, AV_LOG_ERROR, "A luminance or RGB expression is mandatory\n");
  95. ret = AVERROR(EINVAL);
  96. goto end;
  97. }
  98. geq->is_rgb = !geq->expr_str[Y];
  99. 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])) {
  100. av_log(ctx, AV_LOG_ERROR, "Either YCbCr or RGB but not both must be specified\n");
  101. ret = AVERROR(EINVAL);
  102. goto end;
  103. }
  104. if (!geq->expr_str[U] && !geq->expr_str[V]) {
  105. /* No chroma at all: fallback on luma */
  106. geq->expr_str[U] = av_strdup(geq->expr_str[Y]);
  107. geq->expr_str[V] = av_strdup(geq->expr_str[Y]);
  108. } else {
  109. /* One chroma unspecified, fallback on the other */
  110. if (!geq->expr_str[U]) geq->expr_str[U] = av_strdup(geq->expr_str[V]);
  111. if (!geq->expr_str[V]) geq->expr_str[V] = av_strdup(geq->expr_str[U]);
  112. }
  113. if (!geq->expr_str[A])
  114. geq->expr_str[A] = av_strdup("255");
  115. if (!geq->expr_str[G])
  116. geq->expr_str[G] = av_strdup("g(X,Y)");
  117. if (!geq->expr_str[B])
  118. geq->expr_str[B] = av_strdup("b(X,Y)");
  119. if (!geq->expr_str[R])
  120. geq->expr_str[R] = av_strdup("r(X,Y)");
  121. if (geq->is_rgb ?
  122. (!geq->expr_str[G] || !geq->expr_str[B] || !geq->expr_str[R])
  123. :
  124. (!geq->expr_str[U] || !geq->expr_str[V] || !geq->expr_str[A])) {
  125. ret = AVERROR(ENOMEM);
  126. goto end;
  127. }
  128. for (plane = 0; plane < 4; plane++) {
  129. static double (*p[])(void *, double, double) = { lum, cb, cr, alpha };
  130. static const char *const func2_yuv_names[] = { "lum", "cb", "cr", "alpha", "p", NULL };
  131. static const char *const func2_rgb_names[] = { "g", "b", "r", "alpha", "p", NULL };
  132. const char *const *func2_names = geq->is_rgb ? func2_rgb_names : func2_yuv_names;
  133. double (*func2[])(void *, double, double) = { lum, cb, cr, alpha, p[plane], NULL };
  134. ret = av_expr_parse(&geq->e[plane], geq->expr_str[plane < 3 && geq->is_rgb ? plane+4 : plane], var_names,
  135. NULL, NULL, func2_names, func2, 0, ctx);
  136. if (ret < 0)
  137. break;
  138. }
  139. end:
  140. return ret;
  141. }
  142. static int geq_query_formats(AVFilterContext *ctx)
  143. {
  144. GEQContext *geq = ctx->priv;
  145. static const enum AVPixelFormat yuv_pix_fmts[] = {
  146. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P,
  147. AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV440P,
  148. AV_PIX_FMT_YUVA444P, AV_PIX_FMT_YUVA422P, AV_PIX_FMT_YUVA420P,
  149. AV_PIX_FMT_GRAY8,
  150. AV_PIX_FMT_NONE
  151. };
  152. static const enum AVPixelFormat rgb_pix_fmts[] = {
  153. AV_PIX_FMT_GBRP, AV_PIX_FMT_GBRAP,
  154. AV_PIX_FMT_NONE
  155. };
  156. AVFilterFormats *fmts_list;
  157. if (geq->is_rgb) {
  158. fmts_list = ff_make_format_list(rgb_pix_fmts);
  159. } else
  160. fmts_list = ff_make_format_list(yuv_pix_fmts);
  161. if (!fmts_list)
  162. return AVERROR(ENOMEM);
  163. return ff_set_common_formats(ctx, fmts_list);
  164. }
  165. static int geq_config_props(AVFilterLink *inlink)
  166. {
  167. GEQContext *geq = inlink->dst->priv;
  168. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  169. av_assert0(desc);
  170. geq->hsub = desc->log2_chroma_w;
  171. geq->vsub = desc->log2_chroma_h;
  172. geq->planes = desc->nb_components;
  173. return 0;
  174. }
  175. static int geq_filter_frame(AVFilterLink *inlink, AVFrame *in)
  176. {
  177. int plane;
  178. GEQContext *geq = inlink->dst->priv;
  179. AVFilterLink *outlink = inlink->dst->outputs[0];
  180. AVFrame *out;
  181. double values[VAR_VARS_NB] = {
  182. [VAR_N] = inlink->frame_count,
  183. [VAR_T] = in->pts == AV_NOPTS_VALUE ? NAN : in->pts * av_q2d(inlink->time_base),
  184. };
  185. geq->picref = in;
  186. out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
  187. if (!out) {
  188. av_frame_free(&in);
  189. return AVERROR(ENOMEM);
  190. }
  191. av_frame_copy_props(out, in);
  192. for (plane = 0; plane < geq->planes && out->data[plane]; plane++) {
  193. int x, y;
  194. uint8_t *dst = out->data[plane];
  195. const int linesize = out->linesize[plane];
  196. const int w = (plane == 1 || plane == 2) ? AV_CEIL_RSHIFT(inlink->w, geq->hsub) : inlink->w;
  197. const int h = (plane == 1 || plane == 2) ? AV_CEIL_RSHIFT(inlink->h, geq->vsub) : inlink->h;
  198. values[VAR_W] = w;
  199. values[VAR_H] = h;
  200. values[VAR_SW] = w / (double)inlink->w;
  201. values[VAR_SH] = h / (double)inlink->h;
  202. for (y = 0; y < h; y++) {
  203. values[VAR_Y] = y;
  204. for (x = 0; x < w; x++) {
  205. values[VAR_X] = x;
  206. dst[x] = av_expr_eval(geq->e[plane], values, geq);
  207. }
  208. dst += linesize;
  209. }
  210. }
  211. av_frame_free(&geq->picref);
  212. return ff_filter_frame(outlink, out);
  213. }
  214. static av_cold void geq_uninit(AVFilterContext *ctx)
  215. {
  216. int i;
  217. GEQContext *geq = ctx->priv;
  218. for (i = 0; i < FF_ARRAY_ELEMS(geq->e); i++)
  219. av_expr_free(geq->e[i]);
  220. }
  221. static const AVFilterPad geq_inputs[] = {
  222. {
  223. .name = "default",
  224. .type = AVMEDIA_TYPE_VIDEO,
  225. .config_props = geq_config_props,
  226. .filter_frame = geq_filter_frame,
  227. },
  228. { NULL }
  229. };
  230. static const AVFilterPad geq_outputs[] = {
  231. {
  232. .name = "default",
  233. .type = AVMEDIA_TYPE_VIDEO,
  234. },
  235. { NULL }
  236. };
  237. AVFilter ff_vf_geq = {
  238. .name = "geq",
  239. .description = NULL_IF_CONFIG_SMALL("Apply generic equation to each pixel."),
  240. .priv_size = sizeof(GEQContext),
  241. .init = geq_init,
  242. .uninit = geq_uninit,
  243. .query_formats = geq_query_formats,
  244. .inputs = geq_inputs,
  245. .outputs = geq_outputs,
  246. .priv_class = &geq_class,
  247. .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
  248. };