68 #define CHECK_VIDEO_PARAM_CHANGE(s, c, width, height, format)\
69 if (c->w != width || c->h != height || c->pix_fmt != format) {\
70 av_log(s, AV_LOG_INFO, "Changing frame properties on the fly is not supported by all filters.\n");\
73 #define CHECK_AUDIO_PARAM_CHANGE(s, c, srate, ch_layout, ch_count, format)\
74 if (c->sample_fmt != format || c->sample_rate != srate ||\
75 c->channel_layout != ch_layout || c->channels != ch_count) {\
76 av_log(s, AV_LOG_ERROR, "Changing frame properties on the fly is not supported.\n");\
77 return AVERROR(EINVAL);\
101 av_log(ctx,
AV_LOG_ERROR,
"Layout indicates a different number of channels than actually present\n");
133 refcounted = !!frame->
buf[0];
187 #if FF_API_AVFILTERBUFFER
191 AVFilterBufferRef *
buf = opaque;
193 avfilter_unref_buffer(buf);
197 static void compat_unref_buffer(
void *opaque,
uint8_t *data)
211 int ret = 0, planes, i;
231 if ((ret = avfilter_copy_buf_props(frame, buf)) < 0)
235 #define
WRAP_PLANE(ref_out, data, data_size) \
256 if (!desc || planes <= 0) {
261 for (i = 0; i < planes; i++) {
271 planes = planar ? channels : 1;
304 return av_buffersrc_add_ref(ctx, buf, 0);
333 #define OFFSET(x) offsetof(BufferSourceContext, x)
334 #define A AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_AUDIO_PARAM
335 #define V AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
342 #if FF_API_OLD_FILTER_OPTS
345 {
"time_base_num",
"deprecated, do not use",
OFFSET(time_base.num),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
V },
346 {
"time_base_den",
"deprecated, do not use",
OFFSET(time_base.den),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
V },
347 {
"sar_num",
"deprecated, do not use",
OFFSET(pixel_aspect.num),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
V },
348 {
"sar_den",
"deprecated, do not use",
OFFSET(pixel_aspect.den),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
V },
394 "Mismatching channel count %d and layout '%s' "
403 "channel layout specified\n");
414 "tb:%d/%d samplefmt:%s samplerate:%d chlayout:%s\n",
468 switch (link->
type) {
525 .description =
NULL_IF_CONFIG_SMALL(
"Buffer video frames, and make them accessible to the filterchain."),
533 .
outputs = avfilter_vsrc_buffer_outputs,
534 .priv_class = &buffer_class,
550 .description =
NULL_IF_CONFIG_SMALL(
"Buffer audio frames, and make them accessible to the filterchain."),
558 .
outputs = avfilter_asrc_abuffer_outputs,
559 .priv_class = &abuffer_class,
#define WRAP_PLANE(ref_out, data, data_size)
static enum AVPixelFormat pix_fmt
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it...
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
This structure describes decoded (raw) audio or video data.
ptrdiff_t const GLvoid * data
static const AVFilterPad outputs[]
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
#define AV_NOWARN_DEPRECATED(code)
Disable warnings about deprecated features This is useful for sections of code kept for backward comp...
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
int nb_extended_buf
Number of elements in extended_buf.
static av_cold int init_video(AVFilterContext *ctx)
static const AVFilterPad avfilter_vsrc_buffer_outputs[]
void av_frame_move_ref(AVFrame *dst, AVFrame *src)
Move everything contained in src to dst and reset src.
static enum AVSampleFormat formats[]
enum AVPixelFormat pix_fmt
static av_cold void uninit(AVFilterContext *ctx)
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.
Do not check for format changes.
const char * name
Pad name.
uint64_t av_get_channel_layout(const char *name)
Return a channel layout id that matches name, or 0 if no match is found.
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.
libavcodec/libavfilter gluing utilities
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...
Keep a reference to the frame.
int attribute_align_arg av_buffersrc_add_frame_flags(AVFilterContext *ctx, AVFrame *frame, int flags)
Add a frame to the buffer source.
static double av_q2d(AVRational a)
Convert rational to double.
#define AVERROR_EOF
End of file.
#define AV_LOG_VERBOSE
Detailed information.
static const AVFilterPad avfilter_asrc_abuffer_outputs[]
#define AV_BUFFER_FLAG_READONLY
Always treat the buffer as read-only, even when it has only one reference.
static void copy(LZOContext *c, int cnt)
Copies bytes from input to output buffer with checking.
#define CHECK_AUDIO_PARAM_CHANGE(s, c, srate, ch_layout, ch_count, format)
int av_sample_fmt_is_planar(enum AVSampleFormat sample_fmt)
Check if the sample format is planar.
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.
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
AVRational frame_rate
Frame rate of the stream on the link, or 1/0 if unknown; if left to 0/0, will be automatically be cop...
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
AVBufferRef * av_buffer_create(uint8_t *data, int size, void(*free)(void *opaque, uint8_t *data), void *opaque, int flags)
Create an AVBuffer from an existing array.
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.
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
AVBufferRef ** extended_buf
For planar audio which requires more than AV_NUM_DATA_POINTERS AVBufferRef pointers, this array will hold all the references which cannot fit into AVFrame.buf.
AVFilterContext * src
source filter
static av_cold int init_audio(AVFilterContext *ctx)
#define FF_ARRAY_ELEMS(a)
A list of supported channel layouts.
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
int attribute_align_arg av_buffersrc_write_frame(AVFilterContext *ctx, const AVFrame *frame)
Add a frame to the buffer source.
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 linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size)
Resize an AVFifoBuffer.
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
a very simple circular buffer FIFO implementation
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)
static const AVFilterPad inputs[]
rational number numerator/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
int attribute_align_arg av_buffersrc_add_frame(AVFilterContext *ctx, AVFrame *frame)
Add a frame to the buffer source.
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
enum AVMediaType type
filter media type
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
A reference to a data buffer.
#define FF_DISABLE_DEPRECATION_WARNINGS
common internal and external API header
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)
unsigned nb_failed_requests
AVFifoBuffer * av_fifo_alloc(unsigned int size)
Initialize an AVFifoBuffer.
#define FF_ENABLE_DEPRECATION_WARNINGS
enum AVSampleFormat sample_fmt
static int query_formats(AVFilterContext *ctx)
Immediately push the frame to the output.
static void * av_mallocz_array(size_t nmemb, size_t size)
void av_fifo_freep(AVFifoBuffer **f)
Free an AVFifoBuffer and reset pointer to NULL.
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.
uint8_t ** extended_data
pointers to the data planes/channels.
AVPixelFormat
Pixel format.
#define CHECK_VIDEO_PARAM_CHANGE(s, c, width, height, format)
static void compat_free_buffer(void *opaque, uint8_t *data)
char * channel_layout_str