]> git.sesse.net Git - ffmpeg/blob - libavformat/amr.c
avformat: remove avio_flush() calls from the end of write_header functions
[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
29 #include "libavutil/channel_layout.h"
30 #include "avformat.h"
31 #include "internal.h"
32
33 typedef struct {
34     uint64_t cumulated_size;
35     uint64_t block_count;
36 } AMRContext;
37
38 static const char AMR_header[]   = "#!AMR\n";
39 static const char AMRWB_header[] = "#!AMR-WB\n";
40
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
43 };
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
46 };
47
48 #if CONFIG_AMR_MUXER
49 static int amr_write_header(AVFormatContext *s)
50 {
51     AVIOContext    *pb  = s->pb;
52     AVCodecParameters *par = s->streams[0]->codecpar;
53
54     s->priv_data = NULL;
55
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 */
60     } else {
61         return -1;
62     }
63     return 0;
64 }
65
66 static int amr_write_packet(AVFormatContext *s, AVPacket *pkt)
67 {
68     avio_write(s->pb, pkt->data, pkt->size);
69     return 0;
70 }
71 #endif /* CONFIG_AMR_MUXER */
72
73 static int amr_probe(const AVProbeData *p)
74 {
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)
78
79     if (!memcmp(p->buf, AMR_header, 5))
80         return AVPROBE_SCORE_MAX;
81     else
82         return 0;
83 }
84
85 /* amr input */
86 static int amr_read_header(AVFormatContext *s)
87 {
88     AVIOContext *pb = s->pb;
89     AVStream *st;
90     uint8_t header[9];
91
92     avio_read(pb, header, 6);
93
94     st = avformat_new_stream(s, NULL);
95     if (!st)
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)) {
100             return -1;
101         }
102
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;
106     } else {
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;
110     }
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);
115
116     return 0;
117 }
118
119 static int amr_read_packet(AVFormatContext *s, AVPacket *pkt)
120 {
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;
125
126     if (avio_feof(s->pb)) {
127         return AVERROR_EOF;
128     }
129
130     // FIXME this is wrong, this should rather be in an AVParser
131     toc  = avio_r8(s->pb);
132     mode = (toc >> 3) & 0x0F;
133
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];
138     }
139
140     if (!size || av_new_packet(pkt, size))
141         return AVERROR(EIO);
142
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;
147     }
148
149     pkt->stream_index = 0;
150     pkt->pos          = pos;
151     pkt->data[0]      = toc;
152     pkt->duration     = par->codec_id == AV_CODEC_ID_AMR_NB ? 160 : 320;
153     read              = avio_read(s->pb, pkt->data + 1, size - 1);
154
155     if (read != size - 1) {
156         av_packet_unref(pkt);
157         if (read < 0)
158             return read;
159         return AVERROR(EIO);
160     }
161
162     return 0;
163 }
164
165 #if CONFIG_AMR_DEMUXER
166 AVInputFormat ff_amr_demuxer = {
167     .name           = "amr",
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,
174 };
175 #endif
176
177 #if CONFIG_AMRNB_DEMUXER
178 static int amrnb_probe(const AVProbeData *p)
179 {
180     int mode, i = 0, valid = 0, invalid = 0;
181     const uint8_t *b = p->buf;
182
183     while (i < p->buf_size) {
184         mode = b[i] >> 3 & 0x0F;
185         if (mode < 9 && (b[i] & 0x4) == 0x4) {
186             int last = b[i];
187             int size = amrnb_packed_size[mode];
188             while (size--) {
189                 if (b[++i] != last)
190                     break;
191             }
192             if (size > 0) {
193                 valid++;
194                 i += size;
195             }
196         } else {
197             valid = 0;
198             invalid++;
199             i++;
200         }
201     }
202     if (valid > 100 && valid >> 4 > invalid)
203         return AVPROBE_SCORE_EXTENSION / 2 + 1;
204     return 0;
205 }
206
207 static int amrnb_read_header(AVFormatContext *s)
208 {
209     AVStream *st = avformat_new_stream(s, NULL);
210     if (!st)
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);
218
219     return 0;
220 }
221
222 AVInputFormat ff_amrnb_demuxer = {
223     .name           = "amrnb",
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,
230 };
231 #endif
232
233 #if CONFIG_AMRWB_DEMUXER
234 static int amrwb_probe(const AVProbeData *p)
235 {
236     int mode, i = 0, valid = 0, invalid = 0;
237     const uint8_t *b = p->buf;
238
239     while (i < p->buf_size) {
240         mode = b[i] >> 3 & 0x0F;
241         if (mode < 10 && (b[i] & 0x4) == 0x4) {
242             int last = b[i];
243             int size = amrwb_packed_size[mode];
244             while (size--) {
245                 if (b[++i] != last)
246                     break;
247             }
248             if (size > 0) {
249                 valid++;
250                 i += size;
251             }
252         } else {
253             valid = 0;
254             invalid++;
255             i++;
256         }
257     }
258     if (valid > 100 && valid >> 4 > invalid)
259         return AVPROBE_SCORE_EXTENSION / 2 + 1;
260     return 0;
261 }
262
263 static int amrwb_read_header(AVFormatContext *s)
264 {
265     AVStream *st = avformat_new_stream(s, NULL);
266     if (!st)
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);
274
275     return 0;
276 }
277
278 AVInputFormat ff_amrwb_demuxer = {
279     .name           = "amrwb",
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,
286 };
287 #endif
288
289 #if CONFIG_AMR_MUXER
290 AVOutputFormat ff_amr_muxer = {
291     .name              = "amr",
292     .long_name         = NULL_IF_CONFIG_SMALL("3GPP AMR"),
293     .mime_type         = "audio/amr",
294     .extensions        = "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,
300 };
301 #endif