You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.9KB

  1. /*
  2. * Copyright (c) 2011 Stefano Sabatini
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * audio splitter
  23. */
  24. #include "avfilter.h"
  25. #include "audio.h"
  26. static void filter_samples(AVFilterLink *inlink, AVFilterBufferRef *insamples)
  27. {
  28. ff_filter_samples(inlink->dst->outputs[0],
  29. avfilter_ref_buffer(insamples, ~AV_PERM_WRITE));
  30. ff_filter_samples(inlink->dst->outputs[1],
  31. avfilter_ref_buffer(insamples, ~AV_PERM_WRITE));
  32. avfilter_unref_buffer(insamples);
  33. }
  34. AVFilter avfilter_af_asplit = {
  35. .name = "asplit",
  36. .description = NULL_IF_CONFIG_SMALL("Pass on the audio input to two outputs."),
  37. .inputs = (const AVFilterPad[]) {
  38. { .name = "default",
  39. .type = AVMEDIA_TYPE_AUDIO,
  40. .get_audio_buffer = ff_null_get_audio_buffer,
  41. .filter_samples = filter_samples, },
  42. { .name = NULL}
  43. },
  44. .outputs = (const AVFilterPad[]) {
  45. { .name = "output1",
  46. .type = AVMEDIA_TYPE_AUDIO, },
  47. { .name = "output2",
  48. .type = AVMEDIA_TYPE_AUDIO, },
  49. { .name = NULL}
  50. },
  51. };