af_asplit.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. static void filter_samples(AVFilterLink *inlink, AVFilterBufferRef *insamples)
  26. {
  27. avfilter_filter_samples(inlink->dst->outputs[0],
  28. avfilter_ref_buffer(insamples, ~AV_PERM_WRITE));
  29. avfilter_filter_samples(inlink->dst->outputs[1],
  30. avfilter_ref_buffer(insamples, ~AV_PERM_WRITE));
  31. avfilter_unref_buffer(insamples);
  32. }
  33. AVFilter avfilter_af_asplit = {
  34. .name = "asplit",
  35. .description = NULL_IF_CONFIG_SMALL("Pass on the audio input to two outputs."),
  36. .inputs = (const AVFilterPad[]) {
  37. { .name = "default",
  38. .type = AVMEDIA_TYPE_AUDIO,
  39. .get_audio_buffer = avfilter_null_get_audio_buffer,
  40. .filter_samples = filter_samples, },
  41. { .name = NULL}
  42. },
  43. .outputs = (const AVFilterPad[]) {
  44. { .name = "output1",
  45. .type = AVMEDIA_TYPE_AUDIO, },
  46. { .name = "output2",
  47. .type = AVMEDIA_TYPE_AUDIO, },
  48. { .name = NULL}
  49. },
  50. };