af_channelsplit.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. /**
  19. * @file
  20. * Channel split filter
  21. *
  22. * Split an audio stream into per-channel streams.
  23. */
  24. #include "libavutil/attributes.h"
  25. #include "libavutil/channel_layout.h"
  26. #include "libavutil/internal.h"
  27. #include "libavutil/opt.h"
  28. #include "audio.h"
  29. #include "avfilter.h"
  30. #include "formats.h"
  31. #include "internal.h"
  32. typedef struct ChannelSplitContext {
  33. const AVClass *class;
  34. uint64_t channel_layout;
  35. char *channel_layout_str;
  36. } ChannelSplitContext;
  37. #define OFFSET(x) offsetof(ChannelSplitContext, x)
  38. #define A AV_OPT_FLAG_AUDIO_PARAM
  39. #define F AV_OPT_FLAG_FILTERING_PARAM
  40. static const AVOption channelsplit_options[] = {
  41. { "channel_layout", "Input channel layout.", OFFSET(channel_layout_str), AV_OPT_TYPE_STRING, { .str = "stereo" }, .flags = A|F },
  42. { NULL }
  43. };
  44. AVFILTER_DEFINE_CLASS(channelsplit);
  45. static av_cold int init(AVFilterContext *ctx)
  46. {
  47. ChannelSplitContext *s = ctx->priv;
  48. int nb_channels;
  49. int ret = 0, i;
  50. if (!(s->channel_layout = av_get_channel_layout(s->channel_layout_str))) {
  51. av_log(ctx, AV_LOG_ERROR, "Error parsing channel layout '%s'.\n",
  52. s->channel_layout_str);
  53. ret = AVERROR(EINVAL);
  54. goto fail;
  55. }
  56. nb_channels = av_get_channel_layout_nb_channels(s->channel_layout);
  57. for (i = 0; i < nb_channels; i++) {
  58. uint64_t channel = av_channel_layout_extract_channel(s->channel_layout, i);
  59. AVFilterPad pad = { 0 };
  60. pad.type = AVMEDIA_TYPE_AUDIO;
  61. pad.name = av_get_channel_name(channel);
  62. ff_insert_outpad(ctx, i, &pad);
  63. }
  64. fail:
  65. return ret;
  66. }
  67. static int query_formats(AVFilterContext *ctx)
  68. {
  69. ChannelSplitContext *s = ctx->priv;
  70. AVFilterChannelLayouts *in_layouts = NULL;
  71. int i;
  72. ff_set_common_formats (ctx, ff_planar_sample_fmts());
  73. ff_set_common_samplerates(ctx, ff_all_samplerates());
  74. ff_add_channel_layout(&in_layouts, s->channel_layout);
  75. ff_channel_layouts_ref(in_layouts, &ctx->inputs[0]->out_channel_layouts);
  76. for (i = 0; i < ctx->nb_outputs; i++) {
  77. AVFilterChannelLayouts *out_layouts = NULL;
  78. uint64_t channel = av_channel_layout_extract_channel(s->channel_layout, i);
  79. ff_add_channel_layout(&out_layouts, channel);
  80. ff_channel_layouts_ref(out_layouts, &ctx->outputs[i]->in_channel_layouts);
  81. }
  82. return 0;
  83. }
  84. static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
  85. {
  86. AVFilterContext *ctx = inlink->dst;
  87. int i, ret = 0;
  88. for (i = 0; i < ctx->nb_outputs; i++) {
  89. AVFrame *buf_out = av_frame_clone(buf);
  90. if (!buf_out) {
  91. ret = AVERROR(ENOMEM);
  92. break;
  93. }
  94. buf_out->data[0] = buf_out->extended_data[0] = buf_out->extended_data[i];
  95. buf_out->channel_layout =
  96. av_channel_layout_extract_channel(buf->channel_layout, i);
  97. av_frame_set_channels(buf_out, 1);
  98. ret = ff_filter_frame(ctx->outputs[i], buf_out);
  99. if (ret < 0)
  100. break;
  101. }
  102. av_frame_free(&buf);
  103. return ret;
  104. }
  105. static const AVFilterPad avfilter_af_channelsplit_inputs[] = {
  106. {
  107. .name = "default",
  108. .type = AVMEDIA_TYPE_AUDIO,
  109. .filter_frame = filter_frame,
  110. },
  111. { NULL }
  112. };
  113. AVFilter ff_af_channelsplit = {
  114. .name = "channelsplit",
  115. .description = NULL_IF_CONFIG_SMALL("Split audio into per-channel streams."),
  116. .priv_size = sizeof(ChannelSplitContext),
  117. .priv_class = &channelsplit_class,
  118. .init = init,
  119. .query_formats = query_formats,
  120. .inputs = avfilter_af_channelsplit_inputs,
  121. .outputs = NULL,
  122. .flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
  123. };