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.

71 lines
1.9KB

  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. #include "audio.h"
  19. #include "avfilter.h"
  20. #include "internal.h"
  21. static int filter_frame(AVFilterLink *inlink, AVFrame *in)
  22. {
  23. AVFilterLink *outlink = inlink->dst->outputs[0];
  24. AVFrame *out = ff_get_audio_buffer(outlink, in->nb_samples);
  25. int ret;
  26. if (!out) {
  27. ret = AVERROR(ENOMEM);
  28. goto fail;
  29. }
  30. ret = av_frame_copy_props(out, in);
  31. if (ret < 0)
  32. goto fail;
  33. ret = av_frame_copy(out, in);
  34. if (ret < 0)
  35. goto fail;
  36. av_frame_free(&in);
  37. return ff_filter_frame(outlink, out);
  38. fail:
  39. av_frame_free(&in);
  40. av_frame_free(&out);
  41. return ret;
  42. }
  43. static const AVFilterPad acopy_inputs[] = {
  44. {
  45. .name = "default",
  46. .type = AVMEDIA_TYPE_AUDIO,
  47. .filter_frame = filter_frame,
  48. },
  49. { NULL }
  50. };
  51. static const AVFilterPad acopy_outputs[] = {
  52. {
  53. .name = "default",
  54. .type = AVMEDIA_TYPE_AUDIO,
  55. },
  56. { NULL }
  57. };
  58. AVFilter ff_af_acopy = {
  59. .name = "acopy",
  60. .description = NULL_IF_CONFIG_SMALL("Copy the input audio unchanged to the output."),
  61. .inputs = acopy_inputs,
  62. .outputs = acopy_outputs,
  63. };