FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
vf_zoompan.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 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/avassert.h"
22 #include "libavutil/eval.h"
23 #include "libavutil/opt.h"
24 #include "libavutil/pixdesc.h"
25 #include "avfilter.h"
26 #include "formats.h"
27 #include "internal.h"
28 #include "video.h"
29 #include "libswscale/swscale.h"
30 
31 static const char *const var_names[] = {
32  "in_w", "iw",
33  "in_h", "ih",
34  "out_w", "ow",
35  "out_h", "oh",
36  "in",
37  "on",
38  "duration",
39  "pduration",
40  "time",
41  "frame",
42  "zoom",
43  "pzoom",
44  "x", "px",
45  "y", "py",
46  "a",
47  "sar",
48  "dar",
49  "hsub",
50  "vsub",
51  NULL
52 };
53 
54 enum var_name {
75 };
76 
77 typedef struct ZPcontext {
78  const AVClass *class;
80  char *x_expr_str;
81  char *y_expr_str;
83  int w, h;
84  double x, y;
85  double prev_zoom;
87  struct SwsContext *sws;
88  int64_t frame_count;
91  double var_values[VARS_NB];
92  int nb_frames;
94  int finished;
96 } ZPContext;
97 
98 #define OFFSET(x) offsetof(ZPContext, x)
99 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
100 static const AVOption zoompan_options[] = {
101  { "zoom", "set the zoom expression", OFFSET(zoom_expr_str), AV_OPT_TYPE_STRING, {.str = "1" }, .flags = FLAGS },
102  { "z", "set the zoom expression", OFFSET(zoom_expr_str), AV_OPT_TYPE_STRING, {.str = "1" }, .flags = FLAGS },
103  { "x", "set the x expression", OFFSET(x_expr_str), AV_OPT_TYPE_STRING, {.str="0"}, .flags = FLAGS },
104  { "y", "set the y expression", OFFSET(y_expr_str), AV_OPT_TYPE_STRING, {.str="0"}, .flags = FLAGS },
105  { "d", "set the duration expression", OFFSET(duration_expr_str), AV_OPT_TYPE_STRING, {.str="90"}, .flags = FLAGS },
106  { "s", "set the output image size", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, {.str="hd720"}, .flags = FLAGS },
107  { "fps", "set the output framerate", OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, { .str = "25" }, .flags = FLAGS },
108  { NULL }
109 };
110 
111 AVFILTER_DEFINE_CLASS(zoompan);
112 
114 {
115  ZPContext *s = ctx->priv;
116 
117  s->prev_zoom = 1;
118  return 0;
119 }
120 
121 static int config_output(AVFilterLink *outlink)
122 {
123  AVFilterContext *ctx = outlink->src;
124  ZPContext *s = ctx->priv;
125 
126  outlink->w = s->w;
127  outlink->h = s->h;
128  outlink->time_base = av_inv_q(s->framerate);
129  outlink->frame_rate = s->framerate;
130  s->desc = av_pix_fmt_desc_get(outlink->format);
131 
132  return 0;
133 }
134 
135 static int output_single_frame(AVFilterContext *ctx, AVFrame *in, double *var_values, int i,
136  double *zoom, double *dx, double *dy)
137 {
138  ZPContext *s = ctx->priv;
139  AVFilterLink *outlink = ctx->outputs[0];
140  int64_t pts = s->frame_count;
141  int k, x, y, w, h, ret = 0;
142  uint8_t *input[4];
143  int px[4], py[4];
144  AVFrame *out;
145 
146  var_values[VAR_TIME] = pts * av_q2d(outlink->time_base);
147  var_values[VAR_FRAME] = i;
148  var_values[VAR_ON] = outlink->frame_count + 1;
149  if ((ret = av_expr_parse_and_eval(zoom, s->zoom_expr_str,
150  var_names, var_values,
151  NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
152  return ret;
153 
154  *zoom = av_clipd(*zoom, 1, 10);
155  var_values[VAR_ZOOM] = *zoom;
156  w = in->width * (1.0 / *zoom);
157  h = in->height * (1.0 / *zoom);
158 
159  if ((ret = av_expr_parse_and_eval(dx, s->x_expr_str,
160  var_names, var_values,
161  NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
162  return ret;
163  x = *dx = av_clipd(*dx, 0, FFMAX(in->width - w, 0));
164  var_values[VAR_X] = *dx;
165  x &= ~((1 << s->desc->log2_chroma_w) - 1);
166 
167  if ((ret = av_expr_parse_and_eval(dy, s->y_expr_str,
168  var_names, var_values,
169  NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
170  return ret;
171  y = *dy = av_clipd(*dy, 0, FFMAX(in->height - h, 0));
172  var_values[VAR_Y] = *dy;
173  y &= ~((1 << s->desc->log2_chroma_h) - 1);
174 
175  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
176  if (!out) {
177  ret = AVERROR(ENOMEM);
178  return ret;
179  }
180 
181  px[1] = px[2] = AV_CEIL_RSHIFT(x, s->desc->log2_chroma_w);
182  px[0] = px[3] = x;
183 
184  py[1] = py[2] = AV_CEIL_RSHIFT(y, s->desc->log2_chroma_h);
185  py[0] = py[3] = y;
186 
187  s->sws = sws_alloc_context();
188  if (!s->sws) {
189  ret = AVERROR(ENOMEM);
190  return ret;
191  }
192 
193  for (k = 0; in->data[k]; k++)
194  input[k] = in->data[k] + py[k] * in->linesize[k] + px[k];
195 
196  av_opt_set_int(s->sws, "srcw", w, 0);
197  av_opt_set_int(s->sws, "srch", h, 0);
198  av_opt_set_int(s->sws, "src_format", in->format, 0);
199  av_opt_set_int(s->sws, "dstw", outlink->w, 0);
200  av_opt_set_int(s->sws, "dsth", outlink->h, 0);
201  av_opt_set_int(s->sws, "dst_format", outlink->format, 0);
202  av_opt_set_int(s->sws, "sws_flags", SWS_BICUBIC, 0);
203 
204  if ((ret = sws_init_context(s->sws, NULL, NULL)) < 0)
205  return ret;
206 
207  sws_scale(s->sws, (const uint8_t *const *)&input, in->linesize, 0, h, out->data, out->linesize);
208 
209  out->pts = pts;
210  s->frame_count++;
211 
212  ret = ff_filter_frame(outlink, out);
213  sws_freeContext(s->sws);
214  s->sws = NULL;
215  s->current_frame++;
216  return ret;
217 }
218 
219 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
220 {
221  AVFilterContext *ctx = inlink->dst;
222  AVFilterLink *outlink = ctx->outputs[0];
223  ZPContext *s = ctx->priv;
224  double nb_frames;
225  int ret;
226 
227  av_assert0(s->in == NULL);
228 
229  s->finished = 0;
230  s->var_values[VAR_IN_W] = s->var_values[VAR_IW] = in->width;
231  s->var_values[VAR_IN_H] = s->var_values[VAR_IH] = in->height;
232  s->var_values[VAR_OUT_W] = s->var_values[VAR_OW] = s->w;
233  s->var_values[VAR_OUT_H] = s->var_values[VAR_OH] = s->h;
234  s->var_values[VAR_IN] = inlink->frame_count + 1;
235  s->var_values[VAR_ON] = outlink->frame_count + 1;
236  s->var_values[VAR_PX] = s->x;
237  s->var_values[VAR_PY] = s->y;
238  s->var_values[VAR_X] = 0;
239  s->var_values[VAR_Y] = 0;
240  s->var_values[VAR_PZOOM] = s->prev_zoom;
241  s->var_values[VAR_ZOOM] = 1;
243  s->var_values[VAR_A] = (double) in->width / in->height;
244  s->var_values[VAR_SAR] = inlink->sample_aspect_ratio.num ?
245  (double) inlink->sample_aspect_ratio.num / inlink->sample_aspect_ratio.den : 1;
247  s->var_values[VAR_HSUB] = 1 << s->desc->log2_chroma_w;
248  s->var_values[VAR_VSUB] = 1 << s->desc->log2_chroma_h;
249 
250  if ((ret = av_expr_parse_and_eval(&nb_frames, s->duration_expr_str,
251  var_names, s->var_values,
252  NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) {
253  av_frame_free(&in);
254  return ret;
255  }
256 
257  s->var_values[VAR_DURATION] = s->nb_frames = nb_frames;
258  s->in = in;
259 
260  return 0;
261 }
262 
263 static int request_frame(AVFilterLink *outlink)
264 {
265  AVFilterContext *ctx = outlink->src;
266  ZPContext *s = ctx->priv;
267  AVFrame *in = s->in;
268  double zoom=1, dx=0, dy=0;
269  int ret = -1;
270 
271  if (in) {
272  ret = output_single_frame(ctx, in, s->var_values, s->current_frame,
273  &zoom, &dx, &dy);
274  if (ret < 0)
275  goto fail;
276  }
277 
278  if (s->current_frame >= s->nb_frames) {
279  s->x = dx;
280  s->y = dy;
281  s->prev_zoom = zoom;
282  s->prev_nb_frames = s->nb_frames;
283  s->nb_frames = 0;
284  s->current_frame = 0;
285  av_frame_free(&s->in);
286  s->finished = 1;
287  ret = ff_request_frame(ctx->inputs[0]);
288  }
289 
290 fail:
291  sws_freeContext(s->sws);
292  s->sws = NULL;
293 
294  return ret;
295 }
296 
297 static int poll_frame(AVFilterLink *link)
298 {
299  ZPContext *s = link->src->priv;
300  return s->nb_frames - s->current_frame;
301 }
302 
304 {
305  static const enum AVPixelFormat pix_fmts[] = {
317  };
318 
319  AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
320  if (!fmts_list)
321  return AVERROR(ENOMEM);
322  return ff_set_common_formats(ctx, fmts_list);
323 }
324 
326 {
327  ZPContext *s = ctx->priv;
328 
329  sws_freeContext(s->sws);
330  s->sws = NULL;
331 }
332 
333 static const AVFilterPad inputs[] = {
334  {
335  .name = "default",
336  .type = AVMEDIA_TYPE_VIDEO,
337  .filter_frame = filter_frame,
338  .needs_fifo = 1,
339  },
340  { NULL }
341 };
342 
343 static const AVFilterPad outputs[] = {
344  {
345  .name = "default",
346  .type = AVMEDIA_TYPE_VIDEO,
347  .config_props = config_output,
348  .poll_frame = poll_frame,
349  .request_frame = request_frame,
350  },
351  { NULL }
352 };
353 
355  .name = "zoompan",
356  .description = NULL_IF_CONFIG_SMALL("Apply Zoom & Pan effect."),
357  .priv_size = sizeof(ZPContext),
358  .priv_class = &zoompan_class,
359  .init = init,
360  .uninit = uninit,
362  .inputs = inputs,
363  .outputs = outputs,
365 };
#define NULL
Definition: coverity.c:32
struct SwsContext * sws
Definition: vf_zoompan.c:87
const char * s
Definition: avisynth_c.h:631
double var_values[VARS_NB]
Definition: vf_zoompan.c:91
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2157
This structure describes decoded (raw) audio or video data.
Definition: frame.h:181
#define SWS_BICUBIC
Definition: swscale.h:58
AVOption.
Definition: opt.h:245
AVFormatContext * ctx
Definition: movenc-test.c:48
int prev_nb_frames
Definition: vf_zoompan.c:86
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:68
char * zoom_expr_str
Definition: vf_zoompan.c:79
Main libavfilter public API header.
AVRational framerate
Definition: vf_zoompan.c:95
static int query_formats(AVFilterContext *ctx)
Definition: vf_zoompan.c:303
planar GBR 4:4:4 24bpp
Definition: pixfmt.h:181
int num
numerator
Definition: rational.h:44
int nb_frames
Definition: vf_zoompan.c:92
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
static const AVFilterPad inputs[]
Definition: vf_zoompan.c:333
double y
Definition: vf_zoompan.c:84
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition: pixdesc.h:92
int current_frame
Definition: vf_zoompan.c:93
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:283
AVFrame * in
Definition: vf_zoompan.c:90
#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:122
const char * name
Pad name.
Definition: internal.h:59
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:312
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1163
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:103
uint8_t
#define av_cold
Definition: attributes.h:82
av_warn_unused_result int sws_init_context(struct SwsContext *sws_context, SwsFilter *srcFilter, SwsFilter *dstFilter)
Initialize the swscaler context sws_context.
Definition: utils.c:1123
AVOptions.
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:262
#define FLAGS
Definition: vf_zoompan.c:99
static double av_q2d(AVRational a)
Convert rational to double.
Definition: rational.h:80
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range...
Definition: pixfmt.h:102
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
Definition: pixfmt.h:76
external API header
A filter pad used for either input or output.
Definition: internal.h:53
const AVPixFmtDescriptor * desc
Definition: vf_zoompan.c:89
int av_expr_parse_and_eval(double *d, const char *s, const char *const *const_names, const double *const_values, const char *const *func1_names, double(*const *funcs1)(void *, double), const char *const *func2_names, double(*const *funcs2)(void *, double, double), void *opaque, int log_offset, void *log_ctx)
Parse and evaluate an expression.
Definition: eval.c:722
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition: pixfmt.h:188
int width
width and height of the video frame
Definition: frame.h:230
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:154
static const char *const var_names[]
Definition: vf_zoompan.c:31
#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:319
int av_opt_set_int(void *obj, const char *name, int64_t val, int search_flags)
Definition: opt.c:486
double x
Definition: vf_zoompan.c:84
simple assert() macros that are a bit more flexible than ISO C assert().
static const AVOption zoompan_options[]
Definition: vf_zoompan.c:100
static int config_output(AVFilterLink *outlink)
Definition: vf_zoompan.c:121
static int request_frame(AVFilterLink *outlink)
Definition: vf_zoompan.c:263
#define FFMAX(a, b)
Definition: common.h:94
#define fail()
Definition: checkasm.h:80
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:67
var_name
Definition: aeval.c:46
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
Definition: pixfmt.h:75
void sws_freeContext(struct SwsContext *swsContext)
Free the swscaler context swsContext.
Definition: utils.c:2267
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_zoompan.c:325
int finished
Definition: vf_zoompan.c:94
char * y_expr_str
Definition: vf_zoompan.c:81
#define OFFSET(x)
Definition: vf_zoompan.c:98
static int output_single_frame(AVFilterContext *ctx, AVFrame *in, double *var_values, int i, double *zoom, double *dx, double *dy)
Definition: vf_zoompan.c:135
static int poll_frame(AVFilterLink *link)
Definition: vf_zoompan.c:297
FILE * out
Definition: movenc-test.c:54
char * duration_expr_str
Definition: vf_zoompan.c:82
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
Definition: frame.h:242
AVFilter ff_vf_zoompan
Definition: vf_zoompan.c:354
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:209
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
int attribute_align_arg sws_scale(struct SwsContext *c, const uint8_t *const srcSlice[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[])
swscale wrapper, so we don't need to export the SwsContext.
Definition: swscale.c:1041
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:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:69
Describe the class of an AVClass context structure.
Definition: log.h:67
Filter definition.
Definition: avfilter.h:141
static const AVFilterPad outputs[]
Definition: vf_zoompan.c:343
rational number numerator/denominator
Definition: rational.h:43
offset must point to AVRational
Definition: opt.h:235
const char * name
Filter name.
Definition: avfilter.h:145
int64_t frame_count
Definition: vf_zoompan.c:88
offset must point to two consecutive integers
Definition: opt.h:232
struct SwsContext * sws_alloc_context(void)
Allocate an empty SwsContext.
Definition: utils.c:1043
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:316
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:262
static int64_t pts
Global timestamp for the audio frames.
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition: rational.h:133
static int flags
Definition: cpu.c:47
static av_cold int init(AVFilterContext *ctx)
Definition: vf_zoompan.c:113
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:192
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:63
Y , 8bpp.
Definition: pixfmt.h:71
planar GBRA 4:4:4:4 32bpp
Definition: pixfmt.h:229
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
Definition: pixfmt.h:77
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:70
int den
denominator
Definition: rational.h:45
A list of supported formats for one end of a filter link.
Definition: formats.h:64
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
Definition: pixfmt.h:266
An instance of a filter.
Definition: avfilter.h:304
int height
Definition: frame.h:230
char * x_expr_str
Definition: vf_zoompan.c:80
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:101
int ff_request_frame(AVFilterLink *link)
Request an input frame from the filter at the other end of the link.
Definition: avfilter.c:356
internal API functions
AVPixelFormat
Pixel format.
Definition: pixfmt.h:61
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_zoompan.c:219
AVFILTER_DEFINE_CLASS(zoompan)
simple arithmetic expression evaluator
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:58
double prev_zoom
Definition: vf_zoompan.c:85