]> git.sesse.net Git - ffmpeg/blob - libavformat/amr.c
lavf: block special characters in dump metadata
[ffmpeg] / libavformat / amr.c
1 /*
2  * amr file format
3  * Copyright (c) 2001 ffmpeg project
4  *
5  * This file is part of FFmpeg.
6  *
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.
11  *
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.
16  *
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
20  */
21
22 /*
23 Write and read amr data according to RFC3267, http://www.ietf.org/rfc/rfc3267.txt?number=3267
24
25 Only mono files are supported.
26
27 */
28 #include "libavutil/avassert.h"
29 #include "avformat.h"
30 #include "internal.h"
31
32 static const char AMR_header[]   = "#!AMR\n";
33 static const char AMRWB_header[] = "#!AMR-WB\n";
34
35 #if CONFIG_AMR_MUXER
36 static int amr_write_header(AVFormatContext *s)
37 {
38     AVIOContext    *pb  = s->pb;
39     AVCodecContext *enc = s->streams[0]->codec;
40
41     s->priv_data = NULL;
42
43     if (enc->codec_id == AV_CODEC_ID_AMR_NB) {
44         avio_write(pb, AMR_header,   sizeof(AMR_header)   - 1); /* magic number */
45     } else if (enc->codec_id == AV_CODEC_ID_AMR_WB) {
46         avio_write(pb, AMRWB_header, sizeof(AMRWB_header) - 1); /* magic number */
47     } else {
48         return -1;
49     }
50     avio_flush(pb);
51     return 0;
52 }
53
54 static int amr_write_packet(AVFormatContext *s, AVPacket *pkt)
55 {
56     avio_write(s->pb, pkt->data, pkt->size);
57     avio_flush(s->pb);
58     return 0;
59 }
60 #endif /* CONFIG_AMR_MUXER */
61
62 static int amr_probe(AVProbeData *p)
63 {
64     // Only check for "#!AMR" which could be amr-wb, amr-nb.
65     // This will also trigger multichannel files: "#!AMR_MC1.0\n" and
66     // "#!AMR-WB_MC1.0\n" (not supported)
67
68     if (!memcmp(p->buf, AMR_header, 5))
69         return AVPROBE_SCORE_MAX;
70     else
71         return 0;
72 }
73
74 /* amr input */
75 static int amr_read_header(AVFormatContext *s)
76 {
77     AVIOContext *pb = s->pb;
78     AVStream *st;
79     uint8_t header[9];
80
81     avio_read(pb, header, 6);
82
83     st = avformat_new_stream(s, NULL);
84     if (!st)
85         return AVERROR(ENOMEM);
86     if (memcmp(header, AMR_header, 6)) {
87         avio_read(pb, header + 6, 3);
88         if (memcmp(header, AMRWB_header, 9)) {
89             return -1;
90         }
91
92         st->codec->codec_tag   = MKTAG('s', 'a', 'w', 'b');
93         st->codec->codec_id    = AV_CODEC_ID_AMR_WB;
94         st->codec->sample_rate = 16000;
95     } else {
96         st->codec->codec_tag   = MKTAG('s', 'a', 'm', 'r');
97         st->codec->codec_id    = AV_CODEC_ID_AMR_NB;
98         st->codec->sample_rate = 8000;
99     }
100     st->codec->channels   = 1;
101     st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
102     avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
103
104     return 0;
105 }
106
107 static int amr_read_packet(AVFormatContext *s, AVPacket *pkt)
108 {
109     AVCodecContext *enc = s->streams[0]->codec;
110     int read, size = 0, toc, mode;
111     int64_t pos = avio_tell(s->pb);
112
113     if (url_feof(s->pb)) {
114         return AVERROR(EIO);
115     }
116
117     // FIXME this is wrong, this should rather be in a AVParset
118     toc  = avio_r8(s->pb);
119     mode = (toc >> 3) & 0x0F;
120
121     if (enc->codec_id == AV_CODEC_ID_AMR_NB) {
122         static const uint8_t packed_size[16] = {
123             12, 13, 15, 17, 19, 20, 26, 31, 5, 0, 0, 0, 0, 0, 0, 0
124         };
125
126         size = packed_size[mode] + 1;
127     } else if (enc->codec_id == AV_CODEC_ID_AMR_WB) {
128         static const uint8_t packed_size[16] = {
129             18, 24, 33, 37, 41, 47, 51, 59, 61, 6, 6, 0, 0, 0, 1, 1
130         };
131
132         size = packed_size[mode];
133     } else {
134         av_assert0(0);
135     }
136
137     if (!size || av_new_packet(pkt, size))
138         return AVERROR(EIO);
139
140     /* Both AMR formats have 50 frames per second */
141     s->streams[0]->codec->bit_rate = size*8*50;
142
143     pkt->stream_index = 0;
144     pkt->pos          = pos;
145     pkt->data[0]      = toc;
146     pkt->duration     = enc->codec_id == AV_CODEC_ID_AMR_NB ? 160 : 320;
147     read              = avio_read(s->pb, pkt->data + 1, size - 1);
148
149     if (read != size - 1) {
150         av_free_packet(pkt);
151         return AVERROR(EIO);
152     }
153
154     return 0;
155 }
156
157 #if CONFIG_AMR_DEMUXER
158 AVInputFormat ff_amr_demuxer = {
159     .name           = "amr",
160     .long_name      = NULL_IF_CONFIG_SMALL("3GPP AMR"),
161     .read_probe     = amr_probe,
162     .read_header    = amr_read_header,
163     .read_packet    = amr_read_packet,
164     .flags          = AVFMT_GENERIC_INDEX,
165 };
166 #endif
167
168 #if CONFIG_AMR_MUXER
169 AVOutputFormat ff_amr_muxer = {
170     .name              = "amr",
171     .long_name         = NULL_IF_CONFIG_SMALL("3GPP AMR"),
172     .mime_type         = "audio/amr",
173     .extensions        = "amr",
174     .audio_codec       = AV_CODEC_ID_AMR_NB,
175     .video_codec       = AV_CODEC_ID_NONE,
176     .write_header      = amr_write_header,
177     .write_packet      = amr_write_packet,
178 };
179 #endif