audiointerleave.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  2. * Audio Interleaving functions
  3. *
  4. * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot com>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "libavutil/fifo.h"
  23. #include "libavutil/mathematics.h"
  24. #include "avformat.h"
  25. #include "audiointerleave.h"
  26. #include "internal.h"
  27. void ff_audio_interleave_close(AVFormatContext *s)
  28. {
  29. int i;
  30. for (i = 0; i < s->nb_streams; i++) {
  31. AVStream *st = s->streams[i];
  32. AudioInterleaveContext *aic = st->priv_data;
  33. if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO)
  34. av_fifo_free(aic->fifo);
  35. }
  36. }
  37. int ff_audio_interleave_init(AVFormatContext *s,
  38. const int *samples_per_frame,
  39. AVRational time_base)
  40. {
  41. int i;
  42. if (!samples_per_frame)
  43. return -1;
  44. for (i = 0; i < s->nb_streams; i++) {
  45. AVStream *st = s->streams[i];
  46. AudioInterleaveContext *aic = st->priv_data;
  47. if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
  48. aic->sample_size = (st->codec->channels *
  49. av_get_bits_per_sample(st->codec->codec_id)) / 8;
  50. if (!aic->sample_size) {
  51. av_log(s, AV_LOG_ERROR, "could not compute sample size\n");
  52. return -1;
  53. }
  54. aic->samples_per_frame = samples_per_frame;
  55. aic->samples = aic->samples_per_frame;
  56. aic->time_base = time_base;
  57. aic->fifo_size = 100* *aic->samples;
  58. aic->fifo= av_fifo_alloc(100 * *aic->samples);
  59. }
  60. }
  61. return 0;
  62. }
  63. static int ff_interleave_new_audio_packet(AVFormatContext *s, AVPacket *pkt,
  64. int stream_index, int flush)
  65. {
  66. AVStream *st = s->streams[stream_index];
  67. AudioInterleaveContext *aic = st->priv_data;
  68. int size = FFMIN(av_fifo_size(aic->fifo), *aic->samples * aic->sample_size);
  69. if (!size || (!flush && size == av_fifo_size(aic->fifo)))
  70. return 0;
  71. av_new_packet(pkt, size);
  72. av_fifo_generic_read(aic->fifo, pkt->data, size, NULL);
  73. pkt->dts = pkt->pts = aic->dts;
  74. pkt->duration = av_rescale_q(*aic->samples, st->time_base, aic->time_base);
  75. pkt->stream_index = stream_index;
  76. aic->dts += pkt->duration;
  77. aic->samples++;
  78. if (!*aic->samples)
  79. aic->samples = aic->samples_per_frame;
  80. return size;
  81. }
  82. int ff_audio_rechunk_interleave(AVFormatContext *s, AVPacket *out, AVPacket *pkt, int flush,
  83. int (*get_packet)(AVFormatContext *, AVPacket *, AVPacket *, int),
  84. int (*compare_ts)(AVFormatContext *, AVPacket *, AVPacket *))
  85. {
  86. int i;
  87. if (pkt) {
  88. AVStream *st = s->streams[pkt->stream_index];
  89. AudioInterleaveContext *aic = st->priv_data;
  90. if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
  91. unsigned new_size = av_fifo_size(aic->fifo) + pkt->size;
  92. if (new_size > aic->fifo_size) {
  93. if (av_fifo_realloc2(aic->fifo, new_size) < 0)
  94. return -1;
  95. aic->fifo_size = new_size;
  96. }
  97. av_fifo_generic_write(aic->fifo, pkt->data, pkt->size, NULL);
  98. } else {
  99. int ret;
  100. // rewrite pts and dts to be decoded time line position
  101. pkt->pts = pkt->dts = aic->dts;
  102. aic->dts += pkt->duration;
  103. ret = ff_interleave_add_packet(s, pkt, compare_ts);
  104. if (ret < 0)
  105. return ret;
  106. }
  107. pkt = NULL;
  108. }
  109. for (i = 0; i < s->nb_streams; i++) {
  110. AVStream *st = s->streams[i];
  111. if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
  112. AVPacket new_pkt;
  113. int ret;
  114. while (ff_interleave_new_audio_packet(s, &new_pkt, i, flush)) {
  115. ret = ff_interleave_add_packet(s, &new_pkt, compare_ts);
  116. if (ret < 0)
  117. return ret;
  118. }
  119. }
  120. }
  121. return get_packet(s, out, pkt, flush);
  122. }