3 * Copyright (c) 2001 FFmpeg project
5 * This file is part of FFmpeg.
7 * FFmpeg 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.
12 * FFmpeg 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.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 Write and read amr data according to RFC3267, http://www.ietf.org/rfc/rfc3267.txt?number=3267
25 Only mono files are supported.
29 #include "libavutil/channel_layout.h"
34 uint64_t cumulated_size;
38 static const char AMR_header[] = "#!AMR\n";
39 static const char AMRWB_header[] = "#!AMR-WB\n";
41 static const uint8_t amrnb_packed_size[16] = {
42 13, 14, 16, 18, 20, 21, 27, 32, 6, 1, 1, 1, 1, 1, 1, 1
44 static const uint8_t amrwb_packed_size[16] = {
45 18, 24, 33, 37, 41, 47, 51, 59, 61, 6, 1, 1, 1, 1, 1, 1
49 static int amr_write_header(AVFormatContext *s)
51 AVIOContext *pb = s->pb;
52 AVCodecParameters *par = s->streams[0]->codecpar;
56 if (par->codec_id == AV_CODEC_ID_AMR_NB) {
57 avio_write(pb, AMR_header, sizeof(AMR_header) - 1); /* magic number */
58 } else if (par->codec_id == AV_CODEC_ID_AMR_WB) {
59 avio_write(pb, AMRWB_header, sizeof(AMRWB_header) - 1); /* magic number */
66 static int amr_write_packet(AVFormatContext *s, AVPacket *pkt)
68 avio_write(s->pb, pkt->data, pkt->size);
71 #endif /* CONFIG_AMR_MUXER */
73 static int amr_probe(const AVProbeData *p)
75 // Only check for "#!AMR" which could be amr-wb, amr-nb.
76 // This will also trigger multichannel files: "#!AMR_MC1.0\n" and
77 // "#!AMR-WB_MC1.0\n" (not supported)
79 if (!memcmp(p->buf, AMR_header, 5))
80 return AVPROBE_SCORE_MAX;
86 static int amr_read_header(AVFormatContext *s)
88 AVIOContext *pb = s->pb;
92 avio_read(pb, header, 6);
94 st = avformat_new_stream(s, NULL);
96 return AVERROR(ENOMEM);
97 if (memcmp(header, AMR_header, 6)) {
98 avio_read(pb, header + 6, 3);
99 if (memcmp(header, AMRWB_header, 9)) {
103 st->codecpar->codec_tag = MKTAG('s', 'a', 'w', 'b');
104 st->codecpar->codec_id = AV_CODEC_ID_AMR_WB;
105 st->codecpar->sample_rate = 16000;
107 st->codecpar->codec_tag = MKTAG('s', 'a', 'm', 'r');
108 st->codecpar->codec_id = AV_CODEC_ID_AMR_NB;
109 st->codecpar->sample_rate = 8000;
111 st->codecpar->channels = 1;
112 st->codecpar->channel_layout = AV_CH_LAYOUT_MONO;
113 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
114 avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
119 static int amr_read_packet(AVFormatContext *s, AVPacket *pkt)
121 AVCodecParameters *par = s->streams[0]->codecpar;
122 int read, size = 0, toc, mode;
123 int64_t pos = avio_tell(s->pb);
124 AMRContext *amr = s->priv_data;
126 if (avio_feof(s->pb)) {
130 // FIXME this is wrong, this should rather be in an AVParser
131 toc = avio_r8(s->pb);
132 mode = (toc >> 3) & 0x0F;
134 if (par->codec_id == AV_CODEC_ID_AMR_NB) {
135 size = amrnb_packed_size[mode];
136 } else if (par->codec_id == AV_CODEC_ID_AMR_WB) {
137 size = amrwb_packed_size[mode];
140 if (!size || av_new_packet(pkt, size))
143 if (amr->cumulated_size < UINT64_MAX - size) {
144 amr->cumulated_size += size;
145 /* Both AMR formats have 50 frames per second */
146 s->streams[0]->codecpar->bit_rate = amr->cumulated_size / ++amr->block_count * 8 * 50;
149 pkt->stream_index = 0;
152 pkt->duration = par->codec_id == AV_CODEC_ID_AMR_NB ? 160 : 320;
153 read = avio_read(s->pb, pkt->data + 1, size - 1);
155 if (read != size - 1) {
156 av_packet_unref(pkt);
165 #if CONFIG_AMR_DEMUXER
166 AVInputFormat ff_amr_demuxer = {
168 .long_name = NULL_IF_CONFIG_SMALL("3GPP AMR"),
169 .priv_data_size = sizeof(AMRContext),
170 .read_probe = amr_probe,
171 .read_header = amr_read_header,
172 .read_packet = amr_read_packet,
173 .flags = AVFMT_GENERIC_INDEX,
177 #if CONFIG_AMRNB_DEMUXER
178 static int amrnb_probe(const AVProbeData *p)
180 int mode, i = 0, valid = 0, invalid = 0;
181 const uint8_t *b = p->buf;
183 while (i < p->buf_size) {
184 mode = b[i] >> 3 & 0x0F;
185 if (mode < 9 && (b[i] & 0x4) == 0x4) {
187 int size = amrnb_packed_size[mode];
202 if (valid > 100 && valid >> 4 > invalid)
203 return AVPROBE_SCORE_EXTENSION / 2 + 1;
207 static int amrnb_read_header(AVFormatContext *s)
209 AVStream *st = avformat_new_stream(s, NULL);
211 return AVERROR(ENOMEM);
212 st->codecpar->codec_id = AV_CODEC_ID_AMR_NB;
213 st->codecpar->sample_rate = 8000;
214 st->codecpar->channels = 1;
215 st->codecpar->channel_layout = AV_CH_LAYOUT_MONO;
216 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
217 avpriv_set_pts_info(st, 64, 1, 8000);
222 AVInputFormat ff_amrnb_demuxer = {
224 .long_name = NULL_IF_CONFIG_SMALL("raw AMR-NB"),
225 .priv_data_size = sizeof(AMRContext),
226 .read_probe = amrnb_probe,
227 .read_header = amrnb_read_header,
228 .read_packet = amr_read_packet,
229 .flags = AVFMT_GENERIC_INDEX,
233 #if CONFIG_AMRWB_DEMUXER
234 static int amrwb_probe(const AVProbeData *p)
236 int mode, i = 0, valid = 0, invalid = 0;
237 const uint8_t *b = p->buf;
239 while (i < p->buf_size) {
240 mode = b[i] >> 3 & 0x0F;
241 if (mode < 10 && (b[i] & 0x4) == 0x4) {
243 int size = amrwb_packed_size[mode];
258 if (valid > 100 && valid >> 4 > invalid)
259 return AVPROBE_SCORE_EXTENSION / 2 + 1;
263 static int amrwb_read_header(AVFormatContext *s)
265 AVStream *st = avformat_new_stream(s, NULL);
267 return AVERROR(ENOMEM);
268 st->codecpar->codec_id = AV_CODEC_ID_AMR_WB;
269 st->codecpar->sample_rate = 16000;
270 st->codecpar->channels = 1;
271 st->codecpar->channel_layout = AV_CH_LAYOUT_MONO;
272 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
273 avpriv_set_pts_info(st, 64, 1, 16000);
278 AVInputFormat ff_amrwb_demuxer = {
280 .long_name = NULL_IF_CONFIG_SMALL("raw AMR-WB"),
281 .priv_data_size = sizeof(AMRContext),
282 .read_probe = amrwb_probe,
283 .read_header = amrwb_read_header,
284 .read_packet = amr_read_packet,
285 .flags = AVFMT_GENERIC_INDEX,
290 AVOutputFormat ff_amr_muxer = {
292 .long_name = NULL_IF_CONFIG_SMALL("3GPP AMR"),
293 .mime_type = "audio/amr",
295 .audio_codec = AV_CODEC_ID_AMR_NB,
296 .video_codec = AV_CODEC_ID_NONE,
297 .write_header = amr_write_header,
298 .write_packet = amr_write_packet,
299 .flags = AVFMT_NOTIMESTAMPS,