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.

139 lines
4.6KB

  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 Libav.
  7. *
  8. * Libav 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. * Libav 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 Libav; 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->codecpar->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->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
  48. aic->sample_size = (st->codecpar->channels *
  49. av_get_bits_per_sample(st->codecpar->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 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 ret;
  69. int size = FFMIN(av_fifo_size(aic->fifo), *aic->samples * aic->sample_size);
  70. if (!size || (!flush && size == av_fifo_size(aic->fifo)))
  71. return 0;
  72. ret = av_new_packet(pkt, size);
  73. if (ret < 0)
  74. return ret;
  75. av_fifo_generic_read(aic->fifo, pkt->data, size, NULL);
  76. pkt->dts = pkt->pts = aic->dts;
  77. pkt->duration = av_rescale_q(*aic->samples, st->time_base, aic->time_base);
  78. pkt->stream_index = stream_index;
  79. aic->dts += pkt->duration;
  80. aic->samples++;
  81. if (!*aic->samples)
  82. aic->samples = aic->samples_per_frame;
  83. return size;
  84. }
  85. int ff_audio_rechunk_interleave(AVFormatContext *s, AVPacket *out, AVPacket *pkt, int flush,
  86. int (*get_packet)(AVFormatContext *, AVPacket *, AVPacket *, int),
  87. int (*compare_ts)(AVFormatContext *, AVPacket *, AVPacket *))
  88. {
  89. int i, ret;
  90. if (pkt) {
  91. AVStream *st = s->streams[pkt->stream_index];
  92. AudioInterleaveContext *aic = st->priv_data;
  93. if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
  94. unsigned new_size = av_fifo_size(aic->fifo) + pkt->size;
  95. if (new_size > aic->fifo_size) {
  96. if (av_fifo_realloc2(aic->fifo, new_size) < 0)
  97. return -1;
  98. aic->fifo_size = new_size;
  99. }
  100. av_fifo_generic_write(aic->fifo, pkt->data, pkt->size, NULL);
  101. } else {
  102. // rewrite pts and dts to be decoded time line position
  103. pkt->pts = pkt->dts = aic->dts;
  104. aic->dts += pkt->duration;
  105. if ((ret = ff_interleave_add_packet(s, pkt, compare_ts)) < 0)
  106. return ret;
  107. }
  108. pkt = NULL;
  109. }
  110. for (i = 0; i < s->nb_streams; i++) {
  111. AVStream *st = s->streams[i];
  112. if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
  113. AVPacket new_pkt = { 0 };
  114. while (interleave_new_audio_packet(s, &new_pkt, i, flush))
  115. if ((ret = ff_interleave_add_packet(s, &new_pkt, compare_ts)) < 0)
  116. return ret;
  117. }
  118. }
  119. return get_packet(s, out, NULL, flush);
  120. }