FFmpeg  4.4.8
vf_lut2.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 Paul B Mahol
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #include "libavutil/attributes.h"
22 #include "libavutil/common.h"
23 #include "libavutil/eval.h"
24 #include "libavutil/opt.h"
25 #include "libavutil/pixdesc.h"
26 #include "avfilter.h"
27 #include "filters.h"
28 #include "drawutils.h"
29 #include "formats.h"
30 #include "internal.h"
31 #include "video.h"
32 #include "framesync.h"
33 
34 static const char *const var_names[] = {
35  "w", ///< width of the input video
36  "h", ///< height of the input video
37  "x", ///< input value for the pixel from input #1
38  "y", ///< input value for the pixel from input #2
39  "bdx", ///< input #1 video bitdepth
40  "bdy", ///< input #2 video bitdepth
41  NULL
42 };
43 
44 enum var_name {
52 };
53 
54 typedef struct LUT2Context {
55  const AVClass *class;
57 
58  int odepth;
59  char *comp_expr_str[4];
60 
63  uint16_t *lut[4]; ///< lookup table for each component
64  int width[4], height[4];
65  int widthx[4], heightx[4];
66  int widthy[4], heighty[4];
69  int nb_planes;
71  int tlut2;
72  AVFrame *prev_frame; /* only used with tlut2 */
73 
74  int (*lut2)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
75 } LUT2Context;
76 
77 typedef struct ThreadData {
79 } ThreadData;
80 
81 #define OFFSET(x) offsetof(LUT2Context, x)
82 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
83 #define TFLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
84 
85 static const AVOption options[] = {
86  { "c0", "set component #0 expression", OFFSET(comp_expr_str[0]), AV_OPT_TYPE_STRING, { .str = "x" }, .flags = TFLAGS },
87  { "c1", "set component #1 expression", OFFSET(comp_expr_str[1]), AV_OPT_TYPE_STRING, { .str = "x" }, .flags = TFLAGS },
88  { "c2", "set component #2 expression", OFFSET(comp_expr_str[2]), AV_OPT_TYPE_STRING, { .str = "x" }, .flags = TFLAGS },
89  { "c3", "set component #3 expression", OFFSET(comp_expr_str[3]), AV_OPT_TYPE_STRING, { .str = "x" }, .flags = TFLAGS },
90  { "d", "set output depth", OFFSET(odepth), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 16, .flags = FLAGS },
91  { NULL }
92 };
93 
95 {
96  LUT2Context *s = ctx->priv;
97  int i;
98 
99  ff_framesync_uninit(&s->fs);
100  av_frame_free(&s->prev_frame);
101 
102  for (i = 0; i < 4; i++) {
103  av_expr_free(s->comp_expr[i]);
104  s->comp_expr[i] = NULL;
105  av_freep(&s->comp_expr_str[i]);
106  av_freep(&s->lut[i]);
107  }
108 }
109 
110 #define BIT8_FMTS \
111  AV_PIX_FMT_YUVA444P, AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV440P, \
112  AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ440P, \
113  AV_PIX_FMT_YUVA422P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVA420P, AV_PIX_FMT_YUV420P, \
114  AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ420P, \
115  AV_PIX_FMT_YUVJ411P, AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P, \
116  AV_PIX_FMT_GRAY8, AV_PIX_FMT_GBRP, AV_PIX_FMT_GBRAP,
117 
118 #define BIT9_FMTS \
119  AV_PIX_FMT_GBRP9, AV_PIX_FMT_GRAY9, \
120  AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV444P9, \
121  AV_PIX_FMT_YUVA420P9, AV_PIX_FMT_YUVA422P9, AV_PIX_FMT_YUVA444P9,
122 
123 #define BIT10_FMTS \
124  AV_PIX_FMT_GRAY10, AV_PIX_FMT_GBRP10, AV_PIX_FMT_GBRAP10, \
125  AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10, \
126  AV_PIX_FMT_YUVA420P10, AV_PIX_FMT_YUVA422P10, AV_PIX_FMT_YUVA444P10,
127 
128 #define BIT12_FMTS \
129  AV_PIX_FMT_YUV420P12, AV_PIX_FMT_YUV422P12, AV_PIX_FMT_YUV444P12, AV_PIX_FMT_YUV440P12, \
130  AV_PIX_FMT_YUVA422P12, AV_PIX_FMT_YUVA444P12, \
131  AV_PIX_FMT_GRAY12, AV_PIX_FMT_GBRAP12, AV_PIX_FMT_GBRP12,
132 
133 #define BIT14_FMTS \
134  AV_PIX_FMT_YUV420P14, AV_PIX_FMT_YUV422P14, AV_PIX_FMT_YUV444P14, \
135  AV_PIX_FMT_GRAY14, AV_PIX_FMT_GBRP14,
136 
137 #define BIT16_FMTS \
138  AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16, \
139  AV_PIX_FMT_YUVA420P16, AV_PIX_FMT_YUVA422P16, AV_PIX_FMT_YUVA444P16, \
140  AV_PIX_FMT_GBRP16, AV_PIX_FMT_GBRAP16, AV_PIX_FMT_GRAY16,
141 
143 {
144  LUT2Context *s = ctx->priv;
145  static const enum AVPixelFormat all_pix_fmts[] = {
146  BIT8_FMTS
147  BIT9_FMTS
148  BIT10_FMTS
149  BIT12_FMTS
151  };
152  static const enum AVPixelFormat bit8_pix_fmts[] = {
153  BIT8_FMTS
155  };
156  static const enum AVPixelFormat bit9_pix_fmts[] = {
157  BIT9_FMTS
159  };
160  static const enum AVPixelFormat bit10_pix_fmts[] = {
161  BIT10_FMTS
163  };
164  static const enum AVPixelFormat bit12_pix_fmts[] = {
165  BIT12_FMTS
167  };
168  static const enum AVPixelFormat bit14_pix_fmts[] = {
169  BIT14_FMTS
171  };
172  static const enum AVPixelFormat bit16_pix_fmts[] = {
173  BIT16_FMTS
175  };
176  const enum AVPixelFormat *pix_fmts;
177  int ret;
178 
179  if (s->tlut2 || !s->odepth)
181 
182  ret = ff_formats_ref(ff_make_format_list(all_pix_fmts), &ctx->inputs[0]->outcfg.formats);
183  if (ret < 0)
184  return ret;
185 
186  switch (s->odepth) {
187  case 8: pix_fmts = bit8_pix_fmts; break;
188  case 9: pix_fmts = bit9_pix_fmts; break;
189  case 10: pix_fmts = bit10_pix_fmts; break;
190  case 12: pix_fmts = bit12_pix_fmts; break;
191  case 14: pix_fmts = bit14_pix_fmts; break;
192  case 16: pix_fmts = bit16_pix_fmts; break;
193  default: av_log(ctx, AV_LOG_ERROR, "Unsupported output bit depth %d.\n", s->odepth);
194  return AVERROR(EINVAL);
195  }
196 
197  return ff_formats_ref(ff_make_format_list(pix_fmts), &ctx->outputs[0]->incfg.formats);
198 }
199 
200 static int config_inputx(AVFilterLink *inlink)
201 {
202  AVFilterContext *ctx = inlink->dst;
203  LUT2Context *s = ctx->priv;
205  int hsub = desc->log2_chroma_w;
206  int vsub = desc->log2_chroma_h;
207 
208  s->nb_planesx = av_pix_fmt_count_planes(inlink->format);
209  s->heightx[1] = s->heightx[2] = AV_CEIL_RSHIFT(inlink->h, vsub);
210  s->heightx[0] = s->heightx[3] = inlink->h;
211  s->widthx[1] = s->widthx[2] = AV_CEIL_RSHIFT(inlink->w, hsub);
212  s->widthx[0] = s->widthx[3] = inlink->w;
213 
214  s->var_values[VAR_W] = inlink->w;
215  s->var_values[VAR_H] = inlink->h;
216  s->depthx = desc->comp[0].depth;
217  s->var_values[VAR_BITDEPTHX] = s->depthx;
218 
219  if (s->tlut2) {
220  s->depthy = desc->comp[0].depth;
221  s->var_values[VAR_BITDEPTHY] = s->depthy;
222  }
223 
224  return 0;
225 }
226 
227 static int config_inputy(AVFilterLink *inlink)
228 {
229  AVFilterContext *ctx = inlink->dst;
230  LUT2Context *s = ctx->priv;
232  int hsub = desc->log2_chroma_w;
233  int vsub = desc->log2_chroma_h;
234 
235  s->nb_planesy = av_pix_fmt_count_planes(inlink->format);
236  s->depthy = desc->comp[0].depth;
237  s->var_values[VAR_BITDEPTHY] = s->depthy;
238  s->heighty[1] = s->heighty[2] = AV_CEIL_RSHIFT(inlink->h, vsub);
239  s->heighty[0] = s->heighty[3] = inlink->h;
240  s->widthy[1] = s->widthy[2] = AV_CEIL_RSHIFT(inlink->w, hsub);
241  s->widthy[0] = s->widthy[3] = inlink->w;
242 
243  return 0;
244 }
245 
246 #define DEFINE_LUT2(zname, xname, yname, ztype, xtype, ytype, zdiv, xdiv, ydiv) \
247 static int lut2_##zname##_##xname##_##yname(AVFilterContext *ctx, \
248  void *arg, \
249  int jobnr, int nb_jobs) \
250 { \
251  LUT2Context *s = ctx->priv; \
252  ThreadData *td = arg; \
253  AVFrame *out = td->out; \
254  AVFrame *srcx = td->srcx; \
255  AVFrame *srcy = td->srcy; \
256  const int odepth = s->odepth; \
257  int p, y, x; \
258  \
259  for (p = 0; p < s->nb_planes; p++) { \
260  const int slice_start = ff_slice_pos(s->heightx[p], jobnr, nb_jobs); \
261  const int slice_end = ff_slice_pos(s->heightx[p], jobnr + 1, nb_jobs); \
262  const uint16_t *lut = s->lut[p]; \
263  const xtype *srcxx; \
264  const ytype *srcyy; \
265  ztype *dst; \
266  \
267  dst = (ztype *)(out->data[p] + slice_start * out->linesize[p]); \
268  srcxx = (const xtype *)(srcx->data[p] + slice_start * srcx->linesize[p]);\
269  srcyy = (const ytype *)(srcy->data[p] + slice_start * srcy->linesize[p]);\
270  \
271  for (y = slice_start; y < slice_end; y++) { \
272  for (x = 0; x < s->widthx[p]; x++) { \
273  dst[x] = av_clip_uintp2_c(lut[(srcyy[x] << s->depthx) | srcxx[x]], odepth); \
274  } \
275  \
276  dst += out->linesize[p] / zdiv; \
277  srcxx += srcx->linesize[p] / xdiv; \
278  srcyy += srcy->linesize[p] / ydiv; \
279  } \
280  } \
281  return 0; \
282 }
283 
284 DEFINE_LUT2(8, 8, 8, uint8_t, uint8_t, uint8_t, 1, 1, 1)
285 DEFINE_LUT2(8, 8, 16, uint8_t, uint8_t, uint16_t, 1, 1, 2)
286 DEFINE_LUT2(8, 16, 8, uint8_t, uint16_t, uint8_t, 1, 2, 1)
287 DEFINE_LUT2(8, 16, 16, uint8_t, uint16_t, uint16_t, 1, 2, 2)
288 DEFINE_LUT2(16, 8, 8, uint16_t, uint8_t, uint8_t, 2, 1, 1)
289 DEFINE_LUT2(16, 8, 16, uint16_t, uint8_t, uint16_t, 2, 1, 2)
290 DEFINE_LUT2(16, 16, 8, uint16_t, uint16_t, uint8_t, 2, 2, 1)
291 DEFINE_LUT2(16, 16, 16, uint16_t, uint16_t, uint16_t, 2, 2, 2)
292 
294 {
295  AVFilterContext *ctx = fs->parent;
296  LUT2Context *s = fs->opaque;
297  AVFilterLink *outlink = ctx->outputs[0];
298  AVFrame *out, *srcx = NULL, *srcy = NULL;
299  int ret;
300 
301  if ((ret = ff_framesync_get_frame(&s->fs, 0, &srcx, 0)) < 0 ||
302  (ret = ff_framesync_get_frame(&s->fs, 1, &srcy, 0)) < 0)
303  return ret;
304 
305  if (ctx->is_disabled || !srcy) {
306  out = av_frame_clone(srcx);
307  if (!out)
308  return AVERROR(ENOMEM);
309  } else {
310  ThreadData td;
311 
312  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
313  if (!out)
314  return AVERROR(ENOMEM);
315  av_frame_copy_props(out, srcx);
316 
317  td.out = out;
318  td.srcx = srcx;
319  td.srcy = srcy;
320  ctx->internal->execute(ctx, s->lut2, &td, NULL, FFMIN(s->heightx[1], ff_filter_get_nb_threads(ctx)));
321  }
322 
323  out->pts = av_rescale_q(s->fs.pts, s->fs.time_base, outlink->time_base);
324 
325  return ff_filter_frame(outlink, out);
326 }
327 
328 static int config_output(AVFilterLink *outlink)
329 {
330  AVFilterContext *ctx = outlink->src;
331  LUT2Context *s = ctx->priv;
332  int p, ret;
333 
334  s->depth = s->depthx + s->depthy;
335  s->nb_planes = s->nb_planesx;
336 
337  s->lut2 = s->depth > 16 ? lut2_16_16_16 : lut2_8_8_8;
338  if (s->odepth) {
339  if (s->depthx == 8 && s->depthy == 8 && s->odepth > 8)
340  s->lut2 = lut2_16_8_8;
341  if (s->depthx > 8 && s->depthy == 8 && s->odepth > 8)
342  s->lut2 = lut2_16_16_8;
343  if (s->depthx == 8 && s->depthy > 8 && s->odepth > 8)
344  s->lut2 = lut2_16_8_16;
345  if (s->depthx == 8 && s->depthy == 8 && s->odepth == 8)
346  s->lut2 = lut2_8_8_8;
347  if (s->depthx > 8 && s->depthy == 8 && s->odepth == 8)
348  s->lut2 = lut2_8_16_8;
349  if (s->depthx == 8 && s->depthy > 8 && s->odepth == 8)
350  s->lut2 = lut2_8_8_16;
351  if (s->depthx > 8 && s->depthy > 8 && s->odepth == 8)
352  s->lut2 = lut2_8_16_16;
353  } else {
354  s->odepth = s->depthx;
355  }
356 
357  for (p = 0; p < s->nb_planes; p++) {
358  if (!s->lut[p])
359  s->lut[p] = av_malloc_array(1 << s->depth, sizeof(uint16_t));
360  if (!s->lut[p])
361  return AVERROR(ENOMEM);
362  }
363 
364  for (p = 0; p < s->nb_planes; p++) {
365  double res;
366  int x, y;
367 
368  /* create the parsed expression */
369  av_expr_free(s->comp_expr[p]);
370  s->comp_expr[p] = NULL;
371  ret = av_expr_parse(&s->comp_expr[p], s->comp_expr_str[p],
372  var_names, NULL, NULL, NULL, NULL, 0, ctx);
373  if (ret < 0) {
375  "Error when parsing the expression '%s' for the component %d.\n",
376  s->comp_expr_str[p], p);
377  return AVERROR(EINVAL);
378  }
379 
380  /* compute the lut */
381  for (y = 0; y < (1 << s->depthy); y++) {
382  s->var_values[VAR_Y] = y;
383  for (x = 0; x < (1 << s->depthx); x++) {
384  s->var_values[VAR_X] = x;
385  res = av_expr_eval(s->comp_expr[p], s->var_values, s);
386  if (isnan(res)) {
388  "Error when evaluating the expression '%s' for the values %d and %d for the component %d.\n",
389  s->comp_expr_str[p], x, y, p);
390  return AVERROR(EINVAL);
391  }
392 
393  s->lut[p][(y << s->depthx) + x] = res;
394  }
395  }
396  }
397 
398  return 0;
399 }
400 
401 static int lut2_config_output(AVFilterLink *outlink)
402 {
403  AVFilterContext *ctx = outlink->src;
404  LUT2Context *s = ctx->priv;
405  AVFilterLink *srcx = ctx->inputs[0];
406  AVFilterLink *srcy = ctx->inputs[1];
407  FFFrameSyncIn *in;
409  int hsub = desc->log2_chroma_w;
410  int vsub = desc->log2_chroma_h;
411  int ret;
412 
413  outlink->w = srcx->w;
414  outlink->h = srcx->h;
415  outlink->time_base = srcx->time_base;
416  outlink->sample_aspect_ratio = srcx->sample_aspect_ratio;
417  outlink->frame_rate = srcx->frame_rate;
418 
419  s->nb_planes = av_pix_fmt_count_planes(outlink->format);
420  s->height[1] = s->height[2] = AV_CEIL_RSHIFT(outlink->h, vsub);
421  s->height[0] = s->height[3] = outlink->h;
422  s->width[1] = s->width[2] = AV_CEIL_RSHIFT(outlink->w, hsub);
423  s->width[0] = s->width[3] = outlink->w;
424 
425  if (!s->odepth && srcx->format != srcy->format) {
426  av_log(ctx, AV_LOG_ERROR, "inputs must be of same pixel format\n");
427  return AVERROR(EINVAL);
428  }
429 
430  if (srcx->w != srcy->w || srcx->h != srcy->h) {
431  av_log(ctx, AV_LOG_ERROR, "First input link %s parameters "
432  "(size %dx%d) do not match the corresponding "
433  "second input link %s parameters (size %dx%d)\n",
434  ctx->input_pads[0].name, srcx->w, srcx->h,
435  ctx->input_pads[1].name,
436  srcy->w, srcy->h);
437  return AVERROR(EINVAL);
438  }
439 
440  if (s->nb_planesx != s->nb_planesy) {
441  av_log(ctx, AV_LOG_ERROR, "First input link %s number of planes "
442  "(%d) do not match the corresponding "
443  "second input link %s number of planes (%d)\n",
444  ctx->input_pads[0].name, s->nb_planesx,
445  ctx->input_pads[1].name, s->nb_planesy);
446  return AVERROR(EINVAL);
447  }
448 
449  if (s->nb_planesx != s->nb_planes) {
450  av_log(ctx, AV_LOG_ERROR, "First input link %s number of planes "
451  "(%d) do not match the corresponding "
452  "output link %s number of planes (%d)\n",
453  ctx->input_pads[0].name, s->nb_planesx,
454  ctx->output_pads[0].name, s->nb_planes);
455  return AVERROR(EINVAL);
456  }
457 
458  if (s->widthx[1] != s->widthy[1] || s->heightx[1] != s->heighty[1]) {
459  av_log(ctx, AV_LOG_ERROR, "First input link %s 2nd plane "
460  "(size %dx%d) do not match the corresponding "
461  "second input link %s 2nd plane (size %dx%d)\n",
462  ctx->input_pads[0].name, s->widthx[1], s->heightx[1],
463  ctx->input_pads[1].name,
464  s->widthy[1], s->heighty[1]);
465  return AVERROR(EINVAL);
466  }
467 
468  if (s->widthx[2] != s->widthy[2] || s->heightx[2] != s->heighty[2]) {
469  av_log(ctx, AV_LOG_ERROR, "First input link %s 3rd plane "
470  "(size %dx%d) do not match the corresponding "
471  "second input link %s 3rd plane (size %dx%d)\n",
472  ctx->input_pads[0].name, s->widthx[2], s->heightx[2],
473  ctx->input_pads[1].name,
474  s->widthy[2], s->heighty[2]);
475  return AVERROR(EINVAL);
476  }
477 
478  if (s->widthx[1] != s->width[1] || s->heightx[1] != s->height[1]) {
479  av_log(ctx, AV_LOG_ERROR, "First input link %s 2nd plane "
480  "(size %dx%d) do not match the corresponding "
481  "output link %s 2nd plane (size %dx%d)\n",
482  ctx->input_pads[0].name, s->widthx[1], s->heightx[1],
483  ctx->output_pads[0].name, s->width[1], s->height[1]);
484  return AVERROR(EINVAL);
485  }
486 
487  if (s->widthx[2] != s->width[2] || s->heightx[2] != s->height[2]) {
488  av_log(ctx, AV_LOG_ERROR, "First input link %s 3rd plane "
489  "(size %dx%d) do not match the corresponding "
490  "output link %s 3rd plane (size %dx%d)\n",
491  ctx->input_pads[0].name, s->widthx[2], s->heightx[2],
492  ctx->output_pads[0].name, s->width[2], s->height[2]);
493  return AVERROR(EINVAL);
494  }
495 
496  if ((ret = ff_framesync_init(&s->fs, ctx, 2)) < 0)
497  return ret;
498 
499  in = s->fs.in;
500  in[0].time_base = srcx->time_base;
501  in[1].time_base = srcy->time_base;
502  in[0].sync = 2;
503  in[0].before = EXT_STOP;
504  in[0].after = EXT_INFINITY;
505  in[1].sync = 1;
506  in[1].before = EXT_STOP;
507  in[1].after = EXT_INFINITY;
508  s->fs.opaque = s;
509  s->fs.on_event = process_frame;
510 
511  if ((ret = config_output(outlink)) < 0)
512  return ret;
513 
514  ret = ff_framesync_configure(&s->fs);
515  outlink->time_base = s->fs.time_base;
516 
517  return ret;
518 }
519 
521 {
522  LUT2Context *s = ctx->priv;
523  return ff_framesync_activate(&s->fs);
524 }
525 
526 static const AVFilterPad inputs[] = {
527  {
528  .name = "srcx",
529  .type = AVMEDIA_TYPE_VIDEO,
530  .config_props = config_inputx,
531  },
532  {
533  .name = "srcy",
534  .type = AVMEDIA_TYPE_VIDEO,
535  .config_props = config_inputy,
536  },
537  { NULL }
538 };
539 
540 static const AVFilterPad outputs[] = {
541  {
542  .name = "default",
543  .type = AVMEDIA_TYPE_VIDEO,
544  .config_props = lut2_config_output,
545  },
546  { NULL }
547 };
548 
549 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
550  char *res, int res_len, int flags)
551 {
552  int ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags);
553 
554  if (ret < 0)
555  return ret;
556 
557  return config_output(ctx->outputs[0]);
558 }
559 
560 #define lut2_options options
561 
563 
565  .name = "lut2",
566  .description = NULL_IF_CONFIG_SMALL("Compute and apply a lookup table from two video inputs."),
567  .preinit = lut2_framesync_preinit,
568  .priv_size = sizeof(LUT2Context),
569  .priv_class = &lut2_class,
570  .uninit = uninit,
572  .activate = activate,
573  .inputs = inputs,
574  .outputs = outputs,
578 };
579 
580 #if CONFIG_TLUT2_FILTER
581 
582 static av_cold int init(AVFilterContext *ctx)
583 {
584  LUT2Context *s = ctx->priv;
585 
586  s->tlut2 = !strcmp(ctx->filter->name, "tlut2");
587 
588  return 0;
589 }
590 
591 static int tlut2_filter_frame(AVFilterLink *inlink, AVFrame *frame)
592 {
593  AVFilterContext *ctx = inlink->dst;
594  LUT2Context *s = ctx->priv;
595  AVFilterLink *outlink = ctx->outputs[0];
596 
597  if (s->prev_frame) {
598  AVFrame *out;
599 
600  if (ctx->is_disabled) {
602  } else {
603  ThreadData td;
604 
605  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
606  if (!out) {
607  av_frame_free(&s->prev_frame);
608  s->prev_frame = frame;
609  return AVERROR(ENOMEM);
610  }
611 
613 
614  td.out = out;
615  td.srcx = frame;
616  td.srcy = s->prev_frame;
617  ctx->internal->execute(ctx, s->lut2, &td, NULL, FFMIN(s->heightx[1], ff_filter_get_nb_threads(ctx)));
618  }
619  av_frame_free(&s->prev_frame);
620  s->prev_frame = frame;
621  return ff_filter_frame(outlink, out);
622  }
623  s->prev_frame = frame;
624  return 0;
625 }
626 
627 static const AVOption tlut2_options[] = {
628  { "c0", "set component #0 expression", OFFSET(comp_expr_str[0]), AV_OPT_TYPE_STRING, { .str = "x" }, .flags = TFLAGS },
629  { "c1", "set component #1 expression", OFFSET(comp_expr_str[1]), AV_OPT_TYPE_STRING, { .str = "x" }, .flags = TFLAGS },
630  { "c2", "set component #2 expression", OFFSET(comp_expr_str[2]), AV_OPT_TYPE_STRING, { .str = "x" }, .flags = TFLAGS },
631  { "c3", "set component #3 expression", OFFSET(comp_expr_str[3]), AV_OPT_TYPE_STRING, { .str = "x" }, .flags = TFLAGS },
632  { NULL }
633 };
634 
635 AVFILTER_DEFINE_CLASS(tlut2);
636 
637 static const AVFilterPad tlut2_inputs[] = {
638  {
639  .name = "default",
640  .type = AVMEDIA_TYPE_VIDEO,
641  .filter_frame = tlut2_filter_frame,
642  .config_props = config_inputx,
643  },
644  { NULL }
645 };
646 
647 static const AVFilterPad tlut2_outputs[] = {
648  {
649  .name = "default",
650  .type = AVMEDIA_TYPE_VIDEO,
651  .config_props = config_output,
652  },
653  { NULL }
654 };
655 
657  .name = "tlut2",
658  .description = NULL_IF_CONFIG_SMALL("Compute and apply a lookup table from two successive frames."),
659  .priv_size = sizeof(LUT2Context),
660  .priv_class = &tlut2_class,
662  .init = init,
663  .uninit = uninit,
664  .inputs = tlut2_inputs,
665  .outputs = tlut2_outputs,
669 };
670 
671 #endif
AVFilter ff_vf_tlut2
Macro definitions for various function/variable attributes.
#define av_cold
Definition: attributes.h:88
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> in
uint8_t
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1096
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
Definition: avfilter.c:882
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Definition: avfilter.c:802
Main libavfilter public API header.
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:31
#define flags(name, subs,...)
Definition: cbs_av1.c:572
#define s(width, name)
Definition: cbs_vp9.c:257
#define fs(width, name, subs,...)
Definition: cbs_vp9.c:259
common internal and external API header
#define FFMIN(a, b)
Definition: common.h:105
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:58
#define NULL
Definition: coverity.c:32
static AVFrame * frame
misc drawing utilities
void av_expr_free(AVExpr *e)
Free a parsed expression previously created with av_expr_parse().
Definition: eval.c:339
double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
Evaluate a previously parsed expression.
Definition: eval.c:781
int av_expr_parse(AVExpr **expr, const char *s, const char *const *const_names, const char *const *func1_names, double(*const *funcs1)(void *, double), const char *const *func2_names, double(*const *funcs2)(void *, double, double), int log_offset, void *log_ctx)
Parse an expression.
Definition: eval.c:700
simple arithmetic expression evaluator
int
int ff_formats_ref(AVFilterFormats *f, AVFilterFormats **ref)
Add ref as a new reference to formats.
Definition: formats.c:466
int ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
A helper for query_formats() which sets all links to the same list of formats.
Definition: formats.c:587
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:286
int ff_framesync_configure(FFFrameSync *fs)
Configure a frame sync structure.
Definition: framesync.c:124
int ff_framesync_activate(FFFrameSync *fs)
Examine the frames in the filter's input and try to produce output.
Definition: framesync.c:341
int ff_framesync_get_frame(FFFrameSync *fs, unsigned in, AVFrame **rframe, unsigned get)
Get the current frame in an input.
Definition: framesync.c:253
void ff_framesync_uninit(FFFrameSync *fs)
Free all memory currently allocated.
Definition: framesync.c:290
int ff_framesync_init(FFFrameSync *fs, AVFilterContext *parent, unsigned nb_in)
Initialize a frame sync structure.
Definition: framesync.c:84
@ EXT_STOP
Completely stop all streams with this one.
Definition: framesync.h:65
@ EXT_INFINITY
Extend the frame to infinity.
Definition: framesync.h:75
@ AV_OPT_TYPE_INT
Definition: opt.h:225
@ AV_OPT_TYPE_STRING
Definition: opt.h:229
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition: avfilter.h:117
#define AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will have its filter_frame() c...
Definition: avfilter.h:134
#define AVERROR(e)
Definition: error.h:43
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
Definition: frame.c:540
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:203
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:658
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:194
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
int i
Definition: input.c:407
static enum AVPixelFormat all_pix_fmts[]
Definition: jpeg2000dec.c:265
const char * arg
Definition: jacosubdec.c:66
#define AVFILTER_DEFINE_CLASS(fname)
Definition: internal.h:288
common internal API header
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:309
#define isnan(x)
Definition: libm.h:340
const char * desc
Definition: libsvtav1.c:79
AVOptions.
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2613
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2573
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
#define td
Definition: regdef.h:70
var_name
Definition: setts_bsf.c:50
Describe the class of an AVClass context structure.
Definition: log.h:67
Definition: eval.c:159
An instance of a filter.
Definition: avfilter.h:341
A filter pad used for either input or output.
Definition: internal.h:54
const char * name
Pad name.
Definition: internal.h:60
Filter definition.
Definition: avfilter.h:145
const char * name
Filter name.
Definition: avfilter.h:149
AVFormatInternal * internal
An opaque field for libavformat internal usage.
Definition: avformat.h:1699
This structure describes decoded (raw) audio or video data.
Definition: frame.h:318
AVOption.
Definition: opt.h:248
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
Input stream structure.
Definition: framesync.h:81
Frame sync structure.
Definition: framesync.h:146
double var_values[VAR_VARS_NB]
Definition: vf_lut2.c:62
int widthx[4]
Definition: vf_lut2.c:65
char * comp_expr_str[4]
Definition: vf_lut2.c:59
int tlut2
Definition: vf_lut2.c:71
int widthy[4]
Definition: vf_lut2.c:66
int heighty[4]
Definition: vf_lut2.c:66
uint16_t * lut[4]
lookup table for each component
Definition: vf_lut2.c:63
int height[4]
Definition: vf_lut2.c:64
int(* lut2)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition: vf_lut2.c:74
int nb_planesy
Definition: vf_lut2.c:68
int width[4]
Definition: vf_lut2.c:64
int depthx
Definition: vf_lut2.c:70
int nb_planes
Definition: vf_lut2.c:69
int nb_planesx
Definition: vf_lut2.c:67
FFFrameSync fs
Definition: vf_lut2.c:56
AVFrame * prev_frame
Definition: vf_lut2.c:72
int depth
Definition: vf_lut2.c:70
int odepth
Definition: vf_lut2.c:58
int heightx[4]
Definition: vf_lut2.c:65
AVExpr * comp_expr[4]
Definition: vf_lut2.c:61
int depthy
Definition: vf_lut2.c:70
Used for passing data between threads.
Definition: dsddec.c:67
AVFrame * srcy
Definition: vf_lut2.c:78
AVFrame * srcx
Definition: vf_lut2.c:78
AVFrame * out
Definition: af_adeclick.c:502
#define av_malloc_array(a, b)
#define av_freep(p)
#define av_log(a,...)
FILE * out
Definition: movenc.c:54
AVFormatContext * ctx
Definition: movenc.c:48
@ VAR_H
Definition: vf_lut2.c:46
@ VAR_BITDEPTHY
Definition: vf_lut2.c:50
@ VAR_W
Definition: vf_lut2.c:45
@ VAR_VARS_NB
Definition: vf_lut2.c:51
@ VAR_X
Definition: vf_lut2.c:47
@ VAR_BITDEPTHX
Definition: vf_lut2.c:49
@ VAR_Y
Definition: vf_lut2.c:48
AVFilter ff_vf_lut2
Definition: vf_lut2.c:564
static int lut2_config_output(AVFilterLink *outlink)
Definition: vf_lut2.c:401
#define BIT8_FMTS
Definition: vf_lut2.c:110
static int config_inputx(AVFilterLink *inlink)
Definition: vf_lut2.c:200
static const AVOption options[]
Definition: vf_lut2.c:85
#define TFLAGS
Definition: vf_lut2.c:83
static int query_formats(AVFilterContext *ctx)
Definition: vf_lut2.c:142
#define FLAGS
Definition: vf_lut2.c:82
static const AVFilterPad inputs[]
Definition: vf_lut2.c:526
#define DEFINE_LUT2(zname, xname, yname, ztype, xtype, ytype, zdiv, xdiv, ydiv)
Definition: vf_lut2.c:246
static int config_inputy(AVFilterLink *inlink)
Definition: vf_lut2.c:227
FRAMESYNC_DEFINE_CLASS(lut2, LUT2Context, fs)
static const AVFilterPad outputs[]
Definition: vf_lut2.c:540
#define BIT14_FMTS
Definition: vf_lut2.c:133
#define BIT16_FMTS
Definition: vf_lut2.c:137
#define BIT10_FMTS
Definition: vf_lut2.c:123
static const char *const var_names[]
Definition: vf_lut2.c:34
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
Definition: vf_lut2.c:549
static int activate(AVFilterContext *ctx)
Definition: vf_lut2.c:520
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_lut2.c:94
#define BIT12_FMTS
Definition: vf_lut2.c:128
#define BIT9_FMTS
Definition: vf_lut2.c:118
#define OFFSET(x)
Definition: vf_lut2.c:81
static int config_output(AVFilterLink *outlink)
Definition: vf_lut2.c:328
static int process_frame(FFFrameSync *fs)
Definition: vf_lut2.c:293
static void hsub(htype *dst, const htype *src, int bins)
Definition: vf_median.c:76
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:104