AVFilterPad Struct Reference

A filter pad used for either input or output. More...

#include <internal.h>

Collaboration diagram for AVFilterPad:
Collaboration graph

Data Fields

const char * name
 Pad name. More...
 
enum AVMediaType type
 AVFilterPad type. More...
 
AVFrame *(* get_video_buffer )(AVFilterLink *link, int w, int h)
 Callback function to get a video buffer. More...
 
AVFrame *(* get_audio_buffer )(AVFilterLink *link, int nb_samples)
 Callback function to get an audio buffer. More...
 
int(* filter_frame )(AVFilterLink *link, AVFrame *frame)
 Filtering callback. More...
 
int(* poll_frame )(AVFilterLink *link)
 Frame poll callback. More...
 
int(* request_frame )(AVFilterLink *link)
 Frame request callback. More...
 
int(* config_props )(AVFilterLink *link)
 Link configuration callback. More...
 
int needs_fifo
 The filter expects a fifo to be inserted on its input link, typically because it has a delay. More...
 

Detailed Description

A filter pad used for either input or output.

Definition at line 57 of file libavfilter/internal.h.

Field Documentation

int(* AVFilterPad::config_props) (AVFilterLink *link)

Link configuration callback.

For output pads, this should set the link properties such as width/height. This should NOT set the format property - that is negotiated between filters by the filter system using the query_formats() callback before this function is called.

For input pads, this should check the properties of the link, and update the filter's internal state as necessary.

For both input and output filters, this should return zero on success, and another value on error.

Definition at line 132 of file libavfilter/internal.h.

Referenced by avfilter_config_links(), decimate_init(), fieldmatch_init(), and movie_common_init().

int(* AVFilterPad::filter_frame) (AVFilterLink *link, AVFrame *frame)

Filtering callback.

This is where a filter receives a frame with audio/video data and should do its processing.

Input pads only.

Returns
>= 0 on success, a negative AVERROR on error. This function must ensure that samplesref is properly unreferenced on error if it hasn't been passed on to another filter.

Definition at line 96 of file libavfilter/internal.h.

Referenced by avfilter_register(), ff_filter_frame_framed(), init(), and join_init().

AVFrame*(* AVFilterPad::get_audio_buffer) (AVFilterLink *link, int nb_samples)

Callback function to get an audio buffer.

If NULL, the filter system will use ff_default_get_audio_buffer().

Input audio pads only.

Definition at line 84 of file libavfilter/internal.h.

Referenced by ff_get_audio_buffer().

AVFrame*(* AVFilterPad::get_video_buffer) (AVFilterLink *link, int w, int h)

Callback function to get a video buffer.

If NULL, the filter system will use ff_default_get_video_buffer().

Input video pads only.

Definition at line 76 of file libavfilter/internal.h.

Referenced by ff_get_video_buffer().

int AVFilterPad::needs_fifo

The filter expects a fifo to be inserted on its input link, typically because it has a delay.

input pads only.

Definition at line 140 of file libavfilter/internal.h.

Referenced by graph_insert_fifos(), and join_init().

int(* AVFilterPad::poll_frame) (AVFilterLink *link)

Frame poll callback.

This returns the number of immediately available samples. It should return a positive value if the next request_frame() is guaranteed to return one frame (with no delay).

Defaults to just calling the source poll_frame() method.

Output pads only.

Definition at line 107 of file libavfilter/internal.h.

Referenced by ff_poll_frame().

int(* AVFilterPad::request_frame) (AVFilterLink *link)

Frame request callback.

A call to this should result in at least one frame being output over the given link. This should return zero on success, and another value on error.

Output pads only.

Definition at line 116 of file libavfilter/internal.h.

Referenced by av_buffersrc_add_frame_internal(), ff_request_frame(), init(), and movie_common_init().


The documentation for this struct was generated from the following file: