ffmpeg/libavfilter/af_channelsplit.c

238 lines
7.1 KiB
C
Raw Permalink Normal View History

2012-05-30 13:59:30 +02:00
/*
* This file is part of FFmpeg.
2012-05-30 13:59:30 +02:00
*
* FFmpeg is free software; you can redistribute it and/or
2012-05-30 13:59:30 +02:00
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* FFmpeg is distributed in the hope that it will be useful,
2012-05-30 13:59:30 +02:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
2012-05-30 13:59:30 +02:00
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* @file
* Channel split filter
*
* Split an audio stream into per-channel streams.
*/
#include "libavutil/attributes.h"
#include "libavutil/channel_layout.h"
#include "libavutil/internal.h"
#include "libavutil/mem.h"
2012-05-30 13:59:30 +02:00
#include "libavutil/opt.h"
#include "audio.h"
#include "avfilter.h"
#include "filters.h"
2012-05-30 13:59:30 +02:00
#include "formats.h"
#include "internal.h"
#define MAX_CH 64
2012-05-30 13:59:30 +02:00
typedef struct ChannelSplitContext {
const AVClass *class;
AVChannelLayout channel_layout;
char *channels_str;
int map[64];
2012-05-30 13:59:30 +02:00
} ChannelSplitContext;
#define OFFSET(x) offsetof(ChannelSplitContext, x)
#define A AV_OPT_FLAG_AUDIO_PARAM
#define F AV_OPT_FLAG_FILTERING_PARAM
static const AVOption channelsplit_options[] = {
2023-11-19 19:35:43 +01:00
{ "channel_layout", "Input channel layout.", OFFSET(channel_layout), AV_OPT_TYPE_CHLAYOUT, { .str = "stereo" }, .flags = A|F },
{ "channels", "Channels to extract.", OFFSET(channels_str), AV_OPT_TYPE_STRING, { .str = "all" }, .flags = A|F },
{ NULL }
2012-05-30 13:59:30 +02:00
};
AVFILTER_DEFINE_CLASS(channelsplit);
2012-05-30 13:59:30 +02:00
static av_cold int init(AVFilterContext *ctx)
2012-05-30 13:59:30 +02:00
{
ChannelSplitContext *s = ctx->priv;
AVChannelLayout channel_layout = { 0 };
int all = 0, ret = 0, i;
2012-05-30 13:59:30 +02:00
if (!strcmp(s->channels_str, "all")) {
if ((ret = av_channel_layout_copy(&channel_layout, &s->channel_layout)) < 0)
goto fail;
all = 1;
} else {
if ((ret = av_channel_layout_from_string(&channel_layout, s->channels_str)) < 0)
goto fail;
}
if (channel_layout.nb_channels > MAX_CH) {
av_log(ctx, AV_LOG_ERROR, "Too many channels\n");
goto fail;
}
for (i = 0; i < channel_layout.nb_channels; i++) {
enum AVChannel channel = av_channel_layout_channel_from_index(&channel_layout, i);
char buf[64];
AVFilterPad pad = { .flags = AVFILTERPAD_FLAG_FREE_NAME };
2012-05-30 13:59:30 +02:00
av_channel_name(buf, sizeof(buf), channel);
2012-05-30 13:59:30 +02:00
pad.type = AVMEDIA_TYPE_AUDIO;
pad.name = av_strdup(buf);
if (!pad.name) {
ret = AVERROR(ENOMEM);
goto fail;
}
2012-05-30 13:59:30 +02:00
if (all) {
s->map[i] = i;
} else {
2023-11-19 19:35:43 +01:00
char buf[128];
av_channel_layout_describe(&s->channel_layout, buf, sizeof(buf));
if ((ret = av_channel_layout_index_from_channel(&s->channel_layout, channel)) < 0) {
av_log(ctx, AV_LOG_ERROR, "Channel name '%s' not present in channel layout '%s'.\n",
2023-11-19 19:35:43 +01:00
pad.name, buf);
av_freep(&pad.name);
goto fail;
}
s->map[i] = ret;
}
if ((ret = ff_append_outpad(ctx, &pad)) < 0)
goto fail;
2012-05-30 13:59:30 +02:00
}
fail:
av_channel_layout_uninit(&channel_layout);
2012-05-30 13:59:30 +02:00
return ret;
}
static av_cold void uninit(AVFilterContext *ctx)
{
ChannelSplitContext *s = ctx->priv;
av_channel_layout_uninit(&s->channel_layout);
}
2012-05-30 13:59:30 +02:00
static int query_formats(AVFilterContext *ctx)
{
ChannelSplitContext *s = ctx->priv;
AVFilterChannelLayouts *in_layouts = NULL;
int i, ret;
2012-05-30 13:59:30 +02:00
if ((ret = ff_set_common_formats(ctx, ff_planar_sample_fmts())) < 0 ||
(ret = ff_set_common_all_samplerates(ctx)) < 0)
return ret;
2012-05-30 13:59:30 +02:00
if ((ret = ff_add_channel_layout(&in_layouts, &s->channel_layout)) < 0 ||
(ret = ff_channel_layouts_ref(in_layouts, &ctx->inputs[0]->outcfg.channel_layouts)) < 0)
return ret;
2012-05-30 13:59:30 +02:00
for (i = 0; i < ctx->nb_outputs; i++) {
AVChannelLayout channel_layout = { 0 };
2012-05-30 13:59:30 +02:00
AVFilterChannelLayouts *out_layouts = NULL;
enum AVChannel channel = av_channel_layout_channel_from_index(&s->channel_layout, s->map[i]);
2012-05-30 13:59:30 +02:00
if ((ret = av_channel_layout_from_mask(&channel_layout, 1ULL << channel)) < 0 ||
(ret = ff_add_channel_layout(&out_layouts, &channel_layout)) < 0 ||
(ret = ff_channel_layouts_ref(out_layouts, &ctx->outputs[i]->incfg.channel_layouts)) < 0)
return ret;
2012-05-30 13:59:30 +02:00
}
return 0;
}
static int filter_frame(AVFilterLink *outlink, AVFrame *buf)
2012-05-30 13:59:30 +02:00
{
AVFilterContext *ctx = outlink->src;
ChannelSplitContext *s = ctx->priv;
const int i = FF_OUTLINK_IDX(outlink);
enum AVChannel channel = av_channel_layout_channel_from_index(&buf->ch_layout, s->map[i]);
int ret;
2012-05-30 13:59:30 +02:00
AVFrame *buf_out = av_frame_clone(buf);
if (!buf_out)
return AVERROR(ENOMEM);
2012-05-30 13:59:30 +02:00
buf_out->data[0] = buf_out->extended_data[0] = buf_out->extended_data[s->map[i]];
ret = av_channel_layout_from_mask(&buf_out->ch_layout, 1ULL << channel);
if (ret < 0) {
av_frame_free(&buf_out);
return ret;
}
return ff_filter_frame(ctx->outputs[i], buf_out);
}
static int activate(AVFilterContext *ctx)
{
AVFilterLink *inlink = ctx->inputs[0];
int status, ret;
AVFrame *in;
int64_t pts;
for (int i = 0; i < ctx->nb_outputs; i++) {
FF_FILTER_FORWARD_STATUS_BACK_ALL(ctx->outputs[i], ctx);
}
2012-05-30 13:59:30 +02:00
ret = ff_inlink_consume_frame(inlink, &in);
if (ret < 0)
return ret;
if (ret > 0) {
for (int i = 0; i < ctx->nb_outputs; i++) {
if (ff_outlink_get_status(ctx->outputs[i]))
continue;
ret = filter_frame(ctx->outputs[i], in);
if (ret < 0)
break;
}
2012-05-30 13:59:30 +02:00
av_frame_free(&in);
if (ret < 0)
return ret;
2012-05-30 13:59:30 +02:00
}
if (ff_inlink_acknowledge_status(inlink, &status, &pts)) {
for (int i = 0; i < ctx->nb_outputs; i++) {
if (ff_outlink_get_status(ctx->outputs[i]))
continue;
ff_outlink_set_status(ctx->outputs[i], status, pts);
}
return 0;
}
for (int i = 0; i < ctx->nb_outputs; i++) {
if (ff_outlink_get_status(ctx->outputs[i]))
continue;
if (ff_outlink_frame_wanted(ctx->outputs[i])) {
ff_inlink_request_frame(inlink);
return 0;
}
}
return FFERROR_NOT_READY;
2012-05-30 13:59:30 +02:00
}
const AVFilter ff_af_channelsplit = {
2012-05-30 13:59:30 +02:00
.name = "channelsplit",
.description = NULL_IF_CONFIG_SMALL("Split audio into per-channel streams."),
2012-05-30 13:59:30 +02:00
.priv_size = sizeof(ChannelSplitContext),
.priv_class = &channelsplit_class,
2012-05-30 13:59:30 +02:00
.init = init,
.activate = activate,
.uninit = uninit,
FILTER_INPUTS(ff_audio_default_filterpad),
.outputs = NULL,
avfilter: Replace query_formats callback with union of list and callback If one looks at the many query_formats callbacks in existence, one will immediately recognize that there is one type of default callback for video and a slightly different default callback for audio: It is "return ff_set_common_formats_from_list(ctx, pix_fmts);" for video with a filter-specific pix_fmts list. For audio, it is the same with a filter-specific sample_fmts list together with ff_set_common_all_samplerates() and ff_set_common_all_channel_counts(). This commit allows to remove the boilerplate query_formats callbacks by replacing said callback with a union consisting the old callback and pointers for pixel and sample format arrays. For the not uncommon case in which these lists only contain a single entry (besides the sentinel) enum AVPixelFormat and enum AVSampleFormat fields are also added to the union to store them directly in the AVFilter, thereby avoiding a relocation. The state of said union will be contained in a new, dedicated AVFilter field (the nb_inputs and nb_outputs fields have been shrunk to uint8_t in order to create a hole for this new field; this is no problem, as the maximum of all the nb_inputs is four; for nb_outputs it is only two). The state's default value coincides with the earlier default of query_formats being unset, namely that the filter accepts all formats (and also sample rates and channel counts/layouts for audio) provided that these properties agree coincide for all inputs and outputs. By using different union members for audio and video filters the type-unsafety of using the same functions for audio and video lists will furthermore be more confined to formats.c than before. When the new fields are used, they will also avoid allocations: Currently something nearly equivalent to ff_default_query_formats() is called after every successful call to a query_formats callback; yet in the common case that the newly allocated AVFilterFormats are not used at all (namely if there are no free links) these newly allocated AVFilterFormats are freed again without ever being used. Filters no longer using the callback will not exhibit this any more. Reviewed-by: Paul B Mahol <onemda@gmail.com> Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
2021-09-27 12:07:35 +02:00
FILTER_QUERY_FUNC(query_formats),
.flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
2012-05-30 13:59:30 +02:00
};