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.

199 lines
5.6KB

  1. /*
  2. * LATM/LOAS muxer
  3. * Copyright (c) 2011 Kieran Kunhya <kieran@kunhya.com>
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavcodec/get_bits.h"
  22. #include "libavcodec/put_bits.h"
  23. #include "libavcodec/avcodec.h"
  24. #include "libavcodec/mpeg4audio.h"
  25. #include "libavutil/opt.h"
  26. #include "avformat.h"
  27. #include "rawenc.h"
  28. typedef struct {
  29. AVClass *av_class;
  30. int off;
  31. int channel_conf;
  32. int object_type;
  33. int counter;
  34. int mod;
  35. } LATMContext;
  36. static const AVOption options[] = {
  37. {"smc-interval", "StreamMuxConfig interval.",
  38. offsetof(LATMContext, mod), AV_OPT_TYPE_INT, {.dbl = 0x0014}, 0x0001, 0xffff, AV_OPT_FLAG_ENCODING_PARAM},
  39. {NULL},
  40. };
  41. static const AVClass latm_muxer_class = {
  42. .class_name = "LATM/LOAS muxer",
  43. .item_name = av_default_item_name,
  44. .option = options,
  45. .version = LIBAVUTIL_VERSION_INT,
  46. };
  47. static int latm_decode_extradata(LATMContext *ctx, uint8_t *buf, int size)
  48. {
  49. GetBitContext gb;
  50. MPEG4AudioConfig m4ac;
  51. init_get_bits(&gb, buf, size * 8);
  52. ctx->off = avpriv_mpeg4audio_get_config(&m4ac, buf, size * 8, 1);
  53. if (ctx->off < 0)
  54. return ctx->off;
  55. skip_bits_long(&gb, ctx->off);
  56. /* FIXME: are any formats not allowed in LATM? */
  57. if (m4ac.object_type > AOT_SBR && m4ac.object_type != AOT_ALS) {
  58. av_log(ctx, AV_LOG_ERROR, "Muxing MPEG-4 AOT %d in LATM is not supported\n", m4ac.object_type);
  59. return AVERROR_INVALIDDATA;
  60. }
  61. ctx->channel_conf = m4ac.chan_config;
  62. ctx->object_type = m4ac.object_type;
  63. return 0;
  64. }
  65. static int latm_write_header(AVFormatContext *s)
  66. {
  67. LATMContext *ctx = s->priv_data;
  68. AVCodecContext *avctx = s->streams[0]->codec;
  69. if (avctx->codec_id == CODEC_ID_AAC_LATM)
  70. return 0;
  71. if (avctx->extradata_size > 0 &&
  72. latm_decode_extradata(ctx, avctx->extradata, avctx->extradata_size) < 0)
  73. return AVERROR_INVALIDDATA;
  74. return 0;
  75. }
  76. static int latm_write_frame_header(AVFormatContext *s, PutBitContext *bs)
  77. {
  78. LATMContext *ctx = s->priv_data;
  79. AVCodecContext *avctx = s->streams[0]->codec;
  80. GetBitContext gb;
  81. int header_size;
  82. /* AudioMuxElement */
  83. put_bits(bs, 1, !!ctx->counter);
  84. if (!ctx->counter) {
  85. init_get_bits(&gb, avctx->extradata, avctx->extradata_size * 8);
  86. /* StreamMuxConfig */
  87. put_bits(bs, 1, 0); /* audioMuxVersion */
  88. put_bits(bs, 1, 1); /* allStreamsSameTimeFraming */
  89. put_bits(bs, 6, 0); /* numSubFrames */
  90. put_bits(bs, 4, 0); /* numProgram */
  91. put_bits(bs, 3, 0); /* numLayer */
  92. /* AudioSpecificConfig */
  93. if (ctx->object_type == AOT_ALS) {
  94. header_size = avctx->extradata_size-(ctx->off + 7) >> 3;
  95. avpriv_copy_bits(bs, &avctx->extradata[ctx->off], header_size);
  96. } else {
  97. avpriv_copy_bits(bs, avctx->extradata, ctx->off + 3);
  98. if (!ctx->channel_conf) {
  99. avpriv_copy_pce_data(bs, &gb);
  100. }
  101. }
  102. put_bits(bs, 3, 0); /* frameLengthType */
  103. put_bits(bs, 8, 0xff); /* latmBufferFullness */
  104. put_bits(bs, 1, 0); /* otherDataPresent */
  105. put_bits(bs, 1, 0); /* crcCheckPresent */
  106. }
  107. ctx->counter++;
  108. ctx->counter %= ctx->mod;
  109. return 0;
  110. }
  111. static int latm_write_packet(AVFormatContext *s, AVPacket *pkt)
  112. {
  113. AVIOContext *pb = s->pb;
  114. PutBitContext bs;
  115. int i, len;
  116. uint8_t loas_header[] = "\x56\xe0\x00";
  117. uint8_t *buf;
  118. if (s->streams[0]->codec->codec_id == CODEC_ID_AAC_LATM)
  119. return ff_raw_write_packet(s, pkt);
  120. if (pkt->size > 2 && pkt->data[0] == 0xff && (pkt->data[1] >> 4) == 0xf) {
  121. av_log(s, AV_LOG_ERROR, "ADTS header detected - ADTS will not be incorrectly muxed into LATM\n");
  122. return AVERROR_INVALIDDATA;
  123. }
  124. buf = av_malloc(pkt->size+1024);
  125. if (!buf)
  126. return AVERROR(ENOMEM);
  127. init_put_bits(&bs, buf, pkt->size+1024);
  128. latm_write_frame_header(s, &bs);
  129. /* PayloadLengthInfo() */
  130. for (i = 0; i <= pkt->size-255; i+=255)
  131. put_bits(&bs, 8, 255);
  132. put_bits(&bs, 8, pkt->size-i);
  133. /* The LATM payload is written unaligned */
  134. /* PayloadMux() */
  135. for (i = 0; i < pkt->size; i++)
  136. put_bits(&bs, 8, pkt->data[i]);
  137. avpriv_align_put_bits(&bs);
  138. flush_put_bits(&bs);
  139. len = put_bits_count(&bs) >> 3;
  140. loas_header[1] |= (len >> 8) & 0x1f;
  141. loas_header[2] |= len & 0xff;
  142. avio_write(pb, loas_header, 3);
  143. avio_write(pb, buf, len);
  144. av_free(buf);
  145. return 0;
  146. }
  147. AVOutputFormat ff_latm_muxer = {
  148. .name = "latm",
  149. .long_name = NULL_IF_CONFIG_SMALL("LOAS/LATM"),
  150. .mime_type = "audio/MP4A-LATM",
  151. .extensions = "latm,loas",
  152. .priv_data_size = sizeof(LATMContext),
  153. .audio_codec = CODEC_ID_AAC,
  154. .video_codec = CODEC_ID_NONE,
  155. .write_header = latm_write_header,
  156. .write_packet = latm_write_packet,
  157. .priv_class = &latm_muxer_class,
  158. };