70 #define CHECK_VIDEO_PARAM_CHANGE(s, c, width, height, format)\
71 if (c->w != width || c->h != height || c->pix_fmt != format) {\
72 av_log(s, AV_LOG_INFO, "Changing frame properties on the fly is not supported by all filters.\n");\
75 #define CHECK_AUDIO_PARAM_CHANGE(s, c, srate, ch_layout, ch_count, format)\
76 if (c->sample_fmt != format || c->sample_rate != srate ||\
77 c->channel_layout != ch_layout || c->channels != ch_count) {\
78 av_log(s, AV_LOG_ERROR, "Changing frame properties on the fly is not supported.\n");\
79 return AVERROR(EINVAL);\
106 if (param->
width > 0)
159 av_log(ctx,
AV_LOG_ERROR,
"Layout indicates a different number of channels than actually present\n");
211 refcounted = !!frame->
buf[0];
296 #define OFFSET(x) offsetof(BufferSourceContext, x)
297 #define A AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_AUDIO_PARAM
298 #define V AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
305 #if FF_API_OLD_FILTER_OPTS
308 {
"time_base_num",
"deprecated, do not use",
OFFSET(time_base.num),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
V },
309 {
"time_base_den",
"deprecated, do not use",
OFFSET(time_base.den),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
V },
310 {
"sar_num",
"deprecated, do not use",
OFFSET(pixel_aspect.num),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
V },
311 {
"sar_den",
"deprecated, do not use",
OFFSET(pixel_aspect.den),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
V },
359 "Mismatching channel count %d and layout '%s' "
368 "channel layout specified\n");
379 "tb:%d/%d samplefmt:%s samplerate:%d chlayout:%s\n",
438 switch (link->
type) {
504 .description =
NULL_IF_CONFIG_SMALL(
"Buffer video frames, and make them accessible to the filterchain."),
512 .
outputs = avfilter_vsrc_buffer_outputs,
513 .priv_class = &buffer_class,
529 .description =
NULL_IF_CONFIG_SMALL(
"Buffer audio frames, and make them accessible to the filterchain."),
537 .
outputs = avfilter_asrc_abuffer_outputs,
538 .priv_class = &abuffer_class,
static enum AVPixelFormat pix_fmt
static void copy(const float *p1, float *p2, const int length)
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it...
This structure describes decoded (raw) audio or video data.
Main libavfilter public API header.
AVBufferRef * buf[AV_NUM_DATA_POINTERS]
AVBuffer references backing the data for this frame.
Memory buffer source API.
static av_cold int init(AVCodecContext *avctx)
int h
agreed upon image height
static av_cold int init_video(AVFilterContext *ctx)
static const AVFilterPad avfilter_vsrc_buffer_outputs[]
enum AVMediaType type
AVFilterPad type.
void av_frame_move_ref(AVFrame *dst, AVFrame *src)
Move everything contained in src to dst and reset src.
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
enum AVPixelFormat pix_fmt
static av_cold void uninit(AVFilterContext *ctx)
AVRational frame_rate
Video only, the frame rate of the input video.
int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int(*func)(void *, void *, int))
Feed data from a user-supplied callback to an AVFifoBuffer.
int av_get_channel_layout_nb_channels(uint64_t channel_layout)
Return the number of channels in the channel layout.
int got_format_from_params
struct AVFilterGraph * graph
filtergraph this filter belongs to
const char * name
Pad name.
AVRational sample_aspect_ratio
Video only, the sample (pixel) aspect ratio.
uint64_t av_get_channel_layout(const char *name)
Return a channel layout id that matches name, or 0 if no match is found.
int ff_filter_graph_run_once(AVFilterGraph *graph)
Run one round of processing on a filter graph.
static const AVOption abuffer_options[]
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
AVFilterPad * output_pads
array of output pads
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
int(* request_frame)(AVFilterLink *link)
Frame request callback.
AVRational time_base
The timebase to be used for the timestamps on the input frames.
static int poll_frame(AVFilterLink *link)
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
int av_fifo_space(const AVFifoBuffer *f)
Return the amount of space in bytes in the AVFifoBuffer, that is the amount of data you can write int...
static double av_q2d(AVRational a)
Convert an AVRational to a double.
#define AVERROR_EOF
End of file.
#define AV_LOG_VERBOSE
Detailed information.
int sample_rate
Audio only, the audio sampling rate in samples per secon.
static const AVFilterPad avfilter_asrc_abuffer_outputs[]
#define CHECK_AUDIO_PARAM_CHANGE(s, c, srate, ch_layout, ch_count, format)
A filter pad used for either input or output.
static void * av_x_if_null(const void *p, const void *x)
Return x default pointer in case p is NULL.
A link between two filters.
int width
width and height of the video frame
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
AVRational frame_rate
Frame rate of the stream on the link, or 1/0 if unknown or variable; if left to 0/0, will be automatically copied from the first input of the source filter if it exists.
uint64_t channel_layout
Audio only, the audio channel layout.
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
static int request_frame(AVFilterLink *link)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
void * priv
private data for use by the filter
int av_fifo_generic_read(AVFifoBuffer *f, void *dest, int buf_size, void(*func)(void *, void *, int))
Feed data from an AVFifoBuffer to a user-supplied callback.
AVRational time_base
Define the time base used by the PTS of the frames/samples which will pass through this link...
AVRational time_base
time_base to set in the output link
const char * av_get_sample_fmt_name(enum AVSampleFormat sample_fmt)
Return the name of sample_fmt, or NULL if sample_fmt is not recognized.
int format
video: the pixel format, value corresponds to enum AVPixelFormat audio: the sample format...
AVRational frame_rate
frame_rate to set in the output link
reference-counted frame API
uint64_t channel_layout
Channel layout of the audio data.
int w
agreed upon image width
common internal API header
AVFILTER_DEFINE_CLASS(buffer)
audio channel layout utility functions
This structure contains the parameters describing the frames that will be passed to this filter...
AVBufferRef * hw_frames_ctx
For hwaccel pixel formats, this should be a reference to the AVHWFramesContext describing the frames...
Immediately push the frame to the output.
AVFilterContext * src
source filter
static const AVFilterPad outputs[]
static av_cold int init_audio(AVFilterContext *ctx)
A list of supported channel layouts.
Keep a reference to the frame.
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
AVBufferRef * hw_frames_ctx
Video with a hwaccel pixel format only.
static const AVFilterPad inputs[]
AVSampleFormat
Audio sample formats.
int av_fifo_size(const AVFifoBuffer *f)
Return the amount of data in bytes in the AVFifoBuffer, that is the amount of data you can read from ...
static const AVOption buffer_options[]
int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size)
Resize an AVFifoBuffer.
a very simple circular buffer FIFO implementation
static int push_frame(AVFilterGraph *graph)
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
static const uint16_t channel_layouts[7]
Describe the class of an AVClass context structure.
int sample_rate
Sample rate of the audio data.
int av_frame_get_channels(const AVFrame *frame)
Rational number (pair of numerator and denominator).
static int config_props(AVFilterLink *link)
const char * name
Filter name.
AVRational sample_aspect_ratio
agreed upon sample aspect ratio
static int av_buffersrc_add_frame_internal(AVFilterContext *ctx, AVFrame *frame, int flags)
offset must point to two consecutive integers
unsigned av_buffersrc_get_nb_failed_requests(AVFilterContext *buffer_src)
Get the number of failed requests.
AVFilterLink ** outputs
array of pointers to output links
Do not check for format changes.
enum AVMediaType type
filter media type
AVBufferRef * hw_frames_ctx
int attribute_align_arg av_buffersrc_write_frame(AVFilterContext *ctx, const AVFrame *frame)
Add a frame to the buffer source.
A reference to a data buffer.
common internal and external API header
int av_buffersrc_parameters_set(AVFilterContext *ctx, AVBufferSrcParameters *param)
Initialize the buffersrc or abuffersrc filter with the provided parameters.
AVBufferRef * av_buffer_ref(AVBufferRef *buf)
Create a new reference to an AVBuffer.
uint64_t channel_layout
channel layout of current buffer (see libavutil/channel_layout.h)
int attribute_align_arg av_buffersrc_add_frame_flags(AVFilterContext *ctx, AVFrame *frame, int flags)
Add a frame to the buffer source.
unsigned nb_failed_requests
AVFifoBuffer * av_fifo_alloc(unsigned int size)
Initialize an AVFifoBuffer.
enum AVSampleFormat sample_fmt
static int query_formats(AVFilterContext *ctx)
AVBufferSrcParameters * av_buffersrc_parameters_alloc(void)
Allocate a new AVBufferSrcParameters instance.
void ff_avfilter_link_set_in_status(AVFilterLink *link, int status, int64_t pts)
Set the status field of a link from the source filter.
const AVFilterPad * outputs
List of outputs, terminated by a zeroed element.
void av_fifo_freep(AVFifoBuffer **f)
Free an AVFifoBuffer and reset pointer to NULL.
int width
Video only, the display dimensions of the input frames.
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
AVPixelFormat
Pixel format.
const AVFilter * filter
the AVFilter of which this is an instance
#define CHECK_VIDEO_PARAM_CHANGE(s, c, width, height, format)
#define AV_NOPTS_VALUE
Undefined timestamp value.
int attribute_align_arg av_buffersrc_add_frame(AVFilterContext *ctx, AVFrame *frame)
Add a frame to the buffer source.
char * channel_layout_str