FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
vf_geq.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2006 Michael Niedermayer <michaelni@gmx.at>
3  * Copyright (C) 2012 Clément Bœsch <u pkh me>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21 
22 /**
23  * @file
24  * Generic equation change filter
25  * Originally written by Michael Niedermayer for the MPlayer project, and
26  * ported by Clément Bœsch for FFmpeg.
27  */
28 
29 #include "libavutil/avassert.h"
30 #include "libavutil/avstring.h"
31 #include "libavutil/eval.h"
32 #include "libavutil/opt.h"
33 #include "libavutil/pixdesc.h"
34 #include "internal.h"
35 
36 typedef struct {
37  const AVClass *class;
38  AVExpr *e[4]; ///< expressions for each plane
39  char *expr_str[4+3]; ///< expression strings for each plane
40  AVFrame *picref; ///< current input buffer
41  int hsub, vsub; ///< chroma subsampling
42  int planes; ///< number of planes
43  int is_rgb;
44 } GEQContext;
45 
46 enum { Y = 0, U, V, A, G, B, R };
47 
48 #define OFFSET(x) offsetof(GEQContext, x)
49 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
50 
51 static const AVOption geq_options[] = {
52  { "lum_expr", "set luminance expression", OFFSET(expr_str[Y]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
53  { "lum", "set luminance expression", OFFSET(expr_str[Y]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
54  { "cb_expr", "set chroma blue expression", OFFSET(expr_str[U]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
55  { "cb", "set chroma blue expression", OFFSET(expr_str[U]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
56  { "cr_expr", "set chroma red expression", OFFSET(expr_str[V]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
57  { "cr", "set chroma red expression", OFFSET(expr_str[V]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
58  { "alpha_expr", "set alpha expression", OFFSET(expr_str[A]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
59  { "a", "set alpha expression", OFFSET(expr_str[A]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
60  { "red_expr", "set red expression", OFFSET(expr_str[R]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
61  { "r", "set red expression", OFFSET(expr_str[R]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
62  { "green_expr", "set green expression", OFFSET(expr_str[G]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
63  { "g", "set green expression", OFFSET(expr_str[G]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
64  { "blue_expr", "set blue expression", OFFSET(expr_str[B]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
65  { "b", "set blue expression", OFFSET(expr_str[B]), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
66  {NULL},
67 };
68 
70 
71 static inline double getpix(void *priv, double x, double y, int plane)
72 {
73  int xi, yi;
74  GEQContext *geq = priv;
75  AVFrame *picref = geq->picref;
76  const uint8_t *src = picref->data[plane];
77  const int linesize = picref->linesize[plane];
78  const int w = (plane == 1 || plane == 2) ? AV_CEIL_RSHIFT(picref->width, geq->hsub) : picref->width;
79  const int h = (plane == 1 || plane == 2) ? AV_CEIL_RSHIFT(picref->height, geq->vsub) : picref->height;
80 
81  if (!src)
82  return 0;
83 
84  xi = x = av_clipf(x, 0, w - 2);
85  yi = y = av_clipf(y, 0, h - 2);
86 
87  x -= xi;
88  y -= yi;
89 
90  return (1-y)*((1-x)*src[xi + yi * linesize] + x*src[xi + 1 + yi * linesize])
91  + y *((1-x)*src[xi + (yi+1) * linesize] + x*src[xi + 1 + (yi+1) * linesize]);
92 }
93 
94 //TODO: cubic interpolate
95 //TODO: keep the last few frames
96 static double lum(void *priv, double x, double y) { return getpix(priv, x, y, 0); }
97 static double cb(void *priv, double x, double y) { return getpix(priv, x, y, 1); }
98 static double cr(void *priv, double x, double y) { return getpix(priv, x, y, 2); }
99 static double alpha(void *priv, double x, double y) { return getpix(priv, x, y, 3); }
100 
101 static const char *const var_names[] = { "X", "Y", "W", "H", "N", "SW", "SH", "T", NULL };
103 
105 {
106  GEQContext *geq = ctx->priv;
107  int plane, ret = 0;
108 
109  if (!geq->expr_str[Y] && !geq->expr_str[G] && !geq->expr_str[B] && !geq->expr_str[R]) {
110  av_log(ctx, AV_LOG_ERROR, "A luminance or RGB expression is mandatory\n");
111  ret = AVERROR(EINVAL);
112  goto end;
113  }
114  geq->is_rgb = !geq->expr_str[Y];
115 
116  if ((geq->expr_str[Y] || geq->expr_str[U] || geq->expr_str[V]) && (geq->expr_str[G] || geq->expr_str[B] || geq->expr_str[R])) {
117  av_log(ctx, AV_LOG_ERROR, "Either YCbCr or RGB but not both must be specified\n");
118  ret = AVERROR(EINVAL);
119  goto end;
120  }
121 
122  if (!geq->expr_str[U] && !geq->expr_str[V]) {
123  /* No chroma at all: fallback on luma */
124  geq->expr_str[U] = av_strdup(geq->expr_str[Y]);
125  geq->expr_str[V] = av_strdup(geq->expr_str[Y]);
126  } else {
127  /* One chroma unspecified, fallback on the other */
128  if (!geq->expr_str[U]) geq->expr_str[U] = av_strdup(geq->expr_str[V]);
129  if (!geq->expr_str[V]) geq->expr_str[V] = av_strdup(geq->expr_str[U]);
130  }
131 
132  if (!geq->expr_str[A])
133  geq->expr_str[A] = av_strdup("255");
134  if (!geq->expr_str[G])
135  geq->expr_str[G] = av_strdup("g(X,Y)");
136  if (!geq->expr_str[B])
137  geq->expr_str[B] = av_strdup("b(X,Y)");
138  if (!geq->expr_str[R])
139  geq->expr_str[R] = av_strdup("r(X,Y)");
140 
141  if (geq->is_rgb ?
142  (!geq->expr_str[G] || !geq->expr_str[B] || !geq->expr_str[R])
143  :
144  (!geq->expr_str[U] || !geq->expr_str[V] || !geq->expr_str[A])) {
145  ret = AVERROR(ENOMEM);
146  goto end;
147  }
148 
149  for (plane = 0; plane < 4; plane++) {
150  static double (*p[])(void *, double, double) = { lum, cb, cr, alpha };
151  static const char *const func2_yuv_names[] = { "lum", "cb", "cr", "alpha", "p", NULL };
152  static const char *const func2_rgb_names[] = { "g", "b", "r", "alpha", "p", NULL };
153  const char *const *func2_names = geq->is_rgb ? func2_rgb_names : func2_yuv_names;
154  double (*func2[])(void *, double, double) = { lum, cb, cr, alpha, p[plane], NULL };
155 
156  ret = av_expr_parse(&geq->e[plane], geq->expr_str[plane < 3 && geq->is_rgb ? plane+4 : plane], var_names,
157  NULL, NULL, func2_names, func2, 0, ctx);
158  if (ret < 0)
159  break;
160  }
161 
162 end:
163  return ret;
164 }
165 
167 {
168  GEQContext *geq = ctx->priv;
169  static const enum AVPixelFormat yuv_pix_fmts[] = {
175  };
176  static const enum AVPixelFormat rgb_pix_fmts[] = {
179  };
180  AVFilterFormats *fmts_list;
181 
182  if (geq->is_rgb) {
183  fmts_list = ff_make_format_list(rgb_pix_fmts);
184  } else
185  fmts_list = ff_make_format_list(yuv_pix_fmts);
186  if (!fmts_list)
187  return AVERROR(ENOMEM);
188  return ff_set_common_formats(ctx, fmts_list);
189 }
190 
191 static int geq_config_props(AVFilterLink *inlink)
192 {
193  GEQContext *geq = inlink->dst->priv;
195 
196  av_assert0(desc);
197 
198  geq->hsub = desc->log2_chroma_w;
199  geq->vsub = desc->log2_chroma_h;
200  geq->planes = desc->nb_components;
201  return 0;
202 }
203 
205 {
206  int plane;
207  GEQContext *geq = inlink->dst->priv;
208  AVFilterLink *outlink = inlink->dst->outputs[0];
209  AVFrame *out;
210  double values[VAR_VARS_NB] = {
211  [VAR_N] = inlink->frame_count,
212  [VAR_T] = in->pts == AV_NOPTS_VALUE ? NAN : in->pts * av_q2d(inlink->time_base),
213  };
214 
215  geq->picref = in;
216  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
217  if (!out) {
218  av_frame_free(&in);
219  return AVERROR(ENOMEM);
220  }
221  av_frame_copy_props(out, in);
222 
223  for (plane = 0; plane < geq->planes && out->data[plane]; plane++) {
224  int x, y;
225  uint8_t *dst = out->data[plane];
226  const int linesize = out->linesize[plane];
227  const int w = (plane == 1 || plane == 2) ? AV_CEIL_RSHIFT(inlink->w, geq->hsub) : inlink->w;
228  const int h = (plane == 1 || plane == 2) ? AV_CEIL_RSHIFT(inlink->h, geq->vsub) : inlink->h;
229 
230  values[VAR_W] = w;
231  values[VAR_H] = h;
232  values[VAR_SW] = w / (double)inlink->w;
233  values[VAR_SH] = h / (double)inlink->h;
234 
235  for (y = 0; y < h; y++) {
236  values[VAR_Y] = y;
237  for (x = 0; x < w; x++) {
238  values[VAR_X] = x;
239  dst[x] = av_expr_eval(geq->e[plane], values, geq);
240  }
241  dst += linesize;
242  }
243  }
244 
245  av_frame_free(&geq->picref);
246  return ff_filter_frame(outlink, out);
247 }
248 
250 {
251  int i;
252  GEQContext *geq = ctx->priv;
253 
254  for (i = 0; i < FF_ARRAY_ELEMS(geq->e); i++)
255  av_expr_free(geq->e[i]);
256 }
257 
258 static const AVFilterPad geq_inputs[] = {
259  {
260  .name = "default",
261  .type = AVMEDIA_TYPE_VIDEO,
262  .config_props = geq_config_props,
263  .filter_frame = geq_filter_frame,
264  },
265  { NULL }
266 };
267 
268 static const AVFilterPad geq_outputs[] = {
269  {
270  .name = "default",
271  .type = AVMEDIA_TYPE_VIDEO,
272  },
273  { NULL }
274 };
275 
277  .name = "geq",
278  .description = NULL_IF_CONFIG_SMALL("Apply generic equation to each pixel."),
279  .priv_size = sizeof(GEQContext),
280  .init = geq_init,
281  .uninit = geq_uninit,
283  .inputs = geq_inputs,
284  .outputs = geq_outputs,
285  .priv_class = &geq_class,
287 };
int plane
Definition: avisynth_c.h:422
Definition: vf_geq.c:102
#define NULL
Definition: coverity.c:32
static const AVFilterPad geq_inputs[]
Definition: vf_geq.c:258
Definition: vf_geq.c:46
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2266
Definition: vf_geq.c:46
This structure describes decoded (raw) audio or video data.
Definition: frame.h:184
AVOption.
Definition: opt.h:245
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:67
const char * desc
Definition: nvenc.c:101
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
Definition: vf_geq.c:102
static av_cold void geq_uninit(AVFilterContext *ctx)
Definition: vf_geq.c:249
static double getpix(void *priv, double x, double y, int plane)
Definition: vf_geq.c:71
planar GBR 4:4:4 24bpp
Definition: pixfmt.h:180
static const char *const var_names[]
Definition: vf_geq.c:101
static const AVFilterPad geq_outputs[]
Definition: vf_geq.c:268
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
Definition: vf_geq.c:102
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition: pixdesc.h:92
static enum AVPixelFormat rgb_pix_fmts[]
Definition: jpeg2000dec.c:244
AVFrame * picref
current input buffer
Definition: vf_geq.c:40
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:283
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition: avfilter.h:125
const char * name
Pad name.
Definition: internal.h:59
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
static int geq_query_formats(AVFilterContext *ctx)
Definition: vf_geq.c:166
static double cb(void *priv, double x, double y)
Definition: vf_geq.c:97
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1189
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:102
uint8_t
#define av_cold
Definition: attributes.h:82
static av_cold int uninit(AVCodecContext *avctx)
Definition: crystalhd.c:336
AVOptions.
AVFilter ff_vf_geq
Definition: vf_geq.c:276
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:90
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:268
Definition: eval.c:149
Definition: vf_geq.c:46
static double av_q2d(AVRational a)
Convert an AVRational to a double.
Definition: rational.h:104
#define av_log(a,...)
A filter pad used for either input or output.
Definition: internal.h:53
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition: pixfmt.h:188
static double alpha(void *priv, double x, double y)
Definition: vf_geq.c:99
int width
width and height of the video frame
Definition: frame.h:236
#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
int planes
number of planes
Definition: vf_geq.c:42
AVExpr * e[4]
expressions for each plane
Definition: vf_geq.c:38
static int geq_config_props(AVFilterLink *inlink)
Definition: vf_geq.c:191
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:101
#define OFFSET(x)
Definition: vf_geq.c:48
#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:158
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
void * priv
private data for use by the filter
Definition: avfilter.h:322
Definition: vf_geq.c:102
simple assert() macros that are a bit more flexible than ISO C assert().
static const AVOption geq_options[]
Definition: vf_geq.c:51
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:66
uint8_t nb_components
The number of components each pixel has, (1-4)
Definition: pixdesc.h:83
Definition: vf_geq.c:102
AVFormatContext * ctx
Definition: movenc.c:48
Definition: vf_geq.c:46
static const AVFilterPad outputs[]
Definition: af_afftfilt.c:386
#define src
Definition: vp9dsp.c:530
#define FF_ARRAY_ELEMS(a)
static const AVFilterPad inputs[]
Definition: af_afftfilt.c:376
char * av_strdup(const char *s)
Duplicate a string.
Definition: mem.c:267
static enum AVPixelFormat yuv_pix_fmts[]
Definition: jpeg2000dec.c:246
void av_expr_free(AVExpr *e)
Free a parsed expression previously created with av_expr_parse().
Definition: eval.c:318
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:215
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition: pixfmt.h:189
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
char * expr_str[4+3]
expression strings for each plane
Definition: vf_geq.c:39
int hsub
Definition: vf_geq.c:41
#define FLAGS
Definition: vf_geq.c:49
Definition: vf_geq.c:102
static av_cold int geq_init(AVFilterContext *ctx)
Definition: vf_geq.c:104
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
Definition: vf_geq.c:46
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:68
Describe the class of an AVClass context structure.
Definition: log.h:67
Filter definition.
Definition: avfilter.h:144
const char * name
Filter name.
Definition: avfilter.h:148
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:319
static int flags
Definition: cpu.c:47
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:198
static double lum(void *priv, double x, double y)
Definition: vf_geq.c:96
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:62
Y , 8bpp.
Definition: pixfmt.h:70
static int query_formats(AVFilterContext *ctx)
Definition: aeval.c:244
planar GBRA 4:4:4:4 32bpp
Definition: pixfmt.h:229
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:69
#define NAN
Definition: math.h:28
double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
Evaluate a previously parsed expression.
Definition: eval.c:713
int is_rgb
Definition: vf_geq.c:43
static int geq_filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_geq.c:204
A list of supported formats for one end of a filter link.
Definition: formats.h:64
An instance of a filter.
Definition: avfilter.h:307
int height
Definition: frame.h:236
FILE * out
Definition: movenc.c:54
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:100
Definition: vf_geq.c:102
internal API functions
Definition: vf_geq.c:46
static double cr(void *priv, double x, double y)
Definition: vf_geq.c:98
Definition: vf_geq.c:102
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
Definition: vf_geq.c:46
int vsub
chroma subsampling
Definition: vf_geq.c:41
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:589
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:242
simple arithmetic expression evaluator
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:58
AVFILTER_DEFINE_CLASS(geq)