2005-12-17 18:14:38 +00:00
|
|
|
/*
|
2003-06-06 11:47:49 +00:00
|
|
|
* amr file format
|
|
|
|
* Copyright (c) 2001 ffmpeg project
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2003-06-06 11:47:49 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2003-06-06 11:47:49 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2003-06-06 11:47:49 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-06-06 11:47:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Write and read amr data according to RFC3267, http://www.ietf.org/rfc/rfc3267.txt?number=3267
|
|
|
|
|
2003-09-28 20:34:11 +00:00
|
|
|
Only mono files are supported.
|
2003-06-06 11:47:49 +00:00
|
|
|
|
|
|
|
*/
|
2012-04-07 15:07:16 +00:00
|
|
|
|
|
|
|
#include "libavutil/channel_layout.h"
|
2003-06-06 11:47:49 +00:00
|
|
|
#include "avformat.h"
|
2011-11-29 18:28:15 +00:00
|
|
|
#include "internal.h"
|
2003-06-06 11:47:49 +00:00
|
|
|
|
2014-04-11 21:38:53 +00:00
|
|
|
typedef struct {
|
|
|
|
uint64_t cumulated_size;
|
|
|
|
uint64_t block_count;
|
|
|
|
} AMRContext;
|
|
|
|
|
2012-06-17 15:07:27 +00:00
|
|
|
static const char AMR_header[] = "#!AMR\n";
|
|
|
|
static const char AMRWB_header[] = "#!AMR-WB\n";
|
2003-06-06 11:47:49 +00:00
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_AMR_MUXER
|
2003-06-06 11:47:49 +00:00
|
|
|
static int amr_write_header(AVFormatContext *s)
|
|
|
|
{
|
2012-06-17 15:07:27 +00:00
|
|
|
AVIOContext *pb = s->pb;
|
2005-07-17 22:24:36 +00:00
|
|
|
AVCodecContext *enc = s->streams[0]->codec;
|
2003-06-06 11:47:49 +00:00
|
|
|
|
|
|
|
s->priv_data = NULL;
|
|
|
|
|
2012-08-05 09:11:04 +00:00
|
|
|
if (enc->codec_id == AV_CODEC_ID_AMR_NB) {
|
2011-02-24 06:36:04 +00:00
|
|
|
avio_write(pb, AMR_header, sizeof(AMR_header) - 1); /* magic number */
|
2012-08-05 09:11:04 +00:00
|
|
|
} else if (enc->codec_id == AV_CODEC_ID_AMR_WB) {
|
2011-02-24 06:36:04 +00:00
|
|
|
avio_write(pb, AMRWB_header, sizeof(AMRWB_header) - 1); /* magic number */
|
2012-06-17 15:07:27 +00:00
|
|
|
} else {
|
2006-10-10 23:28:27 +00:00
|
|
|
return -1;
|
2003-06-06 11:47:49 +00:00
|
|
|
}
|
2011-03-14 19:39:06 +00:00
|
|
|
avio_flush(pb);
|
2003-06-06 11:47:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-29 02:06:32 +00:00
|
|
|
static int amr_write_packet(AVFormatContext *s, AVPacket *pkt)
|
2003-06-06 11:47:49 +00:00
|
|
|
{
|
2011-02-21 18:28:17 +00:00
|
|
|
avio_write(s->pb, pkt->data, pkt->size);
|
2003-06-06 11:47:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2008-09-02 22:45:13 +00:00
|
|
|
#endif /* CONFIG_AMR_MUXER */
|
2003-06-06 11:47:49 +00:00
|
|
|
|
|
|
|
static int amr_probe(AVProbeData *p)
|
|
|
|
{
|
2012-06-17 15:07:27 +00:00
|
|
|
// Only check for "#!AMR" which could be amr-wb, amr-nb.
|
|
|
|
// This will also trigger multichannel files: "#!AMR_MC1.0\n" and
|
|
|
|
// "#!AMR-WB_MC1.0\n" (not supported)
|
2003-09-28 20:34:11 +00:00
|
|
|
|
2012-06-17 15:07:27 +00:00
|
|
|
if (!memcmp(p->buf, AMR_header, 5))
|
2003-06-06 11:47:49 +00:00
|
|
|
return AVPROBE_SCORE_MAX;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* amr input */
|
2012-01-12 12:20:36 +00:00
|
|
|
static int amr_read_header(AVFormatContext *s)
|
2003-06-06 11:47:49 +00:00
|
|
|
{
|
2011-02-20 10:04:12 +00:00
|
|
|
AVIOContext *pb = s->pb;
|
2003-06-06 11:47:49 +00:00
|
|
|
AVStream *st;
|
2003-09-28 20:34:11 +00:00
|
|
|
uint8_t header[9];
|
2003-06-06 11:47:49 +00:00
|
|
|
|
2011-02-21 15:43:01 +00:00
|
|
|
avio_read(pb, header, 6);
|
2003-06-06 11:47:49 +00:00
|
|
|
|
2011-06-18 09:43:24 +00:00
|
|
|
st = avformat_new_stream(s, NULL);
|
2006-10-10 23:56:49 +00:00
|
|
|
if (!st)
|
2007-07-19 15:21:30 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2012-06-17 15:07:27 +00:00
|
|
|
if (memcmp(header, AMR_header, 6)) {
|
|
|
|
avio_read(pb, header + 6, 3);
|
|
|
|
if (memcmp(header, AMRWB_header, 9)) {
|
2003-09-28 20:34:11 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2012-06-17 15:07:27 +00:00
|
|
|
st->codec->codec_tag = MKTAG('s', 'a', 'w', 'b');
|
2012-08-05 09:11:04 +00:00
|
|
|
st->codec->codec_id = AV_CODEC_ID_AMR_WB;
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->sample_rate = 16000;
|
2012-06-17 15:07:27 +00:00
|
|
|
} else {
|
|
|
|
st->codec->codec_tag = MKTAG('s', 'a', 'm', 'r');
|
2012-08-05 09:11:04 +00:00
|
|
|
st->codec->codec_id = AV_CODEC_ID_AMR_NB;
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->sample_rate = 8000;
|
2003-06-06 11:47:49 +00:00
|
|
|
}
|
2012-06-17 15:07:27 +00:00
|
|
|
st->codec->channels = 1;
|
2012-04-07 15:07:16 +00:00
|
|
|
st->codec->channel_layout = AV_CH_LAYOUT_MONO;
|
2010-03-30 23:30:55 +00:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
2011-11-29 18:28:15 +00:00
|
|
|
avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
|
2003-06-06 11:47:49 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-06-17 15:07:27 +00:00
|
|
|
static int amr_read_packet(AVFormatContext *s, AVPacket *pkt)
|
2003-06-06 11:47:49 +00:00
|
|
|
{
|
2005-07-17 22:24:36 +00:00
|
|
|
AVCodecContext *enc = s->streams[0]->codec;
|
2007-07-07 13:46:30 +00:00
|
|
|
int read, size = 0, toc, mode;
|
2011-02-09 10:16:51 +00:00
|
|
|
int64_t pos = avio_tell(s->pb);
|
2014-04-11 21:38:53 +00:00
|
|
|
AMRContext *amr = s->priv_data;
|
2003-06-06 11:47:49 +00:00
|
|
|
|
2014-08-07 20:12:41 +00:00
|
|
|
if (avio_feof(s->pb)) {
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2006-10-10 23:45:12 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2014-04-09 20:34:04 +00:00
|
|
|
// FIXME this is wrong, this should rather be in a AVParser
|
2012-06-17 15:07:27 +00:00
|
|
|
toc = avio_r8(s->pb);
|
2006-10-10 23:45:12 +00:00
|
|
|
mode = (toc >> 3) & 0x0F;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2012-08-05 09:11:04 +00:00
|
|
|
if (enc->codec_id == AV_CODEC_ID_AMR_NB) {
|
2012-06-17 15:07:27 +00:00
|
|
|
static const uint8_t packed_size[16] = {
|
|
|
|
12, 13, 15, 17, 19, 20, 26, 31, 5, 0, 0, 0, 0, 0, 0, 0
|
|
|
|
};
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2012-06-17 15:07:27 +00:00
|
|
|
size = packed_size[mode] + 1;
|
2012-08-05 09:11:04 +00:00
|
|
|
} else if (enc->codec_id == AV_CODEC_ID_AMR_WB) {
|
2012-06-17 16:08:23 +00:00
|
|
|
static const uint8_t packed_size[16] = {
|
2012-06-17 15:07:27 +00:00
|
|
|
18, 24, 33, 37, 41, 47, 51, 59, 61, 6, 6, 0, 0, 0, 1, 1
|
|
|
|
};
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2012-06-17 15:07:27 +00:00
|
|
|
size = packed_size[mode];
|
2003-06-06 11:47:49 +00:00
|
|
|
}
|
2006-10-10 23:45:12 +00:00
|
|
|
|
2012-06-17 15:07:27 +00:00
|
|
|
if (!size || av_new_packet(pkt, size))
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2006-10-10 23:45:12 +00:00
|
|
|
|
2014-04-11 21:38:53 +00:00
|
|
|
if (amr->cumulated_size < UINT64_MAX - size) {
|
|
|
|
amr->cumulated_size += size;
|
|
|
|
/* Both AMR formats have 50 frames per second */
|
|
|
|
s->streams[0]->codec->bit_rate = amr->cumulated_size / ++amr->block_count * 8 * 50;
|
|
|
|
}
|
2011-02-09 10:13:32 +00:00
|
|
|
|
2006-10-10 23:45:12 +00:00
|
|
|
pkt->stream_index = 0;
|
2012-06-17 15:07:27 +00:00
|
|
|
pkt->pos = pos;
|
|
|
|
pkt->data[0] = toc;
|
2012-08-05 09:11:04 +00:00
|
|
|
pkt->duration = enc->codec_id == AV_CODEC_ID_AMR_NB ? 160 : 320;
|
2012-06-17 15:07:27 +00:00
|
|
|
read = avio_read(s->pb, pkt->data + 1, size - 1);
|
2006-10-10 23:45:12 +00:00
|
|
|
|
2012-06-17 15:07:27 +00:00
|
|
|
if (read != size - 1) {
|
2006-10-10 23:45:12 +00:00
|
|
|
av_free_packet(pkt);
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2006-10-10 23:45:12 +00:00
|
|
|
}
|
|
|
|
|
2006-10-10 23:28:27 +00:00
|
|
|
return 0;
|
2003-06-06 11:47:49 +00:00
|
|
|
}
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_AMR_DEMUXER
|
2011-01-25 22:03:28 +00:00
|
|
|
AVInputFormat ff_amr_demuxer = {
|
2011-07-16 20:18:12 +00:00
|
|
|
.name = "amr",
|
2012-07-24 21:51:41 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("3GPP AMR"),
|
2014-04-11 21:38:53 +00:00
|
|
|
.priv_data_size = sizeof(AMRContext),
|
2011-07-16 20:18:12 +00:00
|
|
|
.read_probe = amr_probe,
|
|
|
|
.read_header = amr_read_header,
|
|
|
|
.read_packet = amr_read_packet,
|
2012-04-06 14:50:48 +00:00
|
|
|
.flags = AVFMT_GENERIC_INDEX,
|
2003-06-06 11:47:49 +00:00
|
|
|
};
|
2006-07-10 21:14:37 +00:00
|
|
|
#endif
|
2003-06-06 11:47:49 +00:00
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_AMR_MUXER
|
2011-01-25 22:03:28 +00:00
|
|
|
AVOutputFormat ff_amr_muxer = {
|
2011-07-16 20:18:12 +00:00
|
|
|
.name = "amr",
|
2012-07-24 21:51:41 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("3GPP AMR"),
|
2011-07-16 20:18:12 +00:00
|
|
|
.mime_type = "audio/amr",
|
|
|
|
.extensions = "amr",
|
2012-08-05 09:11:04 +00:00
|
|
|
.audio_codec = AV_CODEC_ID_AMR_NB,
|
|
|
|
.video_codec = AV_CODEC_ID_NONE,
|
2011-07-16 20:18:12 +00:00
|
|
|
.write_header = amr_write_header,
|
|
|
|
.write_packet = amr_write_packet,
|
2014-05-29 05:06:52 +00:00
|
|
|
.flags = AVFMT_NOTIMESTAMPS,
|
2003-06-06 11:47:49 +00:00
|
|
|
};
|
2006-01-22 13:50:59 +00:00
|
|
|
#endif
|