FFmpeg
Classes | Macros | Typedefs | Functions | Variables
avf_concat.c File Reference

concat audio-video filter More...

#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/channel_layout.h"
#include "libavutil/opt.h"
#include "avfilter.h"
#include "bufferqueue.h"
#include "internal.h"
#include "video.h"
#include "audio.h"

Classes

struct  ConcatContext
 
struct  ConcatContext::concat_in
 

Macros

#define FF_BUFQUEUE_SIZE   256
 
#define TYPE_ALL   2
 
#define OFFSET(x)   offsetof(ConcatContext, x)
 
#define A   AV_OPT_FLAG_AUDIO_PARAM
 
#define F   AV_OPT_FLAG_FILTERING_PARAM
 
#define V   AV_OPT_FLAG_VIDEO_PARAM
 

Typedefs

typedef struct ConcatContext ConcatContext
 

Functions

 AVFILTER_DEFINE_CLASS (concat)
 

Variables

AVFilter ff_avf_concat
 

Detailed Description

concat audio-video filter

Variable Documentation

§ ff_avf_concat

AVFilter ff_avf_concat
Initial value:
= {
.name = "concat",
.description = NULL_IF_CONFIG_SMALL("Concatenate audio and video streams."),
.init = init,
.uninit = uninit,
.query_formats = query_formats,
.priv_size = sizeof(ConcatContext),
.inputs = NULL,
.outputs = NULL,
.priv_class = &concat_class,
.process_command = process_command,
}
#define AVFILTER_FLAG_DYNAMIC_INPUTS
The number of the filter inputs is not determined just by AVFilter.inputs.
Definition: avfilter.h:105
Definition: avf_concat.c:39
#define AVFILTER_FLAG_DYNAMIC_OUTPUTS
The number of the filter outputs is not determined just by AVFilter.outputs.
Definition: avfilter.h:111
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186