audio.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * Copyright (c) Stefano Sabatini | stefasab at gmail.com
  3. * Copyright (c) S.N. Hemanth Meenakshisundaram | smeenaks at ucsd.edu
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/avassert.h"
  22. #include "libavutil/channel_layout.h"
  23. #include "libavutil/common.h"
  24. #include "libavcodec/avcodec.h"
  25. #include "audio.h"
  26. #include "avfilter.h"
  27. #include "internal.h"
  28. AVFrame *ff_null_get_audio_buffer(AVFilterLink *link, int nb_samples)
  29. {
  30. return ff_get_audio_buffer(link->dst->outputs[0], nb_samples);
  31. }
  32. AVFrame *ff_default_get_audio_buffer(AVFilterLink *link, int nb_samples)
  33. {
  34. AVFrame *frame = av_frame_alloc();
  35. int channels = link->channels;
  36. int ret;
  37. av_assert0(channels == av_get_channel_layout_nb_channels(link->channel_layout) || !av_get_channel_layout_nb_channels(link->channel_layout));
  38. if (!frame)
  39. return NULL;
  40. frame->nb_samples = nb_samples;
  41. frame->format = link->format;
  42. av_frame_set_channels(frame, link->channels);
  43. frame->channel_layout = link->channel_layout;
  44. frame->sample_rate = link->sample_rate;
  45. ret = av_frame_get_buffer(frame, 0);
  46. if (ret < 0) {
  47. av_frame_free(&frame);
  48. return NULL;
  49. }
  50. av_samples_set_silence(frame->extended_data, 0, nb_samples, channels,
  51. link->format);
  52. return frame;
  53. }
  54. AVFrame *ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
  55. {
  56. AVFrame *ret = NULL;
  57. if (link->dstpad->get_audio_buffer)
  58. ret = link->dstpad->get_audio_buffer(link, nb_samples);
  59. if (!ret)
  60. ret = ff_default_get_audio_buffer(link, nb_samples);
  61. return ret;
  62. }