3 * Copyright (c) 2006 Baptiste Coudurier <baptiste.coudurier@smartjog.com>
4 * Mans Rullgard <mans@mansr.com>
6 * This file is part of Libav.
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.
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.
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
23 #include "libavcodec/get_bits.h"
24 #include "libavcodec/put_bits.h"
25 #include "libavcodec/avcodec.h"
26 #include "libavcodec/mpeg4audio.h"
29 #define ADTS_HEADER_SIZE 7
31 typedef struct ADTSContext {
34 int sample_rate_index;
37 uint8_t pce_data[MAX_PCE_SIZE];
40 #define ADTS_MAX_FRAME_BYTES ((1 << 13) - 1)
42 static int adts_decode_extradata(AVFormatContext *s, ADTSContext *adts, uint8_t *buf, int size)
46 MPEG4AudioConfig m4ac;
49 init_get_bits(&gb, buf, size * 8);
50 off = avpriv_mpeg4audio_get_config(&m4ac, buf, size * 8, 1);
53 skip_bits_long(&gb, off);
54 adts->objecttype = m4ac.object_type - 1;
55 adts->sample_rate_index = m4ac.sampling_index;
56 adts->channel_conf = m4ac.chan_config;
58 if (adts->objecttype > 3U) {
59 av_log(s, AV_LOG_ERROR, "MPEG-4 AOT %d is not allowed in ADTS\n", adts->objecttype+1);
60 return AVERROR_INVALIDDATA;
62 if (adts->sample_rate_index == 15) {
63 av_log(s, AV_LOG_ERROR, "Escape sample rate index illegal in ADTS\n");
64 return AVERROR_INVALIDDATA;
66 if (get_bits(&gb, 1)) {
67 av_log(s, AV_LOG_ERROR, "960/120 MDCT window is not allowed in ADTS\n");
68 return AVERROR_INVALIDDATA;
70 if (get_bits(&gb, 1)) {
71 av_log(s, AV_LOG_ERROR, "Scalable configurations are not allowed in ADTS\n");
72 return AVERROR_INVALIDDATA;
74 if (get_bits(&gb, 1)) {
75 av_log(s, AV_LOG_ERROR, "Extension flag is not allowed in ADTS\n");
76 return AVERROR_INVALIDDATA;
78 if (!adts->channel_conf) {
79 init_put_bits(&pb, adts->pce_data, MAX_PCE_SIZE);
81 put_bits(&pb, 3, 5); //ID_PCE
82 adts->pce_size = (avpriv_copy_pce_data(&pb, &gb) + 3) / 8;
91 static int adts_write_header(AVFormatContext *s)
93 ADTSContext *adts = s->priv_data;
94 AVCodecContext *avc = s->streams[0]->codec;
96 if (avc->extradata_size > 0)
97 return adts_decode_extradata(s, adts, avc->extradata,
103 static int adts_write_frame_header(ADTSContext *ctx,
104 uint8_t *buf, int size, int pce_size)
108 unsigned full_frame_size = (unsigned)ADTS_HEADER_SIZE + size + pce_size;
109 if (full_frame_size > ADTS_MAX_FRAME_BYTES) {
110 av_log(NULL, AV_LOG_ERROR, "ADTS frame size too large: %u (max %d)\n",
111 full_frame_size, ADTS_MAX_FRAME_BYTES);
112 return AVERROR_INVALIDDATA;
115 init_put_bits(&pb, buf, ADTS_HEADER_SIZE);
117 /* adts_fixed_header */
118 put_bits(&pb, 12, 0xfff); /* syncword */
119 put_bits(&pb, 1, 0); /* ID */
120 put_bits(&pb, 2, 0); /* layer */
121 put_bits(&pb, 1, 1); /* protection_absent */
122 put_bits(&pb, 2, ctx->objecttype); /* profile_objecttype */
123 put_bits(&pb, 4, ctx->sample_rate_index);
124 put_bits(&pb, 1, 0); /* private_bit */
125 put_bits(&pb, 3, ctx->channel_conf); /* channel_configuration */
126 put_bits(&pb, 1, 0); /* original_copy */
127 put_bits(&pb, 1, 0); /* home */
129 /* adts_variable_header */
130 put_bits(&pb, 1, 0); /* copyright_identification_bit */
131 put_bits(&pb, 1, 0); /* copyright_identification_start */
132 put_bits(&pb, 13, full_frame_size); /* aac_frame_length */
133 put_bits(&pb, 11, 0x7ff); /* adts_buffer_fullness */
134 put_bits(&pb, 2, 0); /* number_of_raw_data_blocks_in_frame */
141 static int adts_write_packet(AVFormatContext *s, AVPacket *pkt)
143 ADTSContext *adts = s->priv_data;
144 AVIOContext *pb = s->pb;
145 uint8_t buf[ADTS_HEADER_SIZE];
149 if (adts->write_adts) {
150 int err = adts_write_frame_header(adts, buf, pkt->size,
154 avio_write(pb, buf, ADTS_HEADER_SIZE);
155 if (adts->pce_size) {
156 avio_write(pb, adts->pce_data, adts->pce_size);
160 avio_write(pb, pkt->data, pkt->size);
165 AVOutputFormat ff_adts_muxer = {
167 .long_name = NULL_IF_CONFIG_SMALL("ADTS AAC (Advanced Audio Coding)"),
168 .mime_type = "audio/aac",
169 .extensions = "aac,adts",
170 .priv_data_size = sizeof(ADTSContext),
171 .audio_codec = AV_CODEC_ID_AAC,
172 .video_codec = AV_CODEC_ID_NONE,
173 .write_header = adts_write_header,
174 .write_packet = adts_write_packet,
175 .flags = AVFMT_NOTIMESTAMPS,