Go to the documentation of this file.
49 #define OFFSET(x) offsetof(ChannelSplitContext, x)
50 #define A AV_OPT_FLAG_AUDIO_PARAM
51 #define F AV_OPT_FLAG_FILTERING_PARAM
53 {
"channel_layout",
"Input channel layout.",
OFFSET(channel_layout_str),
AV_OPT_TYPE_STRING, { .str =
"stereo" }, .flags =
A|
F },
64 int all = 0,
ret = 0,
i;
68 s->channel_layout_str);
73 if (!strcmp(
s->channels_str,
"all")) {
105 pad.
name,
s->channel_layout_str);
143 for (
i = 0;
i <
ctx->nb_outputs;
i++) {
173 #if FF_API_OLD_CHANNEL_LAYOUT
191 for (
int i = 0;
i <
ctx->nb_outputs;
i++) {
199 for (
int i = 0;
i <
ctx->nb_outputs;
i++) {
214 for (
int i = 0;
i <
ctx->nb_outputs;
i++) {
222 for (
int i = 0;
i <
ctx->nb_outputs;
i++) {
243 .
name =
"channelsplit",
246 .priv_class = &channelsplit_class,
#define FF_ENABLE_DEPRECATION_WARNINGS
A list of supported channel layouts.
they must not be accessed directly The fifo field contains the frames that are queued in the input for processing by the filter The status_in and status_out fields contains the queued status(EOF or error) of the link
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
The exact code depends on how similar the blocks are and how related they are to the and needs to apply these operations to the correct inlink or outlink if there are several Macros are available to factor that when no extra processing is inlink
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
This structure describes decoded (raw) audio or video data.
#define FILTER_QUERY_FUNC(func)
char * channel_layout_str
const char * name
Filter name.
int nb_channels
Number of channels in this layout.
A link between two filters.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
int av_channel_layout_copy(AVChannelLayout *dst, const AVChannelLayout *src)
Make a copy of a channel layout.
int ff_inlink_consume_frame(AVFilterLink *link, AVFrame **rframe)
Take a frame from the link's FIFO and update the link's stats.
#define FF_FILTER_FORWARD_STATUS_BACK_ALL(outlink, filter)
Forward the status on an output link to all input links.
AVChannelLayout ch_layout
Channel layout of the audio data.
attribute_deprecated int channels
number of audio channels, only used for audio.
A filter pad used for either input or output.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
attribute_deprecated uint64_t channel_layout
Channel layout of the audio data.
AVFILTER_DEFINE_CLASS(channelsplit)
static void ff_outlink_set_status(AVFilterLink *link, int status, int64_t pts)
Set the status field of a link from the source filter.
void ff_inlink_request_frame(AVFilterLink *link)
Mark that a frame is wanted on the link.
#define FF_OUTLINK_IDX(link)
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
#define FILTER_INPUTS(array)
Describe the class of an AVClass context structure.
static const AVFilterPad avfilter_af_channelsplit_inputs[]
static int filter_frame(AVFilterLink *outlink, AVFrame *buf)
static int activate(AVFilterContext *ctx)
int ff_inlink_acknowledge_status(AVFilterLink *link, int *rstatus, int64_t *rpts)
Test and acknowledge the change of status on the link.
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
#define AVFILTER_FLAG_DYNAMIC_OUTPUTS
The number of the filter outputs is not determined just by AVFilter.outputs.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
An AVChannelLayout holds information about the channel layout of audio data.
AVFilterContext * src
source filter
static av_cold int init(AVFilterContext *ctx)
int av_channel_name(char *buf, size_t buf_size, enum AVChannel channel_id)
Get a human readable string in an abbreviated form describing a given channel.
#define i(width, name, range_min, range_max)
static const AVOption channelsplit_options[]
uint8_t ** extended_data
pointers to the data planes/channels.
int flags
A combination of AVFILTERPAD_FLAG_* flags.
const char * name
Pad name.
int av_channel_layout_index_from_channel(const AVChannelLayout *channel_layout, enum AVChannel channel)
Get the index of a given channel in a channel layout.
enum AVChannel av_channel_layout_channel_from_index(const AVChannelLayout *channel_layout, unsigned int idx)
Get the channel with the given index in a channel layout.
FF_ENABLE_DEPRECATION_WARNINGS int av_channel_layout_from_mask(AVChannelLayout *channel_layout, uint64_t mask)
Initialize a native channel layout from a bitmask indicating which channels are present.
static av_cold void uninit(AVFilterContext *ctx)
enum AVMediaType type
AVFilterPad type.
int av_channel_layout_from_string(AVChannelLayout *channel_layout, const char *str)
Initialize a channel layout from a given string description.
AVChannelLayout channel_layout
int ff_outlink_get_status(AVFilterLink *link)
Get the status on an output link.
#define FF_DISABLE_DEPRECATION_WARNINGS
char * av_strdup(const char *s)
Duplicate a string.
int ff_append_outpad(AVFilterContext *f, AVFilterPad *p)
the definition of that something depends on the semantic of the filter The callback must examine the status of the filter s links and proceed accordingly The status of output links is stored in the status_in and status_out fields and tested by the ff_outlink_frame_wanted() function. If this function returns true
const AVFilter ff_af_channelsplit
#define AVFILTERPAD_FLAG_FREE_NAME
The pad's name is allocated and should be freed generically.
static int query_formats(AVFilterContext *ctx)
uint64_t av_channel_layout_extract_channel(uint64_t channel_layout, int index)
Get the channel with the given index in channel_layout.