FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
vf_lut.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011 Stefano Sabatini
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 /**
22  * @file
23  * Compute a look-up table for binding the input value to the output
24  * value, and apply it to input video.
25  */
26 
27 #include "libavutil/attributes.h"
28 #include "libavutil/bswap.h"
29 #include "libavutil/common.h"
30 #include "libavutil/eval.h"
31 #include "libavutil/opt.h"
32 #include "libavutil/pixdesc.h"
33 #include "avfilter.h"
34 #include "drawutils.h"
35 #include "formats.h"
36 #include "internal.h"
37 #include "video.h"
38 
39 static const char *const var_names[] = {
40  "w", ///< width of the input video
41  "h", ///< height of the input video
42  "val", ///< input value for the pixel
43  "maxval", ///< max value for the pixel
44  "minval", ///< min value for the pixel
45  "negval", ///< negated value
46  "clipval",
47  NULL
48 };
49 
50 enum var_name {
59 };
60 
61 typedef struct LutContext {
62  const AVClass *class;
63  uint16_t lut[4][256 * 256]; ///< lookup table for each component
64  char *comp_expr_str[4];
66  int hsub, vsub;
68  int is_rgb, is_yuv;
69  int is_16bit;
70  int step;
71  int negate_alpha; /* only used by negate */
72 } LutContext;
73 
74 #define Y 0
75 #define U 1
76 #define V 2
77 #define R 0
78 #define G 1
79 #define B 2
80 #define A 3
81 
82 #define OFFSET(x) offsetof(LutContext, x)
83 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
84 
85 static const AVOption options[] = {
86  { "c0", "set component #0 expression", OFFSET(comp_expr_str[0]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
87  { "c1", "set component #1 expression", OFFSET(comp_expr_str[1]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
88  { "c2", "set component #2 expression", OFFSET(comp_expr_str[2]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
89  { "c3", "set component #3 expression", OFFSET(comp_expr_str[3]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
90  { "y", "set Y expression", OFFSET(comp_expr_str[Y]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
91  { "u", "set U expression", OFFSET(comp_expr_str[U]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
92  { "v", "set V expression", OFFSET(comp_expr_str[V]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
93  { "r", "set R expression", OFFSET(comp_expr_str[R]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
94  { "g", "set G expression", OFFSET(comp_expr_str[G]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
95  { "b", "set B expression", OFFSET(comp_expr_str[B]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
96  { "a", "set A expression", OFFSET(comp_expr_str[A]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
97  { NULL }
98 };
99 
101 {
102  LutContext *s = ctx->priv;
103  int i;
104 
105  for (i = 0; i < 4; i++) {
106  av_expr_free(s->comp_expr[i]);
107  s->comp_expr[i] = NULL;
108  av_freep(&s->comp_expr_str[i]);
109  }
110 }
111 
112 #define YUV_FORMATS \
113  AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P, \
114  AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV440P, \
115  AV_PIX_FMT_YUVA420P, AV_PIX_FMT_YUVA422P, AV_PIX_FMT_YUVA444P, \
116  AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ420P, \
117  AV_PIX_FMT_YUVJ440P, \
118  AV_PIX_FMT_YUV444P9LE, AV_PIX_FMT_YUV422P9LE, AV_PIX_FMT_YUV420P9LE, \
119  AV_PIX_FMT_YUV444P10LE, AV_PIX_FMT_YUV422P10LE, AV_PIX_FMT_YUV420P10LE, AV_PIX_FMT_YUV440P10LE, \
120  AV_PIX_FMT_YUV444P12LE, AV_PIX_FMT_YUV422P12LE, AV_PIX_FMT_YUV420P12LE, AV_PIX_FMT_YUV440P12LE, \
121  AV_PIX_FMT_YUV444P14LE, AV_PIX_FMT_YUV422P14LE, AV_PIX_FMT_YUV420P14LE, \
122  AV_PIX_FMT_YUV444P16LE, AV_PIX_FMT_YUV422P16LE, AV_PIX_FMT_YUV420P16LE, \
123  AV_PIX_FMT_YUVA444P16LE, AV_PIX_FMT_YUVA422P16LE, AV_PIX_FMT_YUVA420P16LE
124 
125 #define RGB_FORMATS \
126  AV_PIX_FMT_ARGB, AV_PIX_FMT_RGBA, \
127  AV_PIX_FMT_ABGR, AV_PIX_FMT_BGRA, \
128  AV_PIX_FMT_RGB24, AV_PIX_FMT_BGR24, \
129  AV_PIX_FMT_RGB48LE, AV_PIX_FMT_RGBA64LE
130 
134 
136 {
137  LutContext *s = ctx->priv;
138 
139  const enum AVPixelFormat *pix_fmts = s->is_rgb ? rgb_pix_fmts :
140  s->is_yuv ? yuv_pix_fmts :
141  all_pix_fmts;
142  AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
143  if (!fmts_list)
144  return AVERROR(ENOMEM);
145  return ff_set_common_formats(ctx, fmts_list);
146 }
147 
148 /**
149  * Clip value val in the minval - maxval range.
150  */
151 static double clip(void *opaque, double val)
152 {
153  LutContext *s = opaque;
154  double minval = s->var_values[VAR_MINVAL];
155  double maxval = s->var_values[VAR_MAXVAL];
156 
157  return av_clip(val, minval, maxval);
158 }
159 
160 /**
161  * Compute gamma correction for value val, assuming the minval-maxval
162  * range, val is clipped to a value contained in the same interval.
163  */
164 static double compute_gammaval(void *opaque, double gamma)
165 {
166  LutContext *s = opaque;
167  double val = s->var_values[VAR_CLIPVAL];
168  double minval = s->var_values[VAR_MINVAL];
169  double maxval = s->var_values[VAR_MAXVAL];
170 
171  return pow((val-minval)/(maxval-minval), gamma) * (maxval-minval)+minval;
172 }
173 
174 /**
175  * Compute ITU Rec.709 gamma correction of value val.
176  */
177 static double compute_gammaval709(void *opaque, double gamma)
178 {
179  LutContext *s = opaque;
180  double val = s->var_values[VAR_CLIPVAL];
181  double minval = s->var_values[VAR_MINVAL];
182  double maxval = s->var_values[VAR_MAXVAL];
183  double level = (val - minval) / (maxval - minval);
184  level = level < 0.018 ? 4.5 * level
185  : 1.099 * pow(level, 1.0 / gamma) - 0.099;
186  return level * (maxval - minval) + minval;
187 }
188 
189 static double (* const funcs1[])(void *, double) = {
190  clip,
193  NULL
194 };
195 
196 static const char * const funcs1_names[] = {
197  "clip",
198  "gammaval",
199  "gammaval709",
200  NULL
201 };
202 
203 static int config_props(AVFilterLink *inlink)
204 {
205  AVFilterContext *ctx = inlink->dst;
206  LutContext *s = ctx->priv;
208  uint8_t rgba_map[4]; /* component index -> RGBA color index map */
209  int min[4], max[4];
210  int val, color, ret;
211 
212  s->hsub = desc->log2_chroma_w;
213  s->vsub = desc->log2_chroma_h;
214 
215  s->var_values[VAR_W] = inlink->w;
216  s->var_values[VAR_H] = inlink->h;
217  s->is_16bit = desc->comp[0].depth > 8;
218 
219  switch (inlink->format) {
220  case AV_PIX_FMT_YUV410P:
221  case AV_PIX_FMT_YUV411P:
222  case AV_PIX_FMT_YUV420P:
223  case AV_PIX_FMT_YUV422P:
224  case AV_PIX_FMT_YUV440P:
225  case AV_PIX_FMT_YUV444P:
226  case AV_PIX_FMT_YUVA420P:
227  case AV_PIX_FMT_YUVA422P:
228  case AV_PIX_FMT_YUVA444P:
255  min[Y] = 16 * (1 << (desc->comp[0].depth - 8));
256  min[U] = 16 * (1 << (desc->comp[1].depth - 8));
257  min[V] = 16 * (1 << (desc->comp[2].depth - 8));
258  min[A] = 0;
259  max[Y] = 235 * (1 << (desc->comp[0].depth - 8));
260  max[U] = 240 * (1 << (desc->comp[1].depth - 8));
261  max[V] = 240 * (1 << (desc->comp[2].depth - 8));
262  max[A] = (1 << desc->comp[3].depth) - 1;
263  break;
264  case AV_PIX_FMT_RGB48LE:
265  case AV_PIX_FMT_RGBA64LE:
266  min[0] = min[1] = min[2] = min[3] = 0;
267  max[0] = max[1] = max[2] = max[3] = 65535;
268  break;
269  default:
270  min[0] = min[1] = min[2] = min[3] = 0;
271  max[0] = max[1] = max[2] = max[3] = 255;
272  }
273 
274  s->is_yuv = s->is_rgb = 0;
275  if (ff_fmt_is_in(inlink->format, yuv_pix_fmts)) s->is_yuv = 1;
276  else if (ff_fmt_is_in(inlink->format, rgb_pix_fmts)) s->is_rgb = 1;
277 
278  if (s->is_rgb) {
279  ff_fill_rgba_map(rgba_map, inlink->format);
280  s->step = av_get_bits_per_pixel(desc) >> 3;
281  if (s->is_16bit) {
282  s->step = s->step >> 1;
283  }
284  }
285 
286  for (color = 0; color < desc->nb_components; color++) {
287  double res;
288  int comp = s->is_rgb ? rgba_map[color] : color;
289 
290  /* create the parsed expression */
291  av_expr_free(s->comp_expr[color]);
292  s->comp_expr[color] = NULL;
293  ret = av_expr_parse(&s->comp_expr[color], s->comp_expr_str[color],
294  var_names, funcs1_names, funcs1, NULL, NULL, 0, ctx);
295  if (ret < 0) {
296  av_log(ctx, AV_LOG_ERROR,
297  "Error when parsing the expression '%s' for the component %d and color %d.\n",
298  s->comp_expr_str[comp], comp, color);
299  return AVERROR(EINVAL);
300  }
301 
302  /* compute the lut */
303  s->var_values[VAR_MAXVAL] = max[color];
304  s->var_values[VAR_MINVAL] = min[color];
305 
306  for (val = 0; val < (1 << desc->comp[0].depth); val++) {
307  s->var_values[VAR_VAL] = val;
308  s->var_values[VAR_CLIPVAL] = av_clip(val, min[color], max[color]);
309  s->var_values[VAR_NEGVAL] =
310  av_clip(min[color] + max[color] - s->var_values[VAR_VAL],
311  min[color], max[color]);
312 
313  res = av_expr_eval(s->comp_expr[color], s->var_values, s);
314  if (isnan(res)) {
315  av_log(ctx, AV_LOG_ERROR,
316  "Error when evaluating the expression '%s' for the value %d for the component %d.\n",
317  s->comp_expr_str[color], val, comp);
318  return AVERROR(EINVAL);
319  }
320  s->lut[comp][val] = av_clip((int)res, min[color], max[color]);
321  av_log(ctx, AV_LOG_DEBUG, "val[%d][%d] = %d\n", comp, val, s->lut[comp][val]);
322  }
323  }
324 
325  return 0;
326 }
327 
328 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
329 {
330  AVFilterContext *ctx = inlink->dst;
331  LutContext *s = ctx->priv;
332  AVFilterLink *outlink = ctx->outputs[0];
333  AVFrame *out;
334  int i, j, plane, direct = 0;
335 
336  if (av_frame_is_writable(in)) {
337  direct = 1;
338  out = in;
339  } else {
340  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
341  if (!out) {
342  av_frame_free(&in);
343  return AVERROR(ENOMEM);
344  }
345  av_frame_copy_props(out, in);
346  }
347 
348  if (s->is_rgb && s->is_16bit) {
349  /* packed, 16-bit */
350  uint16_t *inrow, *outrow, *inrow0, *outrow0;
351  const int w = inlink->w;
352  const int h = in->height;
353  const uint16_t (*tab)[256*256] = (const uint16_t (*)[256*256])s->lut;
354  const int in_linesize = in->linesize[0] / 2;
355  const int out_linesize = out->linesize[0] / 2;
356  const int step = s->step;
357 
358  inrow0 = (uint16_t*) in ->data[0];
359  outrow0 = (uint16_t*) out->data[0];
360 
361  for (i = 0; i < h; i ++) {
362  inrow = inrow0;
363  outrow = outrow0;
364  for (j = 0; j < w; j++) {
365 
366  switch (step) {
367 #if HAVE_BIGENDIAN
368  case 4: outrow[3] = av_bswap16(tab[3][av_bswap16(inrow[3])]); // Fall-through
369  case 3: outrow[2] = av_bswap16(tab[2][av_bswap16(inrow[2])]); // Fall-through
370  case 2: outrow[1] = av_bswap16(tab[1][av_bswap16(inrow[1])]); // Fall-through
371  default: outrow[0] = av_bswap16(tab[0][av_bswap16(inrow[0])]);
372 #else
373  case 4: outrow[3] = tab[3][inrow[3]]; // Fall-through
374  case 3: outrow[2] = tab[2][inrow[2]]; // Fall-through
375  case 2: outrow[1] = tab[1][inrow[1]]; // Fall-through
376  default: outrow[0] = tab[0][inrow[0]];
377 #endif
378  }
379  outrow += step;
380  inrow += step;
381  }
382  inrow0 += in_linesize;
383  outrow0 += out_linesize;
384  }
385  } else if (s->is_rgb) {
386  /* packed */
387  uint8_t *inrow, *outrow, *inrow0, *outrow0;
388  const int w = inlink->w;
389  const int h = in->height;
390  const uint16_t (*tab)[256*256] = (const uint16_t (*)[256*256])s->lut;
391  const int in_linesize = in->linesize[0];
392  const int out_linesize = out->linesize[0];
393  const int step = s->step;
394 
395  inrow0 = in ->data[0];
396  outrow0 = out->data[0];
397 
398  for (i = 0; i < h; i ++) {
399  inrow = inrow0;
400  outrow = outrow0;
401  for (j = 0; j < w; j++) {
402  switch (step) {
403  case 4: outrow[3] = tab[3][inrow[3]]; // Fall-through
404  case 3: outrow[2] = tab[2][inrow[2]]; // Fall-through
405  case 2: outrow[1] = tab[1][inrow[1]]; // Fall-through
406  default: outrow[0] = tab[0][inrow[0]];
407  }
408  outrow += step;
409  inrow += step;
410  }
411  inrow0 += in_linesize;
412  outrow0 += out_linesize;
413  }
414  } else if (s->is_16bit) {
415  // planar yuv >8 bit depth
416  uint16_t *inrow, *outrow;
417 
418  for (plane = 0; plane < 4 && in->data[plane] && in->linesize[plane]; plane++) {
419  int vsub = plane == 1 || plane == 2 ? s->vsub : 0;
420  int hsub = plane == 1 || plane == 2 ? s->hsub : 0;
421  int h = AV_CEIL_RSHIFT(inlink->h, vsub);
422  int w = AV_CEIL_RSHIFT(inlink->w, hsub);
423  const uint16_t *tab = s->lut[plane];
424  const int in_linesize = in->linesize[plane] / 2;
425  const int out_linesize = out->linesize[plane] / 2;
426 
427  inrow = (uint16_t *)in ->data[plane];
428  outrow = (uint16_t *)out->data[plane];
429 
430  for (i = 0; i < h; i++) {
431  for (j = 0; j < w; j++) {
432 #if HAVE_BIGENDIAN
433  outrow[j] = av_bswap16(tab[av_bswap16(inrow[j])]);
434 #else
435  outrow[j] = tab[inrow[j]];
436 #endif
437  }
438  inrow += in_linesize;
439  outrow += out_linesize;
440  }
441  }
442  } else {
443  /* planar 8bit depth */
444  uint8_t *inrow, *outrow;
445 
446  for (plane = 0; plane < 4 && in->data[plane] && in->linesize[plane]; plane++) {
447  int vsub = plane == 1 || plane == 2 ? s->vsub : 0;
448  int hsub = plane == 1 || plane == 2 ? s->hsub : 0;
449  int h = AV_CEIL_RSHIFT(inlink->h, vsub);
450  int w = AV_CEIL_RSHIFT(inlink->w, hsub);
451  const uint16_t *tab = s->lut[plane];
452  const int in_linesize = in->linesize[plane];
453  const int out_linesize = out->linesize[plane];
454 
455  inrow = in ->data[plane];
456  outrow = out->data[plane];
457 
458  for (i = 0; i < h; i++) {
459  for (j = 0; j < w; j++)
460  outrow[j] = tab[inrow[j]];
461  inrow += in_linesize;
462  outrow += out_linesize;
463  }
464  }
465  }
466 
467  if (!direct)
468  av_frame_free(&in);
469 
470  return ff_filter_frame(outlink, out);
471 }
472 
473 static const AVFilterPad inputs[] = {
474  { .name = "default",
475  .type = AVMEDIA_TYPE_VIDEO,
476  .filter_frame = filter_frame,
477  .config_props = config_props,
478  },
479  { NULL }
480 };
481 static const AVFilterPad outputs[] = {
482  { .name = "default",
483  .type = AVMEDIA_TYPE_VIDEO,
484  },
485  { NULL }
486 };
487 
488 #define DEFINE_LUT_FILTER(name_, description_) \
489  AVFilter ff_vf_##name_ = { \
490  .name = #name_, \
491  .description = NULL_IF_CONFIG_SMALL(description_), \
492  .priv_size = sizeof(LutContext), \
493  .priv_class = &name_ ## _class, \
494  .init = name_##_init, \
495  .uninit = uninit, \
496  .query_formats = query_formats, \
497  .inputs = inputs, \
498  .outputs = outputs, \
499  .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, \
500  }
501 
502 #if CONFIG_LUT_FILTER
503 
504 #define lut_options options
506 
507 static int lut_init(AVFilterContext *ctx)
508 {
509  return 0;
510 }
511 
512 DEFINE_LUT_FILTER(lut, "Compute and apply a lookup table to the RGB/YUV input video.");
513 #endif
514 
515 #if CONFIG_LUTYUV_FILTER
516 
517 #define lutyuv_options options
518 AVFILTER_DEFINE_CLASS(lutyuv);
519 
520 static av_cold int lutyuv_init(AVFilterContext *ctx)
521 {
522  LutContext *s = ctx->priv;
523 
524  s->is_yuv = 1;
525 
526  return 0;
527 }
528 
529 DEFINE_LUT_FILTER(lutyuv, "Compute and apply a lookup table to the YUV input video.");
530 #endif
531 
532 #if CONFIG_LUTRGB_FILTER
533 
534 #define lutrgb_options options
535 AVFILTER_DEFINE_CLASS(lutrgb);
536 
537 static av_cold int lutrgb_init(AVFilterContext *ctx)
538 {
539  LutContext *s = ctx->priv;
540 
541  s->is_rgb = 1;
542 
543  return 0;
544 }
545 
546 DEFINE_LUT_FILTER(lutrgb, "Compute and apply a lookup table to the RGB input video.");
547 #endif
548 
549 #if CONFIG_NEGATE_FILTER
550 
551 static const AVOption negate_options[] = {
552  { "negate_alpha", NULL, OFFSET(negate_alpha), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, FLAGS },
553  { NULL }
554 };
555 
556 AVFILTER_DEFINE_CLASS(negate);
557 
558 static av_cold int negate_init(AVFilterContext *ctx)
559 {
560  LutContext *s = ctx->priv;
561  int i;
562 
563  av_log(ctx, AV_LOG_DEBUG, "negate_alpha:%d\n", s->negate_alpha);
564 
565  for (i = 0; i < 4; i++) {
566  s->comp_expr_str[i] = av_strdup((i == 3 && !s->negate_alpha) ?
567  "val" : "negval");
568  if (!s->comp_expr_str[i]) {
569  uninit(ctx);
570  return AVERROR(ENOMEM);
571  }
572  }
573 
574  return 0;
575 }
576 
577 DEFINE_LUT_FILTER(negate, "Negate input video.");
578 
579 #endif
int plane
Definition: avisynth_c.h:291
#define NULL
Definition: coverity.c:32
char * comp_expr_str[4]
Definition: vf_lut.c:64
const char const char void * val
Definition: avisynth_c.h:634
planar YUV 4:4:0,20bpp, (1 Cr & Cb sample per 1x2 Y samples), little-endian
Definition: pixfmt.h:288
const char * s
Definition: avisynth_c.h:631
planar YUV 4:2:0,21bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:258
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2222
This structure describes decoded (raw) audio or video data.
Definition: frame.h:184
AVOption.
Definition: opt.h:245
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
planar YUV 4:2:2,28bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:262
planar YUV 4:2:0, 15bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:170
#define G
Definition: vf_lut.c:78
#define A
Definition: vf_lut.c:80
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:67
Main libavfilter public API header.
const char * desc
Definition: nvenc.c:89
int av_get_bits_per_pixel(const AVPixFmtDescriptor *pixdesc)
Return the number of bits per pixel used by the pixel format described by pixdesc.
Definition: pixdesc.c:2174
#define RGB_FORMATS
Definition: vf_lut.c:125
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_lut.c:328
static const AVOption options[]
Definition: vf_lut.c:85
#define av_bswap16
Definition: bswap.h:31
planar YUV 4:4:4 40bpp, (1 Cr & Cb sample per 1x1 Y & A samples, little-endian)
Definition: pixfmt.h:200
static const char *const funcs1_names[]
Definition: vf_lut.c:196
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:658
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:76
planar YUV 4:2:0, 24bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:139
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition: pixdesc.h:92
static enum AVPixelFormat yuv_pix_fmts[]
Definition: vf_lut.c:131
static double compute_gammaval709(void *opaque, double gamma)
Compute ITU Rec.709 gamma correction of value val.
Definition: vf_lut.c:177
Macro definitions for various function/variable attributes.
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:283
const char * name
Pad name.
Definition: internal.h:59
planar YUV 4:2:0 22.5bpp, (1 Cr & Cb sample per 2x2 Y & A samples), little-endian ...
Definition: pixfmt.h:190
static const char *const var_names[]
Definition: vf_lut.c:39
#define R
Definition: vf_lut.c:77
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1180
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:102
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed.
Definition: pixdesc.h:117
uint8_t
#define av_cold
Definition: attributes.h:82
AVOptions.
packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, the 2-byte value for each R/G/B component is stored as lit...
Definition: pixfmt.h:111
static const uint32_t color[16+AV_CLASS_CATEGORY_NB]
Definition: log.c:94
planar YUV 4:4:4,36bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:264
static double(*const funcs1[])(void *, double)
Definition: vf_lut.c:189
Definition: eval.c:149
planar YUV 4:2:0 40bpp, (1 Cr & Cb sample per 2x2 Y & A samples, little-endian)
Definition: pixfmt.h:202
int ff_fmt_is_in(int fmt, const int *fmts)
Tell if an integer is contained in the provided -1-terminated list of integers.
Definition: formats.c:254
#define av_log(a,...)
A filter pad used for either input or output.
Definition: internal.h:53
planar YUV 4:2:0, 13.5bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:168
#define YUV_FORMATS
Definition: vf_lut.c:112
int is_16bit
Definition: vf_lut.c:69
static enum AVPixelFormat all_pix_fmts[]
Definition: vf_lut.c:133
planar YUV 4:4:4, 30bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:176
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition: pixfmt.h:187
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
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:568
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:101
#define AVERROR(e)
Definition: error.h:43
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:153
void * priv
private data for use by the filter
Definition: avfilter.h:320
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
planar YUV 4:2:2, 20bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:172
uint16_t lut[4][256 *256]
lookup table for each component
Definition: vf_lut.c:63
planar YUV 4:4:4 36bpp, (1 Cr & Cb sample per 1x1 Y & A samples), little-endian
Definition: pixfmt.h:194
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:66
var_name
Definition: aeval.c:46
double var_values[VAR_VARS_NB]
Definition: vf_lut.c:67
uint8_t nb_components
The number of components each pixel has, (1-4)
Definition: pixdesc.h:83
int hsub
Definition: vf_lut.c:66
#define OFFSET(x)
Definition: vf_lut.c:82
AVFormatContext * ctx
Definition: movenc.c:48
#define U
Definition: vf_lut.c:75
planar YUV 4:2:0,18bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:256
planar YUV 4:2:2, 18bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:178
int ff_fill_rgba_map(uint8_t *rgba_map, enum AVPixelFormat pix_fmt)
Definition: drawutils.c:35
Definition: vf_lut.c:53
misc drawing utilities
int is_rgb
Definition: vf_lut.c:68
void av_expr_free(AVExpr *e)
Free a parsed expression previously created with av_expr_parse().
Definition: eval.c:318
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
Definition: frame.c:520
char * av_strdup(const char *s)
Duplicate the string s.
Definition: mem.c:267
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:215
static const AVFilterPad outputs[]
Definition: vf_lut.c:481
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition: pixfmt.h:188
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;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);returnNULL;}returnac;}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;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->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);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
planar YUV 4:4:0,24bpp, (1 Cr & Cb sample per 1x2 Y samples), little-endian
Definition: pixfmt.h:290
static int query_formats(AVFilterContext *ctx)
Definition: vf_lut.c:135
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:68
planar YUV 4:2:2 48bpp, (1 Cr & Cb sample per 2x1 Y & A samples, little-endian)
Definition: pixfmt.h:204
Describe the class of an AVClass context structure.
Definition: log.h:67
planar YUV 4:4:4 64bpp, (1 Cr & Cb sample per 1x1 Y & A samples, little-endian)
Definition: pixfmt.h:206
#define isnan(x)
Definition: libm.h:340
Definition: vf_lut.c:51
byte swapping routines
int step
Definition: vf_lut.c:70
AVExpr * comp_expr[4]
Definition: vf_lut.c:65
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:317
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:262
planar YUV 4:2:2 30bpp, (1 Cr & Cb sample per 2x1 Y & A samples, little-endian)
Definition: pixfmt.h:198
#define DEFINE_LUT_FILTER(name_, description_)
Definition: vf_lut.c:488
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:198
uint8_t level
Definition: svq3.c:193
planar YUV 4:4:4, 27bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:174
planar YUV 4:4:4, 48bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:143
static enum AVPixelFormat rgb_pix_fmts[]
Definition: vf_lut.c:132
static const AVFilterPad inputs[]
Definition: vf_lut.c:473
static int config_props(AVFilterLink *inlink)
Definition: vf_lut.c:203
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:62
planar YUV 4:2:2,24bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:260
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_lut.c:100
#define V
Definition: vf_lut.c:76
common internal and external API header
if(ret< 0)
Definition: vf_mcdeint.c:282
static double clip(void *opaque, double val)
Clip value val in the minval - maxval range.
Definition: vf_lut.c:151
#define Y
Definition: vf_lut.c:74
planar YUV 4:2:2, 32bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:141
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:69
planar YUV 4:2:0 25bpp, (1 Cr & Cb sample per 2x2 Y & A samples, little-endian)
Definition: pixfmt.h:196
planar YUV 4:4:4,42bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:266
double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
Evaluate a previously parsed expression.
Definition: eval.c:713
#define AVFILTER_DEFINE_CLASS(fname)
Definition: internal.h:339
#define FLAGS
Definition: vf_lut.c:83
A list of supported formats for one end of a filter link.
Definition: formats.h:64
int negate_alpha
Definition: vf_lut.c:71
int vsub
Definition: vf_lut.c:66
static const struct twinvq_data tab
An instance of a filter.
Definition: avfilter.h:305
static double compute_gammaval(void *opaque, double gamma)
Compute gamma correction for value val, assuming the minval-maxval range, val is clipped to a value c...
Definition: vf_lut.c:164
int height
Definition: frame.h:236
FILE * out
Definition: movenc.c:54
#define av_freep(p)
static void comp(unsigned char *dst, int dst_stride, unsigned char *src, int src_stride, int add)
Definition: eamad.c:83
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:100
planar YUV 4:2:2 27bpp, (1 Cr & Cb sample per 2x1 Y & A samples), little-endian
Definition: pixfmt.h:192
internal API functions
int depth
Number of bits in the component.
Definition: pixdesc.h:58
#define B
Definition: vf_lut.c:79
float min
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
int is_yuv
Definition: vf_lut.c:68
Definition: vf_lut.c:52
for(j=16;j >0;--j)
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:580
packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is st...
Definition: pixfmt.h:217
simple arithmetic expression evaluator
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:58