audiointerleave.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. if (!time_base.num) {
  45. av_log(s, AV_LOG_ERROR, "timebase not set for audio interleave\n");
  46. return -1;
  47. }
  48. for (i = 0; i < s->nb_streams; i++) {
  49. AVStream *st = s->streams[i];
  50. AudioInterleaveContext *aic = st->priv_data;
  51. if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
  52. aic->sample_size = (st->codec->channels *
  53. av_get_bits_per_sample(st->codec->codec_id)) / 8;
  54. if (!aic->sample_size) {
  55. av_log(s, AV_LOG_ERROR, "could not compute sample size\n");
  56. return -1;
  57. }
  58. aic->samples_per_frame = samples_per_frame;
  59. aic->samples = aic->samples_per_frame;
  60. aic->time_base = time_base;
  61. aic->fifo_size = 100* *aic->samples;
  62. aic->fifo= av_fifo_alloc(100 * *aic->samples);
  63. }
  64. }
  65. return 0;
  66. }
  67. static int ff_interleave_new_audio_packet(AVFormatContext *s, AVPacket *pkt,
  68. int stream_index, int flush)
  69. {
  70. AVStream *st = s->streams[stream_index];
  71. AudioInterleaveContext *aic = st->priv_data;
  72. int size = FFMIN(av_fifo_size(aic->fifo), *aic->samples * aic->sample_size);
  73. if (!size || (!flush && size == av_fifo_size(aic->fifo)))
  74. return 0;
  75. av_new_packet(pkt, size);
  76. av_fifo_generic_read(aic->fifo, pkt->data, size, NULL);
  77. pkt->dts = pkt->pts = aic->dts;
  78. pkt->duration = av_rescale_q(*aic->samples, st->time_base, aic->time_base);
  79. pkt->stream_index = stream_index;
  80. aic->dts += pkt->duration;
  81. aic->samples++;
  82. if (!*aic->samples)
  83. aic->samples = aic->samples_per_frame;
  84. return size;
  85. }
  86. int ff_audio_rechunk_interleave(AVFormatContext *s, AVPacket *out, AVPacket *pkt, int flush,
  87. int (*get_packet)(AVFormatContext *, AVPacket *, AVPacket *, int),
  88. int (*compare_ts)(AVFormatContext *, AVPacket *, AVPacket *))
  89. {
  90. int i;
  91. if (pkt) {
  92. AVStream *st = s->streams[pkt->stream_index];
  93. AudioInterleaveContext *aic = st->priv_data;
  94. if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
  95. unsigned new_size = av_fifo_size(aic->fifo) + pkt->size;
  96. if (new_size > aic->fifo_size) {
  97. if (av_fifo_realloc2(aic->fifo, new_size) < 0)
  98. return -1;
  99. aic->fifo_size = new_size;
  100. }
  101. av_fifo_generic_write(aic->fifo, pkt->data, pkt->size, NULL);
  102. } else {
  103. int ret;
  104. // rewrite pts and dts to be decoded time line position
  105. pkt->pts = pkt->dts = aic->dts;
  106. aic->dts += pkt->duration;
  107. ret = ff_interleave_add_packet(s, pkt, compare_ts);
  108. if (ret < 0)
  109. return ret;
  110. }
  111. pkt = NULL;
  112. }
  113. for (i = 0; i < s->nb_streams; i++) {
  114. AVStream *st = s->streams[i];
  115. if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
  116. AVPacket new_pkt;
  117. int ret;
  118. while (ff_interleave_new_audio_packet(s, &new_pkt, i, flush)) {
  119. ret = ff_interleave_add_packet(s, &new_pkt, compare_ts);
  120. if (ret < 0)
  121. return ret;
  122. }
  123. }
  124. }
  125. return get_packet(s, out, pkt, flush);
  126. }