libavfilter/af_channelsplit.c
d6251368
 /*
d814a839
  * This file is part of FFmpeg.
d6251368
  *
d814a839
  * FFmpeg is free software; you can redistribute it and/or
d6251368
  * 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.
  *
d814a839
  * FFmpeg is distributed in the hope that it will be useful,
d6251368
  * 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
d814a839
  * License along with FFmpeg; if not, write to the Free Software
d6251368
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
  * @file
  * Channel split filter
  *
  * Split an audio stream into per-channel streams.
  */
 
093804a9
 #include "libavutil/attributes.h"
a903f8f0
 #include "libavutil/channel_layout.h"
1d9c2dc8
 #include "libavutil/internal.h"
d6251368
 #include "libavutil/opt.h"
 
 #include "audio.h"
 #include "avfilter.h"
 #include "formats.h"
 #include "internal.h"
 
 typedef struct ChannelSplitContext {
     const AVClass *class;
 
     uint64_t channel_layout;
     char    *channel_layout_str;
4e1307c0
     char    *channels_str;
 
     int      map[64];
d6251368
 } ChannelSplitContext;
 
 #define OFFSET(x) offsetof(ChannelSplitContext, x)
 #define A AV_OPT_FLAG_AUDIO_PARAM
42d621d1
 #define F AV_OPT_FLAG_FILTERING_PARAM
c17808ce
 static const AVOption channelsplit_options[] = {
42d621d1
     { "channel_layout", "Input channel layout.", OFFSET(channel_layout_str), AV_OPT_TYPE_STRING, { .str = "stereo" }, .flags = A|F },
4e1307c0
     { "channels",        "Channels to extract.", OFFSET(channels_str),       AV_OPT_TYPE_STRING, { .str = "all" },    .flags = A|F },
b211607b
     { NULL }
d6251368
 };
 
c17808ce
 AVFILTER_DEFINE_CLASS(channelsplit);
d6251368
 
093804a9
 static av_cold int init(AVFilterContext *ctx)
d6251368
 {
     ChannelSplitContext *s = ctx->priv;
4e1307c0
     uint64_t channel_layout;
d6251368
     int nb_channels;
4e1307c0
     int all = 0, ret = 0, i;
d6251368
 
     if (!(s->channel_layout = av_get_channel_layout(s->channel_layout_str))) {
         av_log(ctx, AV_LOG_ERROR, "Error parsing channel layout '%s'.\n",
                s->channel_layout_str);
         ret = AVERROR(EINVAL);
         goto fail;
     }
 
4e1307c0
 
     if (!strcmp(s->channels_str, "all")) {
         nb_channels = av_get_channel_layout_nb_channels(s->channel_layout);
         channel_layout = s->channel_layout;
         all = 1;
     } else {
         if ((ret = av_get_extended_channel_layout(s->channels_str, &channel_layout, &nb_channels)) < 0)
             return ret;
     }
 
d6251368
     for (i = 0; i < nb_channels; i++) {
4e1307c0
         uint64_t channel = av_channel_layout_extract_channel(channel_layout, i);
d6251368
         AVFilterPad pad  = { 0 };
 
         pad.type = AVMEDIA_TYPE_AUDIO;
         pad.name = av_get_channel_name(channel);
 
4e1307c0
         if (all) {
             s->map[i] = i;
         } else {
             if ((ret = av_get_channel_layout_channel_index(s->channel_layout, channel)) < 0) {
                 av_log(ctx, AV_LOG_ERROR, "Channel name '%s' not present in channel layout '%s'.\n",
                        av_get_channel_name(channel), s->channel_layout_str);
                 return ret;
             }
 
             s->map[i] = ret;
         }
 
730734d4
         if ((ret = ff_insert_outpad(ctx, i, &pad)) < 0) {
             return ret;
         }
d6251368
     }
 
 fail:
     return ret;
 }
 
 static int query_formats(AVFilterContext *ctx)
 {
     ChannelSplitContext *s = ctx->priv;
     AVFilterChannelLayouts *in_layouts = NULL;
6aaac24d
     int i, ret;
d6251368
 
6aaac24d
     if ((ret = ff_set_common_formats(ctx, ff_planar_sample_fmts())) < 0 ||
         (ret = ff_set_common_samplerates(ctx, ff_all_samplerates())) < 0)
         return ret;
d6251368
 
6aaac24d
     if ((ret = ff_add_channel_layout(&in_layouts, s->channel_layout)) < 0 ||
         (ret = ff_channel_layouts_ref(in_layouts, &ctx->inputs[0]->out_channel_layouts)) < 0)
         return ret;
d6251368
 
9baeff95
     for (i = 0; i < ctx->nb_outputs; i++) {
d6251368
         AVFilterChannelLayouts *out_layouts = NULL;
4e1307c0
         uint64_t channel = av_channel_layout_extract_channel(s->channel_layout, s->map[i]);
d6251368
 
6aaac24d
         if ((ret = ff_add_channel_layout(&out_layouts, channel)) < 0 ||
             (ret = ff_channel_layouts_ref(out_layouts, &ctx->outputs[i]->in_channel_layouts)) < 0)
             return ret;
d6251368
     }
 
     return 0;
 }
 
7e350379
 static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
d6251368
 {
     AVFilterContext *ctx = inlink->dst;
4e1307c0
     ChannelSplitContext *s = ctx->priv;
cd991462
     int i, ret = 0;
d6251368
 
9baeff95
     for (i = 0; i < ctx->nb_outputs; i++) {
7e350379
         AVFrame *buf_out = av_frame_clone(buf);
d6251368
 
cd991462
         if (!buf_out) {
             ret = AVERROR(ENOMEM);
             break;
         }
d6251368
 
4e1307c0
         buf_out->data[0] = buf_out->extended_data[0] = buf_out->extended_data[s->map[i]];
7e350379
         buf_out->channel_layout =
4e1307c0
             av_channel_layout_extract_channel(buf->channel_layout, s->map[i]);
6af050d7
         buf_out->channels = 1;
d6251368
 
cd7febd3
         ret = ff_filter_frame(ctx->outputs[i], buf_out);
cd991462
         if (ret < 0)
             break;
d6251368
     }
7e350379
     av_frame_free(&buf);
cd991462
     return ret;
d6251368
 }
 
568c70e7
 static const AVFilterPad avfilter_af_channelsplit_inputs[] = {
     {
b211607b
         .name         = "default",
         .type         = AVMEDIA_TYPE_AUDIO,
         .filter_frame = filter_frame,
568c70e7
     },
     { NULL }
 };
 
cd43ca04
 AVFilter ff_af_channelsplit = {
d6251368
     .name           = "channelsplit",
dfac37af
     .description    = NULL_IF_CONFIG_SMALL("Split audio into per-channel streams."),
d6251368
     .priv_size      = sizeof(ChannelSplitContext),
3f14febb
     .priv_class     = &channelsplit_class,
d6251368
     .init           = init,
     .query_formats  = query_formats,
b211607b
     .inputs         = avfilter_af_channelsplit_inputs,
     .outputs        = NULL,
     .flags          = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
d6251368
 };