af_channelsplit.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav 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. * Libav 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 Libav; 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. static const AVOption options[] = {
  40. { "channel_layout", "Input channel layout.", OFFSET(channel_layout_str), AV_OPT_TYPE_STRING, { .str = "stereo" }, .flags = A },
  41. { NULL },
  42. };
  43. static const AVClass channelsplit_class = {
  44. .class_name = "channelsplit filter",
  45. .item_name = av_default_item_name,
  46. .option = options,
  47. .version = LIBAVUTIL_VERSION_INT,
  48. };
  49. static av_cold int init(AVFilterContext *ctx)
  50. {
  51. ChannelSplitContext *s = ctx->priv;
  52. int nb_channels;
  53. int ret = 0, i;
  54. if (!(s->channel_layout = av_get_channel_layout(s->channel_layout_str))) {
  55. av_log(ctx, AV_LOG_ERROR, "Error parsing channel layout '%s'.\n",
  56. s->channel_layout_str);
  57. ret = AVERROR(EINVAL);
  58. goto fail;
  59. }
  60. nb_channels = av_get_channel_layout_nb_channels(s->channel_layout);
  61. for (i = 0; i < nb_channels; i++) {
  62. uint64_t channel = av_channel_layout_extract_channel(s->channel_layout, i);
  63. AVFilterPad pad = { 0 };
  64. pad.type = AVMEDIA_TYPE_AUDIO;
  65. pad.name = av_get_channel_name(channel);
  66. ff_insert_outpad(ctx, i, &pad);
  67. }
  68. fail:
  69. return ret;
  70. }
  71. static int query_formats(AVFilterContext *ctx)
  72. {
  73. ChannelSplitContext *s = ctx->priv;
  74. AVFilterChannelLayouts *in_layouts = NULL;
  75. int i;
  76. ff_set_common_formats (ctx, ff_planar_sample_fmts());
  77. ff_set_common_samplerates(ctx, ff_all_samplerates());
  78. ff_add_channel_layout(&in_layouts, s->channel_layout);
  79. ff_channel_layouts_ref(in_layouts, &ctx->inputs[0]->out_channel_layouts);
  80. for (i = 0; i < ctx->nb_outputs; i++) {
  81. AVFilterChannelLayouts *out_layouts = NULL;
  82. uint64_t channel = av_channel_layout_extract_channel(s->channel_layout, i);
  83. ff_add_channel_layout(&out_layouts, channel);
  84. ff_channel_layouts_ref(out_layouts, &ctx->outputs[i]->in_channel_layouts);
  85. }
  86. return 0;
  87. }
  88. static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
  89. {
  90. AVFilterContext *ctx = inlink->dst;
  91. int i, ret = 0;
  92. for (i = 0; i < ctx->nb_outputs; i++) {
  93. AVFrame *buf_out = av_frame_clone(buf);
  94. if (!buf_out) {
  95. ret = AVERROR(ENOMEM);
  96. break;
  97. }
  98. buf_out->data[0] = buf_out->extended_data[0] = buf_out->extended_data[i];
  99. buf_out->channel_layout =
  100. av_channel_layout_extract_channel(buf->channel_layout, i);
  101. ret = ff_filter_frame(ctx->outputs[i], buf_out);
  102. if (ret < 0)
  103. break;
  104. }
  105. av_frame_free(&buf);
  106. return ret;
  107. }
  108. static const AVFilterPad avfilter_af_channelsplit_inputs[] = {
  109. {
  110. .name = "default",
  111. .type = AVMEDIA_TYPE_AUDIO,
  112. .filter_frame = filter_frame,
  113. },
  114. { NULL }
  115. };
  116. AVFilter ff_af_channelsplit = {
  117. .name = "channelsplit",
  118. .description = NULL_IF_CONFIG_SMALL("Split audio into per-channel streams"),
  119. .priv_size = sizeof(ChannelSplitContext),
  120. .priv_class = &channelsplit_class,
  121. .init = init,
  122. .query_formats = query_formats,
  123. .inputs = avfilter_af_channelsplit_inputs,
  124. .outputs = NULL,
  125. .flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
  126. };