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.

242 lines
8.0KB

  1. /*
  2. * Copyright (C) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. * Copyright (C) 2012 Clément Bœsch <ubitux@gmail.com>
  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]; ///< expression strings for each plane
  36. int framenum; ///< frame counter
  37. AVFrame *picref; ///< current input buffer
  38. int hsub, vsub; ///< chroma subsampling
  39. int planes; ///< number of planes
  40. } GEQContext;
  41. #define OFFSET(x) offsetof(GEQContext, x)
  42. #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
  43. static const AVOption geq_options[] = {
  44. { "lum_expr", "set luminance expression", OFFSET(expr_str[0]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  45. { "cb_expr", "set chroma blue expression", OFFSET(expr_str[1]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  46. { "cr_expr", "set chroma red expression", OFFSET(expr_str[2]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  47. { "alpha_expr", "set alpha expression", OFFSET(expr_str[3]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  48. {NULL},
  49. };
  50. AVFILTER_DEFINE_CLASS(geq);
  51. static inline double getpix(void *priv, double x, double y, int plane)
  52. {
  53. int xi, yi;
  54. GEQContext *geq = priv;
  55. AVFrame *picref = geq->picref;
  56. const uint8_t *src = picref->data[plane];
  57. const int linesize = picref->linesize[plane];
  58. const int w = picref->width >> ((plane == 1 || plane == 2) ? geq->hsub : 0);
  59. const int h = picref->height >> ((plane == 1 || plane == 2) ? geq->vsub : 0);
  60. if (!src)
  61. return 0;
  62. xi = x = av_clipf(x, 0, w - 2);
  63. yi = y = av_clipf(y, 0, h - 2);
  64. x -= xi;
  65. y -= yi;
  66. return (1-y)*((1-x)*src[xi + yi * linesize] + x*src[xi + 1 + yi * linesize])
  67. + y *((1-x)*src[xi + (yi+1) * linesize] + x*src[xi + 1 + (yi+1) * linesize]);
  68. }
  69. //TODO: cubic interpolate
  70. //TODO: keep the last few frames
  71. static double lum(void *priv, double x, double y) { return getpix(priv, x, y, 0); }
  72. static double cb(void *priv, double x, double y) { return getpix(priv, x, y, 1); }
  73. static double cr(void *priv, double x, double y) { return getpix(priv, x, y, 2); }
  74. static double alpha(void *priv, double x, double y) { return getpix(priv, x, y, 3); }
  75. static const char *const var_names[] = { "X", "Y", "W", "H", "N", "SW", "SH", "T", NULL };
  76. enum { VAR_X, VAR_Y, VAR_W, VAR_H, VAR_N, VAR_SW, VAR_SH, VAR_T, VAR_VARS_NB };
  77. static av_cold int geq_init(AVFilterContext *ctx)
  78. {
  79. GEQContext *geq = ctx->priv;
  80. int plane, ret = 0;
  81. if (!geq->expr_str[0]) {
  82. av_log(ctx, AV_LOG_ERROR, "Luminance expression is mandatory\n");
  83. ret = AVERROR(EINVAL);
  84. goto end;
  85. }
  86. if (!geq->expr_str[1] && !geq->expr_str[2]) {
  87. /* No chroma at all: fallback on luma */
  88. geq->expr_str[1] = av_strdup(geq->expr_str[0]);
  89. geq->expr_str[2] = av_strdup(geq->expr_str[0]);
  90. } else {
  91. /* One chroma unspecified, fallback on the other */
  92. if (!geq->expr_str[1]) geq->expr_str[1] = av_strdup(geq->expr_str[2]);
  93. if (!geq->expr_str[2]) geq->expr_str[2] = av_strdup(geq->expr_str[1]);
  94. }
  95. if (!geq->expr_str[3])
  96. geq->expr_str[3] = av_strdup("255");
  97. if (!geq->expr_str[1] || !geq->expr_str[2] || !geq->expr_str[3]) {
  98. ret = AVERROR(ENOMEM);
  99. goto end;
  100. }
  101. for (plane = 0; plane < 4; plane++) {
  102. static double (*p[])(void *, double, double) = { lum, cb, cr, alpha };
  103. static const char *const func2_names[] = { "lum", "cb", "cr", "alpha", "p", NULL };
  104. double (*func2[])(void *, double, double) = { lum, cb, cr, alpha, p[plane], NULL };
  105. ret = av_expr_parse(&geq->e[plane], geq->expr_str[plane], var_names,
  106. NULL, NULL, func2_names, func2, 0, ctx);
  107. if (ret < 0)
  108. break;
  109. }
  110. end:
  111. return ret;
  112. }
  113. static int geq_query_formats(AVFilterContext *ctx)
  114. {
  115. static const enum PixelFormat pix_fmts[] = {
  116. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P,
  117. AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV440P,
  118. AV_PIX_FMT_YUVA444P, AV_PIX_FMT_YUVA422P, AV_PIX_FMT_YUVA420P,
  119. AV_PIX_FMT_GRAY8,
  120. AV_PIX_FMT_NONE
  121. };
  122. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  123. return 0;
  124. }
  125. static int geq_config_props(AVFilterLink *inlink)
  126. {
  127. GEQContext *geq = inlink->dst->priv;
  128. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  129. geq->hsub = desc->log2_chroma_w;
  130. geq->vsub = desc->log2_chroma_h;
  131. geq->planes = desc->nb_components;
  132. return 0;
  133. }
  134. static int geq_filter_frame(AVFilterLink *inlink, AVFrame *in)
  135. {
  136. int plane;
  137. GEQContext *geq = inlink->dst->priv;
  138. AVFilterLink *outlink = inlink->dst->outputs[0];
  139. AVFrame *out;
  140. double values[VAR_VARS_NB] = {
  141. [VAR_N] = geq->framenum++,
  142. [VAR_T] = in->pts == AV_NOPTS_VALUE ? NAN : in->pts * av_q2d(inlink->time_base),
  143. };
  144. geq->picref = in;
  145. out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
  146. if (!out) {
  147. av_frame_free(&in);
  148. return AVERROR(ENOMEM);
  149. }
  150. av_frame_copy_props(out, in);
  151. for (plane = 0; plane < geq->planes && out->data[plane]; plane++) {
  152. int x, y;
  153. uint8_t *dst = out->data[plane];
  154. const int linesize = out->linesize[plane];
  155. const int w = inlink->w >> ((plane == 1 || plane == 2) ? geq->hsub : 0);
  156. const int h = inlink->h >> ((plane == 1 || plane == 2) ? geq->vsub : 0);
  157. values[VAR_W] = w;
  158. values[VAR_H] = h;
  159. values[VAR_SW] = w / (double)inlink->w;
  160. values[VAR_SH] = h / (double)inlink->h;
  161. for (y = 0; y < h; y++) {
  162. values[VAR_Y] = y;
  163. for (x = 0; x < w; x++) {
  164. values[VAR_X] = x;
  165. dst[x] = av_expr_eval(geq->e[plane], values, geq);
  166. }
  167. dst += linesize;
  168. }
  169. }
  170. av_frame_free(&geq->picref);
  171. return ff_filter_frame(outlink, out);
  172. }
  173. static av_cold void geq_uninit(AVFilterContext *ctx)
  174. {
  175. int i;
  176. GEQContext *geq = ctx->priv;
  177. for (i = 0; i < FF_ARRAY_ELEMS(geq->e); i++)
  178. av_expr_free(geq->e[i]);
  179. }
  180. static const AVFilterPad geq_inputs[] = {
  181. {
  182. .name = "default",
  183. .type = AVMEDIA_TYPE_VIDEO,
  184. .config_props = geq_config_props,
  185. .filter_frame = geq_filter_frame,
  186. },
  187. { NULL }
  188. };
  189. static const AVFilterPad geq_outputs[] = {
  190. {
  191. .name = "default",
  192. .type = AVMEDIA_TYPE_VIDEO,
  193. },
  194. { NULL }
  195. };
  196. AVFilter avfilter_vf_geq = {
  197. .name = "geq",
  198. .description = NULL_IF_CONFIG_SMALL("Apply generic equation to each pixel."),
  199. .priv_size = sizeof(GEQContext),
  200. .init = geq_init,
  201. .uninit = geq_uninit,
  202. .query_formats = geq_query_formats,
  203. .inputs = geq_inputs,
  204. .outputs = geq_outputs,
  205. .priv_class = &geq_class,
  206. };