FFmpeg  2.1.1
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/common.h"
29 #include "libavutil/eval.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/pixdesc.h"
32 #include "avfilter.h"
33 #include "drawutils.h"
34 #include "formats.h"
35 #include "internal.h"
36 #include "video.h"
37 
38 static const char *const var_names[] = {
39  "w", ///< width of the input video
40  "h", ///< height of the input video
41  "val", ///< input value for the pixel
42  "maxval", ///< max value for the pixel
43  "minval", ///< min value for the pixel
44  "negval", ///< negated value
45  "clipval",
46  NULL
47 };
48 
49 enum var_name {
58 };
59 
60 typedef struct {
61  const AVClass *class;
62  uint8_t lut[4][256]; ///< lookup table for each component
63  char *comp_expr_str[4];
64  AVExpr *comp_expr[4];
65  int hsub, vsub;
66  double var_values[VAR_VARS_NB];
67  int is_rgb, is_yuv;
68  int step;
69  int negate_alpha; /* only used by negate */
70 } LutContext;
71 
72 #define Y 0
73 #define U 1
74 #define V 2
75 #define R 0
76 #define G 1
77 #define B 2
78 #define A 3
79 
80 #define OFFSET(x) offsetof(LutContext, x)
81 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
82 
83 static const AVOption options[] = {
84  { "c0", "set component #0 expression", OFFSET(comp_expr_str[0]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
85  { "c1", "set component #1 expression", OFFSET(comp_expr_str[1]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
86  { "c2", "set component #2 expression", OFFSET(comp_expr_str[2]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
87  { "c3", "set component #3 expression", OFFSET(comp_expr_str[3]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
88  { "y", "set Y expression", OFFSET(comp_expr_str[Y]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
89  { "u", "set U expression", OFFSET(comp_expr_str[U]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
90  { "v", "set V expression", OFFSET(comp_expr_str[V]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
91  { "r", "set R expression", OFFSET(comp_expr_str[R]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
92  { "g", "set G expression", OFFSET(comp_expr_str[G]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
93  { "b", "set B expression", OFFSET(comp_expr_str[B]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
94  { "a", "set A expression", OFFSET(comp_expr_str[A]), AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
95  { NULL }
96 };
97 
98 static av_cold void uninit(AVFilterContext *ctx)
99 {
100  LutContext *s = ctx->priv;
101  int i;
102 
103  for (i = 0; i < 4; i++) {
104  av_expr_free(s->comp_expr[i]);
105  s->comp_expr[i] = NULL;
106  av_freep(&s->comp_expr_str[i]);
107  }
108 }
109 
110 #define YUV_FORMATS \
111  AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P, \
112  AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV440P, \
113  AV_PIX_FMT_YUVA420P, AV_PIX_FMT_YUVA422P, AV_PIX_FMT_YUVA444P, \
114  AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ420P, \
115  AV_PIX_FMT_YUVJ440P
116 
117 #define RGB_FORMATS \
118  AV_PIX_FMT_ARGB, AV_PIX_FMT_RGBA, \
119  AV_PIX_FMT_ABGR, AV_PIX_FMT_BGRA, \
120  AV_PIX_FMT_RGB24, AV_PIX_FMT_BGR24
121 
125 
127 {
128  LutContext *s = ctx->priv;
129 
130  const enum AVPixelFormat *pix_fmts = s->is_rgb ? rgb_pix_fmts :
131  s->is_yuv ? yuv_pix_fmts :
132  all_pix_fmts;
133 
135  return 0;
136 }
137 
138 /**
139  * Clip value val in the minval - maxval range.
140  */
141 static double clip(void *opaque, double val)
142 {
143  LutContext *s = opaque;
144  double minval = s->var_values[VAR_MINVAL];
145  double maxval = s->var_values[VAR_MAXVAL];
146 
147  return av_clip(val, minval, maxval);
148 }
149 
150 /**
151  * Compute gamma correction for value val, assuming the minval-maxval
152  * range, val is clipped to a value contained in the same interval.
153  */
154 static double compute_gammaval(void *opaque, double gamma)
155 {
156  LutContext *s = opaque;
157  double val = s->var_values[VAR_CLIPVAL];
158  double minval = s->var_values[VAR_MINVAL];
159  double maxval = s->var_values[VAR_MAXVAL];
160 
161  return pow((val-minval)/(maxval-minval), gamma) * (maxval-minval)+minval;
162 }
163 
164 static double (* const funcs1[])(void *, double) = {
165  (void *)clip,
166  (void *)compute_gammaval,
167  NULL
168 };
169 
170 static const char * const funcs1_names[] = {
171  "clip",
172  "gammaval",
173  NULL
174 };
175 
176 static int config_props(AVFilterLink *inlink)
177 {
178  AVFilterContext *ctx = inlink->dst;
179  LutContext *s = ctx->priv;
180  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
181  uint8_t rgba_map[4]; /* component index -> RGBA color index map */
182  int min[4], max[4];
183  int val, color, ret;
184 
185  s->hsub = desc->log2_chroma_w;
186  s->vsub = desc->log2_chroma_h;
187 
188  s->var_values[VAR_W] = inlink->w;
189  s->var_values[VAR_H] = inlink->h;
190 
191  switch (inlink->format) {
192  case AV_PIX_FMT_YUV410P:
193  case AV_PIX_FMT_YUV411P:
194  case AV_PIX_FMT_YUV420P:
195  case AV_PIX_FMT_YUV422P:
196  case AV_PIX_FMT_YUV440P:
197  case AV_PIX_FMT_YUV444P:
198  case AV_PIX_FMT_YUVA420P:
199  case AV_PIX_FMT_YUVA422P:
200  case AV_PIX_FMT_YUVA444P:
201  min[Y] = min[U] = min[V] = 16;
202  max[Y] = 235;
203  max[U] = max[V] = 240;
204  min[A] = 0; max[A] = 255;
205  break;
206  default:
207  min[0] = min[1] = min[2] = min[3] = 0;
208  max[0] = max[1] = max[2] = max[3] = 255;
209  }
210 
211  s->is_yuv = s->is_rgb = 0;
212  if (ff_fmt_is_in(inlink->format, yuv_pix_fmts)) s->is_yuv = 1;
213  else if (ff_fmt_is_in(inlink->format, rgb_pix_fmts)) s->is_rgb = 1;
214 
215  if (s->is_rgb) {
216  ff_fill_rgba_map(rgba_map, inlink->format);
217  s->step = av_get_bits_per_pixel(desc) >> 3;
218  }
219 
220  for (color = 0; color < desc->nb_components; color++) {
221  double res;
222  int comp = s->is_rgb ? rgba_map[color] : color;
223 
224  /* create the parsed expression */
225  av_expr_free(s->comp_expr[color]);
226  s->comp_expr[color] = NULL;
227  ret = av_expr_parse(&s->comp_expr[color], s->comp_expr_str[color],
228  var_names, funcs1_names, funcs1, NULL, NULL, 0, ctx);
229  if (ret < 0) {
230  av_log(ctx, AV_LOG_ERROR,
231  "Error when parsing the expression '%s' for the component %d and color %d.\n",
232  s->comp_expr_str[comp], comp, color);
233  return AVERROR(EINVAL);
234  }
235 
236  /* compute the lut */
237  s->var_values[VAR_MAXVAL] = max[color];
238  s->var_values[VAR_MINVAL] = min[color];
239 
240  for (val = 0; val < 256; val++) {
241  s->var_values[VAR_VAL] = val;
242  s->var_values[VAR_CLIPVAL] = av_clip(val, min[color], max[color]);
243  s->var_values[VAR_NEGVAL] =
244  av_clip(min[color] + max[color] - s->var_values[VAR_VAL],
245  min[color], max[color]);
246 
247  res = av_expr_eval(s->comp_expr[color], s->var_values, s);
248  if (isnan(res)) {
249  av_log(ctx, AV_LOG_ERROR,
250  "Error when evaluating the expression '%s' for the value %d for the component %d.\n",
251  s->comp_expr_str[color], val, comp);
252  return AVERROR(EINVAL);
253  }
254  s->lut[comp][val] = av_clip((int)res, min[color], max[color]);
255  av_log(ctx, AV_LOG_DEBUG, "val[%d][%d] = %d\n", comp, val, s->lut[comp][val]);
256  }
257  }
258 
259  return 0;
260 }
261 
262 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
263 {
264  AVFilterContext *ctx = inlink->dst;
265  LutContext *s = ctx->priv;
266  AVFilterLink *outlink = ctx->outputs[0];
267  AVFrame *out;
268  uint8_t *inrow, *outrow, *inrow0, *outrow0;
269  int i, j, plane, direct = 0;
270 
271  if (av_frame_is_writable(in)) {
272  direct = 1;
273  out = in;
274  } else {
275  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
276  if (!out) {
277  av_frame_free(&in);
278  return AVERROR(ENOMEM);
279  }
280  av_frame_copy_props(out, in);
281  }
282 
283  if (s->is_rgb) {
284  /* packed */
285  inrow0 = in ->data[0];
286  outrow0 = out->data[0];
287 
288  for (i = 0; i < in->height; i ++) {
289  int w = inlink->w;
290  const uint8_t (*tab)[256] = (const uint8_t (*)[256])s->lut;
291  inrow = inrow0;
292  outrow = outrow0;
293  for (j = 0; j < w; j++) {
294  switch (s->step) {
295  case 4: outrow[3] = tab[3][inrow[3]]; // Fall-through
296  case 3: outrow[2] = tab[2][inrow[2]]; // Fall-through
297  case 2: outrow[1] = tab[1][inrow[1]]; // Fall-through
298  default: outrow[0] = tab[0][inrow[0]];
299  }
300  outrow += s->step;
301  inrow += s->step;
302  }
303  inrow0 += in ->linesize[0];
304  outrow0 += out->linesize[0];
305  }
306  } else {
307  /* planar */
308  for (plane = 0; plane < 4 && in->data[plane] && in->linesize[plane]; plane++) {
309  int vsub = plane == 1 || plane == 2 ? s->vsub : 0;
310  int hsub = plane == 1 || plane == 2 ? s->hsub : 0;
311  int h = FF_CEIL_RSHIFT(inlink->h, vsub);
312  int w = FF_CEIL_RSHIFT(inlink->w, hsub);
313 
314  inrow = in ->data[plane];
315  outrow = out->data[plane];
316 
317  for (i = 0; i < h; i++) {
318  const uint8_t *tab = s->lut[plane];
319  for (j = 0; j < w; j++)
320  outrow[j] = tab[inrow[j]];
321  inrow += in ->linesize[plane];
322  outrow += out->linesize[plane];
323  }
324  }
325  }
326 
327  if (!direct)
328  av_frame_free(&in);
329 
330  return ff_filter_frame(outlink, out);
331 }
332 
333 static const AVFilterPad inputs[] = {
334  { .name = "default",
335  .type = AVMEDIA_TYPE_VIDEO,
336  .filter_frame = filter_frame,
337  .config_props = config_props,
338  },
339  { NULL }
340 };
341 static const AVFilterPad outputs[] = {
342  { .name = "default",
343  .type = AVMEDIA_TYPE_VIDEO,
344  },
345  { NULL }
346 };
347 
348 #define DEFINE_LUT_FILTER(name_, description_) \
349  AVFilter avfilter_vf_##name_ = { \
350  .name = #name_, \
351  .description = NULL_IF_CONFIG_SMALL(description_), \
352  .priv_size = sizeof(LutContext), \
353  .priv_class = &name_ ## _class, \
354  .init = name_##_init, \
355  .uninit = uninit, \
356  .query_formats = query_formats, \
357  .inputs = inputs, \
358  .outputs = outputs, \
359  .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, \
360  }
361 
362 #if CONFIG_LUT_FILTER
363 
364 #define lut_options options
366 
367 static int lut_init(AVFilterContext *ctx)
368 {
369  return 0;
370 }
371 
372 DEFINE_LUT_FILTER(lut, "Compute and apply a lookup table to the RGB/YUV input video.");
373 #endif
374 
375 #if CONFIG_LUTYUV_FILTER
376 
377 #define lutyuv_options options
378 AVFILTER_DEFINE_CLASS(lutyuv);
379 
380 static av_cold int lutyuv_init(AVFilterContext *ctx)
381 {
382  LutContext *s = ctx->priv;
383 
384  s->is_yuv = 1;
385 
386  return 0;
387 }
388 
389 DEFINE_LUT_FILTER(lutyuv, "Compute and apply a lookup table to the YUV input video.");
390 #endif
391 
392 #if CONFIG_LUTRGB_FILTER
393 
394 #define lutrgb_options options
395 AVFILTER_DEFINE_CLASS(lutrgb);
396 
397 static av_cold int lutrgb_init(AVFilterContext *ctx)
398 {
399  LutContext *s = ctx->priv;
400 
401  s->is_rgb = 1;
402 
403  return 0;
404 }
405 
406 DEFINE_LUT_FILTER(lutrgb, "Compute and apply a lookup table to the RGB input video.");
407 #endif
408 
409 #if CONFIG_NEGATE_FILTER
410 
411 static const AVOption negate_options[] = {
412  { "negate_alpha", NULL, OFFSET(negate_alpha), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, FLAGS },
413  { NULL }
414 };
415 
416 AVFILTER_DEFINE_CLASS(negate);
417 
418 static av_cold int negate_init(AVFilterContext *ctx)
419 {
420  LutContext *s = ctx->priv;
421  int i;
422 
423  av_log(ctx, AV_LOG_DEBUG, "negate_alpha:%d\n", s->negate_alpha);
424 
425  for (i = 0; i < 4; i++) {
426  s->comp_expr_str[i] = av_strdup((i == 3 && !s->negate_alpha) ?
427  "val" : "negval");
428  if (!s->comp_expr_str[i]) {
429  uninit(ctx);
430  return AVERROR(ENOMEM);
431  }
432  }
433 
434  return 0;
435 }
436 
437 DEFINE_LUT_FILTER(negate, "Negate input video.");
438 
439 #endif
char * comp_expr_str[4]
Definition: vf_lut.c:63
const char const char void * val
Definition: avisynth_c.h:671
const char * s
Definition: avisynth_c.h:668
This structure describes decoded (raw) audio or video data.
Definition: frame.h:96
AVOption.
Definition: opt.h:253
double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
Evaluate a previously parsed expression.
Definition: eval.c:692
#define B
Definition: dsputil.c:2028
void * priv
private data for use by the filter
Definition: avfilter.h:648
char * av_strdup(const char *s) av_malloc_attrib
Duplicate the string s.
Definition: mem.c:256
uint8_t lut[4][256]
lookup table for each component
Definition: vf_lut.c:62
#define RGB_FORMATS
Definition: vf_lut.c:117
planar YUV 4:2:2, 16bpp, (1 Cr &amp; Cb sample per 2x1 Y samples)
Definition: avcodec.h:4538
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_lut.c:262
void av_log(void *avcl, int level, const char *fmt,...) av_printf_format(3
Send the specified message to the log if the level is less than or equal to the current av_log_level...
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:641
static const char *const funcs1_names[]
Definition: vf_lut.c:170
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:109
planar YUV 4:4:4 32bpp, (1 Cr &amp; Cb sample per 1x1 Y &amp; A samples)
Definition: avcodec.h:4693
void av_expr_free(AVExpr *e)
Free a parsed expression previously created with av_expr_parse().
Definition: eval.c:303
Pixel format.
Definition: avcodec.h:4533
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
Definition: frame.c:382
#define av_cold
Definition: avcodec.h:653
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition: pixdesc.h:68
static enum AVPixelFormat yuv_pix_fmts[]
Definition: vf_lut.c:122
void av_freep(void *ptr)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
Definition: mem.c:234
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:294
const char * name
Pad name.
Definition: internal.h:66
static const char *const var_names[]
Definition: vf_lut.c:38
static uint8_t * res
Definition: ffhash.c:43
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1118
uint8_t
#define Y
Definition: vf_boxblur.c:76
static const uint32_t color[16+AV_CLASS_CATEGORY_NB]
Definition: log.c:83
static av_always_inline av_const int isnan(float x)
Definition: libm.h:96
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only &quot;metadata&quot; fields from src to dst.
Definition: frame.c:446
static double(*const funcs1[])(void *, double)
Definition: vf_lut.c:164
Definition: eval.c:141
#define FF_CEIL_RSHIFT(a, b)
Definition: avcodec.h:916
#define R
Definition: dsputil.c:2030
planar YUV 4:2:2 24bpp, (1 Cr &amp; Cb sample per 2x1 Y &amp; A samples)
Definition: avcodec.h:4694
planar YUV 4:2:0, 20bpp, (1 Cr &amp; Cb sample per 2x2 Y &amp; A samples)
Definition: avcodec.h:4571
void 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:531
int ff_fmt_is_in(int fmt, const int *fmts)
Tell is a format is contained in the provided list terminated by -1.
Definition: formats.c:254
#define A(x)
Definition: vp56_arith.h:28
const OptionDef options[]
Definition: ffserver.c:4682
A filter pad used for either input or output.
Definition: internal.h:60
#define YUV_FORMATS
Definition: vf_lut.c:110
#define U(x)
Definition: vp56_arith.h:37
static enum AVPixelFormat all_pix_fmts[]
Definition: vf_lut.c:124
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: avcodec.h:4147
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){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));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=av_sample_fmt_is_planar(in_fmt);out_planar=av_sample_fmt_is_planar(out_fmt);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);ff_audio_convert_init_arm(ac);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_dlog(ac->avr,"%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
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:77
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: avcodec.h:4168
planar YUV 4:1:1, 12bpp, (1 Cr &amp; Cb sample per 4x1 Y samples)
Definition: avcodec.h:4541
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:123
AVPixelFormat
Pixel format.
Definition: pixfmt.h:66
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:1891
double var_values[VAR_VARS_NB]
Definition: vf_lut.c:66
#define V
Definition: options_table.h:35
uint8_t nb_components
The number of components each pixel has, (1-4)
Definition: pixdesc.h:59
int hsub
Definition: vf_lut.c:65
var_name
#define OFFSET(x)
Definition: vf_lut.c:80
ret
Definition: avfilter.c:961
int ff_fill_rgba_map(uint8_t *rgba_map, enum AVPixelFormat pix_fmt)
Definition: drawutils.c:33
Main libavfilter public API header.
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:1938
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:642
planar YUV 4:2:0, 12bpp, (1 Cr &amp; Cb sample per 2x2 Y samples)
Definition: avcodec.h:4534
Definition: vf_lut.c:52
planar YUV 4:4:0 (1 Cr &amp; Cb sample per 1x2 Y samples)
Definition: avcodec.h:4569
misc drawing utilities
int is_rgb
Definition: vf_lut.c:67
static const AVFilterPad outputs[]
Definition: vf_lut.c:341
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:57
static int query_formats(AVFilterContext *ctx)
Definition: vf_lut.c:126
Describe the class of an AVClass context structure.
Definition: log.h:50
planar YUV 4:4:4, 24bpp, (1 Cr &amp; Cb sample per 1x1 Y samples)
Definition: avcodec.h:4539
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:124
int step
Definition: vf_lut.c:68
AVExpr * comp_expr[4]
Definition: vf_lut.c:64
#define DEFINE_LUT_FILTER(name_, description_)
Definition: vf_lut.c:348
static enum AVPixelFormat rgb_pix_fmts[]
Definition: vf_lut.c:123
static const AVFilterPad inputs[]
Definition: vf_lut.c:333
static int config_props(AVFilterLink *inlink)
Definition: vf_lut.c:176
Definition: vf_blend.c:65
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_lut.c:98
static double clip(void *opaque, double val)
Clip value val in the minval - maxval range.
Definition: vf_lut.c:141
Definition: vf_blend.c:65
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){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));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=av_sample_fmt_is_planar(in_fmt);out_planar=av_sample_fmt_is_planar(out_fmt);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);ff_audio_convert_init_arm(ac);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_dlog(ac->avr,"%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-> out
#define AVFILTER_DEFINE_CLASS(fname)
Definition: internal.h:301
#define FLAGS
Definition: vf_lut.c:81
int negate_alpha
Definition: vf_lut.c:69
int vsub
Definition: vf_lut.c:65
#define AVERROR(e)
#define G
Definition: dsputil.c:2029
static struct twinvq_data tab
An instance of a filter.
Definition: avfilter.h:627
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:154
int height
Definition: frame.h:145
static void comp(unsigned char *dst, int dst_stride, unsigned char *src, int src_stride, int add)
Definition: eamad.c:71
internal API functions
float min
int is_yuv
Definition: vf_lut.c:67
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:107
for(j=16;j >0;--j)
planar YUV 4:1:0, 9bpp, (1 Cr &amp; Cb sample per 4x4 Y samples)
Definition: avcodec.h:4540