FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
vf_stack.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 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/avstring.h"
22 #include "libavutil/imgutils.h"
23 #include "libavutil/opt.h"
24 #include "libavutil/pixdesc.h"
25 
26 #include "avfilter.h"
27 #include "formats.h"
28 #include "internal.h"
29 #include "framesync.h"
30 #include "video.h"
31 
32 typedef struct StackItem {
33  int x[4], y[4];
34  int linesize[4];
35  int height[4];
36 } StackItem;
37 
38 typedef struct StackContext {
39  const AVClass *class;
41  int nb_inputs;
42  char *layout;
43  int shortest;
46  int nb_planes;
47 
51 } StackContext;
52 
54 {
56  int fmt, ret;
57 
58  for (fmt = 0; av_pix_fmt_desc_get(fmt); fmt++) {
60  if (!(desc->flags & AV_PIX_FMT_FLAG_PAL ||
63  (ret = ff_add_format(&pix_fmts, fmt)) < 0)
64  return ret;
65  }
66 
67  return ff_set_common_formats(ctx, pix_fmts);
68 }
69 
71 {
72  StackContext *s = ctx->priv;
73  int i, ret;
74 
75  if (!strcmp(ctx->filter->name, "vstack"))
76  s->is_vertical = 1;
77 
78  if (!strcmp(ctx->filter->name, "hstack"))
79  s->is_horizontal = 1;
80 
81  s->frames = av_calloc(s->nb_inputs, sizeof(*s->frames));
82  if (!s->frames)
83  return AVERROR(ENOMEM);
84 
85  if (!strcmp(ctx->filter->name, "xstack")) {
86  s->items = av_calloc(s->nb_inputs, sizeof(*s->items));
87  if (!s->items)
88  return AVERROR(ENOMEM);
89  }
90 
91  for (i = 0; i < s->nb_inputs; i++) {
92  AVFilterPad pad = { 0 };
93 
95  pad.name = av_asprintf("input%d", i);
96  if (!pad.name)
97  return AVERROR(ENOMEM);
98 
99  if ((ret = ff_insert_inpad(ctx, i, &pad)) < 0) {
100  av_freep(&pad.name);
101  return ret;
102  }
103  }
104 
105  return 0;
106 }
107 
109 {
110  AVFilterContext *ctx = fs->parent;
111  AVFilterLink *outlink = ctx->outputs[0];
112  StackContext *s = fs->opaque;
113  AVFrame **in = s->frames;
114  AVFrame *out;
115  int i, p, ret, offset[4] = { 0 };
116 
117  for (i = 0; i < s->nb_inputs; i++) {
118  if ((ret = ff_framesync_get_frame(&s->fs, i, &in[i], 0)) < 0)
119  return ret;
120  }
121 
122  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
123  if (!out)
124  return AVERROR(ENOMEM);
125  out->pts = av_rescale_q(s->fs.pts, s->fs.time_base, outlink->time_base);
127 
128  for (i = 0; i < s->nb_inputs; i++) {
129  AVFilterLink *inlink = ctx->inputs[i];
130  int linesize[4];
131  int height[4];
132 
133  if (s->is_horizontal || s->is_vertical) {
134  if ((ret = av_image_fill_linesizes(linesize, inlink->format, inlink->w)) < 0) {
135  av_frame_free(&out);
136  return ret;
137  }
138 
139  height[1] = height[2] = AV_CEIL_RSHIFT(inlink->h, s->desc->log2_chroma_h);
140  height[0] = height[3] = inlink->h;
141  }
142 
143  for (p = 0; p < s->nb_planes; p++) {
144  if (s->is_vertical) {
145  av_image_copy_plane(out->data[p] + offset[p] * out->linesize[p],
146  out->linesize[p],
147  in[i]->data[p],
148  in[i]->linesize[p],
149  linesize[p], height[p]);
150  offset[p] += height[p];
151  } else if (s->is_horizontal) {
152  av_image_copy_plane(out->data[p] + offset[p],
153  out->linesize[p],
154  in[i]->data[p],
155  in[i]->linesize[p],
156  linesize[p], height[p]);
157  offset[p] += linesize[p];
158  } else {
159  StackItem *item = &s->items[i];
160 
161  av_image_copy_plane(out->data[p] + out->linesize[p] * item->y[p] + item->x[p],
162  out->linesize[p],
163  in[i]->data[p],
164  in[i]->linesize[p],
165  item->linesize[p], item->height[p]);
166  }
167  }
168  }
169 
170  return ff_filter_frame(outlink, out);
171 }
172 
173 static int config_output(AVFilterLink *outlink)
174 {
175  AVFilterContext *ctx = outlink->src;
176  StackContext *s = ctx->priv;
177  AVRational time_base = ctx->inputs[0]->time_base;
178  AVRational frame_rate = ctx->inputs[0]->frame_rate;
179  AVRational sar = ctx->inputs[0]->sample_aspect_ratio;
180  int height = ctx->inputs[0]->h;
181  int width = ctx->inputs[0]->w;
182  FFFrameSyncIn *in;
183  int i, ret;
184 
185  s->desc = av_pix_fmt_desc_get(outlink->format);
186  if (!s->desc)
187  return AVERROR_BUG;
188 
189  if (s->is_vertical) {
190  for (i = 1; i < s->nb_inputs; i++) {
191  if (ctx->inputs[i]->w != width) {
192  av_log(ctx, AV_LOG_ERROR, "Input %d width %d does not match input %d width %d.\n", i, ctx->inputs[i]->w, 0, width);
193  return AVERROR(EINVAL);
194  }
195  height += ctx->inputs[i]->h;
196  }
197  } else if (s->is_horizontal) {
198  for (i = 1; i < s->nb_inputs; i++) {
199  if (ctx->inputs[i]->h != height) {
200  av_log(ctx, AV_LOG_ERROR, "Input %d height %d does not match input %d height %d.\n", i, ctx->inputs[i]->h, 0, height);
201  return AVERROR(EINVAL);
202  }
203  width += ctx->inputs[i]->w;
204  }
205  } else {
206  char *arg, *p = s->layout, *saveptr = NULL;
207  char *arg2, *p2, *saveptr2 = NULL;
208  char *arg3, *p3, *saveptr3 = NULL;
209  int inw, inh, size;
210 
211  for (i = 0; i < s->nb_inputs; i++) {
212  AVFilterLink *inlink = ctx->inputs[i];
213  StackItem *item = &s->items[i];
214 
215  if (!(arg = av_strtok(p, "|", &saveptr)))
216  return AVERROR(EINVAL);
217 
218  p = NULL;
219 
220  if ((ret = av_image_fill_linesizes(item->linesize, inlink->format, inlink->w)) < 0) {
221  return ret;
222  }
223 
224  item->height[1] = item->height[2] = AV_CEIL_RSHIFT(inlink->h, s->desc->log2_chroma_h);
225  item->height[0] = item->height[3] = inlink->h;
226 
227  p2 = arg;
228  inw = inh = 0;
229 
230  for (int j = 0; j < 2; j++) {
231  if (!(arg2 = av_strtok(p2, "_", &saveptr2)))
232  return AVERROR(EINVAL);
233 
234  p2 = NULL;
235  p3 = arg2;
236  while ((arg3 = av_strtok(p3, "+", &saveptr3))) {
237  p3 = NULL;
238  if (sscanf(arg3, "w%d", &size) == 1) {
239  if (size == i || size < 0 || size >= s->nb_inputs)
240  return AVERROR(EINVAL);
241 
242  if (!j)
243  inw += ctx->inputs[size]->w;
244  else
245  inh += ctx->inputs[size]->w;
246  } else if (sscanf(arg3, "h%d", &size) == 1) {
247  if (size == i || size < 0 || size >= s->nb_inputs)
248  return AVERROR(EINVAL);
249 
250  if (!j)
251  inw += ctx->inputs[size]->h;
252  else
253  inh += ctx->inputs[size]->h;
254  } else if (sscanf(arg3, "%d", &size) == 1) {
255  if (size < 0)
256  return AVERROR(EINVAL);
257 
258  if (!j)
259  inw += size;
260  else
261  inh += size;
262  } else {
263  return AVERROR(EINVAL);
264  }
265  }
266  }
267 
268  if ((ret = av_image_fill_linesizes(item->x, inlink->format, inw)) < 0) {
269  return ret;
270  }
271 
272  item->y[1] = item->y[2] = AV_CEIL_RSHIFT(inh, s->desc->log2_chroma_h);
273  item->y[0] = item->y[3] = inh;
274 
275  width = FFMAX(width, inlink->w + inw);
276  height = FFMAX(height, inlink->h + inh);
277  }
278  }
279 
281 
282  outlink->w = width;
283  outlink->h = height;
284  outlink->time_base = time_base;
285  outlink->frame_rate = frame_rate;
286  outlink->sample_aspect_ratio = sar;
287 
288  if ((ret = ff_framesync_init(&s->fs, ctx, s->nb_inputs)) < 0)
289  return ret;
290 
291  in = s->fs.in;
292  s->fs.opaque = s;
294 
295  for (i = 0; i < s->nb_inputs; i++) {
296  AVFilterLink *inlink = ctx->inputs[i];
297 
298  in[i].time_base = inlink->time_base;
299  in[i].sync = 1;
300  in[i].before = EXT_STOP;
301  in[i].after = s->shortest ? EXT_STOP : EXT_INFINITY;
302  }
303 
304  return ff_framesync_configure(&s->fs);
305 }
306 
308 {
309  StackContext *s = ctx->priv;
310  int i;
311 
312  ff_framesync_uninit(&s->fs);
313  av_freep(&s->frames);
314  av_freep(&s->items);
315 
316  for (i = 0; i < ctx->nb_inputs; i++)
317  av_freep(&ctx->input_pads[i].name);
318 }
319 
321 {
322  StackContext *s = ctx->priv;
323  return ff_framesync_activate(&s->fs);
324 }
325 
326 #define OFFSET(x) offsetof(StackContext, x)
327 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM
328 static const AVOption stack_options[] = {
329  { "inputs", "set number of inputs", OFFSET(nb_inputs), AV_OPT_TYPE_INT, {.i64=2}, 2, INT_MAX, .flags = FLAGS },
330  { "shortest", "force termination when the shortest input terminates", OFFSET(shortest), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, .flags = FLAGS },
331  { NULL },
332 };
333 
334 static const AVFilterPad outputs[] = {
335  {
336  .name = "default",
337  .type = AVMEDIA_TYPE_VIDEO,
338  .config_props = config_output,
339  },
340  { NULL }
341 };
342 
343 #if CONFIG_HSTACK_FILTER
344 
345 #define hstack_options stack_options
346 AVFILTER_DEFINE_CLASS(hstack);
347 
349  .name = "hstack",
350  .description = NULL_IF_CONFIG_SMALL("Stack video inputs horizontally."),
351  .priv_size = sizeof(StackContext),
352  .priv_class = &hstack_class,
354  .outputs = outputs,
355  .init = init,
356  .uninit = uninit,
357  .activate = activate,
359 };
360 
361 #endif /* CONFIG_HSTACK_FILTER */
362 
363 #if CONFIG_VSTACK_FILTER
364 
365 #define vstack_options stack_options
366 AVFILTER_DEFINE_CLASS(vstack);
367 
369  .name = "vstack",
370  .description = NULL_IF_CONFIG_SMALL("Stack video inputs vertically."),
371  .priv_size = sizeof(StackContext),
372  .priv_class = &vstack_class,
374  .outputs = outputs,
375  .init = init,
376  .uninit = uninit,
377  .activate = activate,
379 };
380 
381 #endif /* CONFIG_VSTACK_FILTER */
382 
383 #if CONFIG_XSTACK_FILTER
384 
385 static const AVOption xstack_options[] = {
386  { "inputs", "set number of inputs", OFFSET(nb_inputs), AV_OPT_TYPE_INT, {.i64=2}, 2, INT_MAX, .flags = FLAGS },
387  { "layout", "set custom layout", OFFSET(layout), AV_OPT_TYPE_STRING, {.str="0_0|w0_0"}, 0, 0, .flags = FLAGS },
388  { "shortest", "force termination when the shortest input terminates", OFFSET(shortest), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, .flags = FLAGS },
389  { NULL },
390 };
391 
392 AVFILTER_DEFINE_CLASS(xstack);
393 
395  .name = "xstack",
396  .description = NULL_IF_CONFIG_SMALL("Stack video inputs into custom layout."),
397  .priv_size = sizeof(StackContext),
398  .priv_class = &xstack_class,
400  .outputs = outputs,
401  .init = init,
402  .uninit = uninit,
403  .activate = activate,
405 };
406 
407 #endif /* CONFIG_XSTACK_FILTER */
#define AV_PIX_FMT_FLAG_PAL
Pixel format has a palette in data[1], values are indexes in this palette.
Definition: pixdesc.h:132
#define NULL
Definition: coverity.c:32
#define FLAGS
Definition: vf_stack.c:327
char * layout
Definition: vf_stack.c:42
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2446
This structure describes decoded (raw) audio or video data.
Definition: frame.h:226
AVOption.
Definition: opt.h:246
const char * fmt
Definition: avisynth_c.h:769
int shortest
Definition: vf_stack.c:43
misc image utilities
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2486
Main libavfilter public API header.
const char * desc
Definition: nvenc.c:65
int(* on_event)(struct FFFrameSync *fs)
Callback called when a frame event is ready.
Definition: framesync.h:172
#define AVFILTER_FLAG_DYNAMIC_INPUTS
The number of the filter inputs is not determined just by AVFilter.inputs.
Definition: avfilter.h:105
int is_horizontal
Definition: vf_stack.c:45
AVFilter ff_vf_hstack
enum AVMediaType type
AVFilterPad type.
Definition: internal.h:65
int ff_framesync_configure(FFFrameSync *fs)
Configure a frame sync structure.
Definition: framesync.c:117
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:99
int64_t pts
Timestamp of the current event.
Definition: framesync.h:167
int height[4]
Definition: vf_stack.c:35
enum FFFrameSyncExtMode before
Extrapolation mode for timestamps before the first frame.
Definition: framesync.h:86
void * av_calloc(size_t nmemb, size_t size)
Non-inlined equivalent of av_mallocz_array().
Definition: mem.c:244
const char * name
Pad name.
Definition: internal.h:60
AVFilterContext * parent
Parent filter context.
Definition: framesync.h:152
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:346
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1080
#define av_cold
Definition: attributes.h:82
static int query_formats(AVFilterContext *ctx)
Definition: vf_stack.c:53
#define fs(width, name, subs,...)
Definition: cbs_vp9.c:259
StackItem * items
Definition: vf_stack.c:48
AVOptions.
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:319
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_stack.c:307
FFFrameSyncIn * in
Pointer to array of inputs.
Definition: framesync.h:203
#define height
enum FFFrameSyncExtMode after
Extrapolation mode for timestamps after the last frame.
Definition: framesync.h:91
ptrdiff_t size
Definition: opengl_enc.c:101
Input stream structure.
Definition: framesync.h:81
#define av_log(a,...)
A filter pad used for either input or output.
Definition: internal.h:54
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
AVFilter ff_vf_xstack
AVFilterPad * input_pads
array of input pads
Definition: avfilter.h:345
#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
static int config_output(AVFilterLink *outlink)
Definition: vf_stack.c:173
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:101
void ff_framesync_uninit(FFFrameSync *fs)
Free all memory currently allocated.
Definition: framesync.c:293
static const AVOption stack_options[]
Definition: vf_stack.c:328
Frame sync structure.
Definition: framesync.h:146
#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:202
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
void * priv
private data for use by the filter
Definition: avfilter.h:353
const char * arg
Definition: jacosubdec.c:66
AVFilter ff_vf_vstack
#define AV_PIX_FMT_FLAG_HWACCEL
Pixel format is an HW accelerated format.
Definition: pixdesc.h:140
AVRational time_base
Time base for the incoming frames.
Definition: framesync.h:96
int ff_add_format(AVFilterFormats **avff, int64_t fmt)
Add fmt to the list of media formats contained in *avff.
Definition: formats.c:337
int ff_framesync_activate(FFFrameSync *fs)
Examine the frames in the filter's input and try to produce output.
Definition: framesync.c:344
static const uint8_t offset[127][2]
Definition: vf_spp.c:92
#define FFMAX(a, b)
Definition: common.h:94
char * av_asprintf(const char *fmt,...)
Definition: avstring.c:113
uint64_t flags
Combination of AV_PIX_FMT_FLAG_...
Definition: pixdesc.h:106
unsigned nb_inputs
number of input pads
Definition: avfilter.h:347
AVFrame ** frames
Definition: vf_stack.c:49
#define width
const AVPixFmtDescriptor * desc
Definition: vf_stack.c:40
#define OFFSET(x)
Definition: vf_stack.c:326
AVFormatContext * ctx
Definition: movenc.c:48
AVRational time_base
Time base for the output events.
Definition: framesync.h:162
#define s(width, name)
Definition: cbs_vp9.c:257
void * opaque
Opaque pointer, not used by the API.
Definition: framesync.h:177
int nb_planes
Definition: vf_stack.c:46
FFFrameSync fs
Definition: vf_stack.c:50
Extend the frame to infinity.
Definition: framesync.h:75
static av_cold int init(AVFilterContext *ctx)
Definition: vf_stack.c:70
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:257
int ff_framesync_init(FFFrameSync *fs, AVFilterContext *parent, unsigned nb_in)
Initialize a frame sync structure.
Definition: framesync.c:77
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
int nb_inputs
Definition: vf_stack.c:41
AVRational sample_aspect_ratio
Sample aspect ratio for the video frame, 0/1 if unknown/unspecified.
Definition: frame.h:314
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
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
Definition: error.h:50
unsigned sync
Synchronization level: frames on input at the highest sync level will generate output frame events...
Definition: framesync.h:139
Describe the class of an AVClass context structure.
Definition: log.h:67
Filter definition.
Definition: avfilter.h:144
int av_image_fill_linesizes(int linesizes[4], enum AVPixelFormat pix_fmt, int width)
Fill plane linesizes for an image with pixel format pix_fmt and width width.
Definition: imgutils.c:89
Rational number (pair of numerator and denominator).
Definition: rational.h:58
const char * name
Filter name.
Definition: avfilter.h:148
#define AV_PIX_FMT_FLAG_BITSTREAM
All values of a component are bit-wise packed end to end.
Definition: pixdesc.h:136
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:350
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:266
#define flags(name, subs,...)
Definition: cbs_av1.c:596
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:240
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok()...
Definition: avstring.c:184
static int process_frame(FFFrameSync *fs)
Definition: vf_stack.c:108
static const AVFilterPad outputs[]
Definition: vf_stack.c:334
Completely stop all streams with this one.
Definition: framesync.h:65
#define AVFILTER_DEFINE_CLASS(fname)
Definition: internal.h:334
int is_vertical
Definition: vf_stack.c:44
int linesize[4]
Definition: vf_stack.c:34
A list of supported formats for one end of a filter link.
Definition: formats.h:64
uint64_t layout
An instance of a filter.
Definition: avfilter.h:338
FILE * out
Definition: movenc.c:54
#define av_freep(p)
static int activate(AVFilterContext *ctx)
Definition: vf_stack.c:320
void av_image_copy_plane(uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int bytewidth, int height)
Copy image plane from src to dst.
Definition: imgutils.c:338
int x[4]
Definition: vf_stack.c:33
internal API functions
int ff_framesync_get_frame(FFFrameSync *fs, unsigned in, AVFrame **rframe, unsigned get)
Get the current frame in an input.
Definition: framesync.c:256
int y[4]
Definition: vf_stack.c:33
const AVFilter * filter
the AVFilter of which this is an instance
Definition: avfilter.h:341
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:58
static int ff_insert_inpad(AVFilterContext *f, unsigned index, AVFilterPad *p)
Insert a new input pad for the filter.
Definition: internal.h:277