Mercurial > libavformat.hg
annotate mp3.c @ 3303:811758d926fd libavformat
remove useless close function
author | bcoudurier |
---|---|
date | Tue, 20 May 2008 23:32:22 +0000 |
parents | 811c78fac294 |
children | 7a0230981402 |
rev | line source |
---|---|
885 | 1 /* |
1415
3b00fb8ef8e4
replace coder/decoder file description in libavformat by muxer/demuxer
aurel
parents:
1358
diff
changeset
|
2 * MP3 muxer and demuxer |
234 | 3 * Copyright (c) 2003 Fabrice Bellard. |
4 * | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1321
diff
changeset
|
5 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1321
diff
changeset
|
6 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1321
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
234 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1321
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
234 | 11 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1321
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
234 | 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 | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1321
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
885
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
234 | 20 */ |
3286 | 21 |
22 #include "libavutil/avstring.h" | |
23 #include "libavcodec/mpegaudio.h" | |
24 #include "libavcodec/mpegaudiodecheader.h" | |
234 | 25 #include "avformat.h" |
26 | |
2096 | 27 #define ID3v2_HEADER_SIZE 10 |
28 #define ID3v1_TAG_SIZE 128 | |
234 | 29 |
2096 | 30 #define ID3v1_GENRE_MAX 125 |
234 | 31 |
2096 | 32 static const char *id3v1_genre_str[ID3v1_GENRE_MAX + 1] = { |
234 | 33 [0] = "Blues", |
34 [1] = "Classic Rock", | |
35 [2] = "Country", | |
36 [3] = "Dance", | |
37 [4] = "Disco", | |
38 [5] = "Funk", | |
39 [6] = "Grunge", | |
40 [7] = "Hip-Hop", | |
41 [8] = "Jazz", | |
42 [9] = "Metal", | |
43 [10] = "New Age", | |
44 [11] = "Oldies", | |
45 [12] = "Other", | |
46 [13] = "Pop", | |
47 [14] = "R&B", | |
48 [15] = "Rap", | |
49 [16] = "Reggae", | |
50 [17] = "Rock", | |
51 [18] = "Techno", | |
52 [19] = "Industrial", | |
53 [20] = "Alternative", | |
54 [21] = "Ska", | |
55 [22] = "Death Metal", | |
56 [23] = "Pranks", | |
57 [24] = "Soundtrack", | |
58 [25] = "Euro-Techno", | |
59 [26] = "Ambient", | |
60 [27] = "Trip-Hop", | |
61 [28] = "Vocal", | |
62 [29] = "Jazz+Funk", | |
63 [30] = "Fusion", | |
64 [31] = "Trance", | |
65 [32] = "Classical", | |
66 [33] = "Instrumental", | |
67 [34] = "Acid", | |
68 [35] = "House", | |
69 [36] = "Game", | |
70 [37] = "Sound Clip", | |
71 [38] = "Gospel", | |
72 [39] = "Noise", | |
73 [40] = "AlternRock", | |
74 [41] = "Bass", | |
75 [42] = "Soul", | |
76 [43] = "Punk", | |
77 [44] = "Space", | |
78 [45] = "Meditative", | |
79 [46] = "Instrumental Pop", | |
80 [47] = "Instrumental Rock", | |
81 [48] = "Ethnic", | |
82 [49] = "Gothic", | |
83 [50] = "Darkwave", | |
84 [51] = "Techno-Industrial", | |
85 [52] = "Electronic", | |
86 [53] = "Pop-Folk", | |
87 [54] = "Eurodance", | |
88 [55] = "Dream", | |
89 [56] = "Southern Rock", | |
90 [57] = "Comedy", | |
91 [58] = "Cult", | |
92 [59] = "Gangsta", | |
93 [60] = "Top 40", | |
94 [61] = "Christian Rap", | |
95 [62] = "Pop/Funk", | |
96 [63] = "Jungle", | |
97 [64] = "Native American", | |
98 [65] = "Cabaret", | |
99 [66] = "New Wave", | |
100 [67] = "Psychadelic", | |
101 [68] = "Rave", | |
102 [69] = "Showtunes", | |
103 [70] = "Trailer", | |
104 [71] = "Lo-Fi", | |
105 [72] = "Tribal", | |
106 [73] = "Acid Punk", | |
107 [74] = "Acid Jazz", | |
108 [75] = "Polka", | |
109 [76] = "Retro", | |
110 [77] = "Musical", | |
111 [78] = "Rock & Roll", | |
112 [79] = "Hard Rock", | |
113 [80] = "Folk", | |
114 [81] = "Folk-Rock", | |
115 [82] = "National Folk", | |
116 [83] = "Swing", | |
117 [84] = "Fast Fusion", | |
118 [85] = "Bebob", | |
119 [86] = "Latin", | |
120 [87] = "Revival", | |
121 [88] = "Celtic", | |
122 [89] = "Bluegrass", | |
123 [90] = "Avantgarde", | |
124 [91] = "Gothic Rock", | |
125 [92] = "Progressive Rock", | |
126 [93] = "Psychedelic Rock", | |
127 [94] = "Symphonic Rock", | |
128 [95] = "Slow Rock", | |
129 [96] = "Big Band", | |
130 [97] = "Chorus", | |
131 [98] = "Easy Listening", | |
132 [99] = "Acoustic", | |
133 [100] = "Humour", | |
134 [101] = "Speech", | |
135 [102] = "Chanson", | |
136 [103] = "Opera", | |
137 [104] = "Chamber Music", | |
138 [105] = "Sonata", | |
139 [106] = "Symphony", | |
140 [107] = "Booty Bass", | |
141 [108] = "Primus", | |
142 [109] = "Porn Groove", | |
143 [110] = "Satire", | |
144 [111] = "Slow Jam", | |
145 [112] = "Club", | |
146 [113] = "Tango", | |
147 [114] = "Samba", | |
148 [115] = "Folklore", | |
149 [116] = "Ballad", | |
150 [117] = "Power Ballad", | |
151 [118] = "Rhythmic Soul", | |
152 [119] = "Freestyle", | |
153 [120] = "Duet", | |
154 [121] = "Punk Rock", | |
155 [122] = "Drum Solo", | |
156 [123] = "A capella", | |
157 [124] = "Euro-House", | |
158 [125] = "Dance Hall", | |
159 }; | |
160 | |
2096 | 161 /* buf must be ID3v2_HEADER_SIZE byte long */ |
162 static int id3v2_match(const uint8_t *buf) | |
234 | 163 { |
3278 | 164 return buf[0] == 'I' && |
234 | 165 buf[1] == 'D' && |
166 buf[2] == '3' && | |
167 buf[3] != 0xff && | |
168 buf[4] != 0xff && | |
169 (buf[6] & 0x80) == 0 && | |
170 (buf[7] & 0x80) == 0 && | |
171 (buf[8] & 0x80) == 0 && | |
3278 | 172 (buf[9] & 0x80) == 0; |
234 | 173 } |
174 | |
2097 | 175 static unsigned int id3v2_get_size(ByteIOContext *s, int len) |
176 { | |
177 int v=0; | |
178 while(len--) | |
179 v= (v<<7) + (get_byte(s)&0x7F); | |
180 return v; | |
181 } | |
182 | |
183 static void id3v2_read_ttag(AVFormatContext *s, int taglen, char *dst, int dstlen) | |
184 { | |
185 char *q; | |
186 int len; | |
187 | |
188 if(taglen < 1) | |
189 return; | |
190 | |
191 taglen--; /* account for encoding type byte */ | |
192 dstlen--; /* Leave space for zero terminator */ | |
193 | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
194 switch(get_byte(s->pb)) { /* encoding type */ |
2097 | 195 |
196 case 0: /* ISO-8859-1 (0 - 255 maps directly into unicode) */ | |
197 q = dst; | |
198 while(taglen--) { | |
199 uint8_t tmp; | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
200 PUT_UTF8(get_byte(s->pb), tmp, if (q - dst < dstlen - 1) *q++ = tmp;) |
2097 | 201 } |
202 *q = '\0'; | |
203 break; | |
204 | |
205 case 3: /* UTF-8 */ | |
206 len = FFMIN(taglen, dstlen); | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
207 get_buffer(s->pb, dst, len); |
2097 | 208 dst[len] = 0; |
209 break; | |
210 } | |
211 } | |
212 | |
213 /** | |
214 * ID3v2 parser | |
215 * | |
216 * Handles ID3v2.2, 2.3 and 2.4. | |
217 * | |
218 */ | |
219 | |
220 static void id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t flags) | |
221 { | |
222 int isv34, tlen; | |
223 uint32_t tag; | |
224 offset_t next; | |
225 char tmp[16]; | |
226 int taghdrlen; | |
227 const char *reason; | |
228 | |
229 switch(version) { | |
230 case 2: | |
231 if(flags & 0x40) { | |
232 reason = "compression"; | |
233 goto error; | |
234 } | |
235 isv34 = 0; | |
236 taghdrlen = 6; | |
237 break; | |
238 | |
2231
7ad682f38b9a
* Getting rid of the use of GCC language extensions
romansh
parents:
2222
diff
changeset
|
239 case 3: |
7ad682f38b9a
* Getting rid of the use of GCC language extensions
romansh
parents:
2222
diff
changeset
|
240 case 4: |
2097 | 241 isv34 = 1; |
242 taghdrlen = 10; | |
243 break; | |
244 | |
245 default: | |
246 reason = "version"; | |
247 goto error; | |
248 } | |
249 | |
250 if(flags & 0x80) { | |
251 reason = "unsynchronization"; | |
252 goto error; | |
253 } | |
254 | |
255 if(isv34 && flags & 0x40) /* Extended header present, just skip over it */ | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
256 url_fskip(s->pb, id3v2_get_size(s->pb, 4)); |
2097 | 257 |
258 while(len >= taghdrlen) { | |
259 if(isv34) { | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
260 tag = get_be32(s->pb); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
261 tlen = id3v2_get_size(s->pb, 4); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
262 get_be16(s->pb); /* flags */ |
2097 | 263 } else { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
264 tag = get_be24(s->pb); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
265 tlen = id3v2_get_size(s->pb, 3); |
2097 | 266 } |
267 len -= taghdrlen + tlen; | |
268 | |
269 if(len < 0) | |
270 break; | |
271 | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
272 next = url_ftell(s->pb) + tlen; |
2097 | 273 |
274 switch(tag) { | |
275 case MKBETAG('T', 'I', 'T', '2'): | |
276 case MKBETAG(0, 'T', 'T', '2'): | |
277 id3v2_read_ttag(s, tlen, s->title, sizeof(s->title)); | |
278 break; | |
279 case MKBETAG('T', 'P', 'E', '1'): | |
280 case MKBETAG(0, 'T', 'P', '1'): | |
281 id3v2_read_ttag(s, tlen, s->author, sizeof(s->author)); | |
282 break; | |
283 case MKBETAG('T', 'A', 'L', 'B'): | |
284 case MKBETAG(0, 'T', 'A', 'L'): | |
285 id3v2_read_ttag(s, tlen, s->album, sizeof(s->album)); | |
286 break; | |
287 case MKBETAG('T', 'C', 'O', 'N'): | |
288 case MKBETAG(0, 'T', 'C', 'O'): | |
289 id3v2_read_ttag(s, tlen, s->genre, sizeof(s->genre)); | |
290 break; | |
291 case MKBETAG('T', 'C', 'O', 'P'): | |
292 case MKBETAG(0, 'T', 'C', 'R'): | |
293 id3v2_read_ttag(s, tlen, s->copyright, sizeof(s->copyright)); | |
294 break; | |
295 case MKBETAG('T', 'R', 'C', 'K'): | |
296 case MKBETAG(0, 'T', 'R', 'K'): | |
297 id3v2_read_ttag(s, tlen, tmp, sizeof(tmp)); | |
298 s->track = atoi(tmp); | |
299 break; | |
300 case 0: | |
301 /* padding, skip to end */ | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
302 url_fskip(s->pb, len); |
2097 | 303 len = 0; |
304 continue; | |
305 } | |
306 /* Skip to end of tag */ | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
307 url_fseek(s->pb, next, SEEK_SET); |
2097 | 308 } |
309 | |
310 if(version == 4 && flags & 0x10) /* Footer preset, always 10 bytes, skip over it */ | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
311 url_fskip(s->pb, 10); |
2097 | 312 return; |
313 | |
314 error: | |
315 av_log(s, AV_LOG_INFO, "ID3v2.%d tag skipped, cannot handle %s\n", version, reason); | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
316 url_fskip(s->pb, len); |
2097 | 317 } |
318 | |
2096 | 319 static void id3v1_get_string(char *str, int str_size, |
320 const uint8_t *buf, int buf_size) | |
234 | 321 { |
322 int i, c; | |
323 char *q; | |
324 | |
325 q = str; | |
326 for(i = 0; i < buf_size; i++) { | |
327 c = buf[i]; | |
328 if (c == '\0') | |
329 break; | |
330 if ((q - str) >= str_size - 1) | |
331 break; | |
332 *q++ = c; | |
333 } | |
334 *q = '\0'; | |
335 } | |
336 | |
2096 | 337 /* 'buf' must be ID3v1_TAG_SIZE byte long */ |
338 static int id3v1_parse_tag(AVFormatContext *s, const uint8_t *buf) | |
234 | 339 { |
340 char str[5]; | |
341 int genre; | |
885 | 342 |
234 | 343 if (!(buf[0] == 'T' && |
344 buf[1] == 'A' && | |
345 buf[2] == 'G')) | |
346 return -1; | |
2096 | 347 id3v1_get_string(s->title, sizeof(s->title), buf + 3, 30); |
348 id3v1_get_string(s->author, sizeof(s->author), buf + 33, 30); | |
349 id3v1_get_string(s->album, sizeof(s->album), buf + 63, 30); | |
350 id3v1_get_string(str, sizeof(str), buf + 93, 4); | |
234 | 351 s->year = atoi(str); |
2096 | 352 id3v1_get_string(s->comment, sizeof(s->comment), buf + 97, 30); |
234 | 353 if (buf[125] == 0 && buf[126] != 0) |
354 s->track = buf[126]; | |
355 genre = buf[127]; | |
2096 | 356 if (genre <= ID3v1_GENRE_MAX) |
2189 | 357 av_strlcpy(s->genre, id3v1_genre_str[genre], sizeof(s->genre)); |
234 | 358 return 0; |
359 } | |
360 | |
2096 | 361 static void id3v1_create_tag(AVFormatContext *s, uint8_t *buf) |
234 | 362 { |
363 int v, i; | |
364 | |
2096 | 365 memset(buf, 0, ID3v1_TAG_SIZE); /* fail safe */ |
234 | 366 buf[0] = 'T'; |
367 buf[1] = 'A'; | |
368 buf[2] = 'G'; | |
369 strncpy(buf + 3, s->title, 30); | |
370 strncpy(buf + 33, s->author, 30); | |
371 strncpy(buf + 63, s->album, 30); | |
372 v = s->year; | |
373 if (v > 0) { | |
374 for(i = 0;i < 4; i++) { | |
375 buf[96 - i] = '0' + (v % 10); | |
376 v = v / 10; | |
377 } | |
378 } | |
379 strncpy(buf + 97, s->comment, 30); | |
380 if (s->track != 0) { | |
381 buf[125] = 0; | |
382 buf[126] = s->track; | |
383 } | |
2096 | 384 for(i = 0; i <= ID3v1_GENRE_MAX; i++) { |
385 if (!strcasecmp(s->genre, id3v1_genre_str[i])) { | |
234 | 386 buf[127] = i; |
387 break; | |
388 } | |
389 } | |
390 } | |
391 | |
392 /* mp3 read */ | |
1107 | 393 |
394 static int mp3_read_probe(AVProbeData *p) | |
395 { | |
2234
2bc002540a9b
kill uninitialised variable warning in mp3_read_probe()
mru
parents:
2231
diff
changeset
|
396 int max_frames, first_frames = 0; |
1433
dababce8f69e
dont set the sampling rate just because 1 mp3 packet header says so (fixes playback speed on some old mencoder generated avis which where then dumped to mp3)
michael
parents:
1415
diff
changeset
|
397 int fsize, frames, sample_rate; |
1308
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
398 uint32_t header; |
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
399 uint8_t *buf, *buf2, *end; |
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
400 AVCodecContext avctx; |
1107 | 401 |
2096 | 402 if(id3v2_match(p->buf)) |
403 return AVPROBE_SCORE_MAX/2+1; // this must be less than mpeg-ps because some retards put id3v2 tags before mpeg-ps files | |
1107 | 404 |
1308
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
405 max_frames = 0; |
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
406 buf = p->buf; |
2796 | 407 end = buf + p->buf_size - sizeof(uint32_t); |
1308
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
408 |
2797 | 409 for(; buf < end; buf= buf2+1) { |
1308
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
410 buf2 = buf; |
1107 | 411 |
1312 | 412 for(frames = 0; buf2 < end; frames++) { |
2222 | 413 header = AV_RB32(buf2); |
2090 | 414 fsize = ff_mpa_decode_header(&avctx, header, &sample_rate); |
1308
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
415 if(fsize < 0) |
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
416 break; |
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
417 buf2 += fsize; |
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
418 } |
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
419 max_frames = FFMAX(max_frames, frames); |
1321
9eeb01383e30
reduce scores if the mp3 frames dont start from the begin of the file (fixes flv deteted as mp3 issues)
michael
parents:
1312
diff
changeset
|
420 if(buf == p->buf) |
9eeb01383e30
reduce scores if the mp3 frames dont start from the begin of the file (fixes flv deteted as mp3 issues)
michael
parents:
1312
diff
changeset
|
421 first_frames= frames; |
1308
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
422 } |
1321
9eeb01383e30
reduce scores if the mp3 frames dont start from the begin of the file (fixes flv deteted as mp3 issues)
michael
parents:
1312
diff
changeset
|
423 if (first_frames>=3) return AVPROBE_SCORE_MAX/2+1; |
2798
51e0a502392f
return a slightly larger score if we find more than 500 valid mp3 frames in a row
michael
parents:
2797
diff
changeset
|
424 else if(max_frames>500)return AVPROBE_SCORE_MAX/2; |
1321
9eeb01383e30
reduce scores if the mp3 frames dont start from the begin of the file (fixes flv deteted as mp3 issues)
michael
parents:
1312
diff
changeset
|
425 else if(max_frames>=3) return AVPROBE_SCORE_MAX/4; |
9eeb01383e30
reduce scores if the mp3 frames dont start from the begin of the file (fixes flv deteted as mp3 issues)
michael
parents:
1312
diff
changeset
|
426 else if(max_frames>=1) return 1; |
1308
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
427 else return 0; |
1107 | 428 } |
429 | |
2662
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
430 /** |
2667
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
431 * Try to find Xing/Info/VBRI tags and compute duration from info therein |
2662
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
432 */ |
2667
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
433 static void mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, offset_t base) |
2662
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
434 { |
2663
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
435 uint32_t v, spf; |
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
436 int frames = -1; /* Total number of frames in file */ |
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
437 const offset_t xing_offtbl[2][2] = {{32, 17}, {17,9}}; |
2662
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
438 MPADecodeContext c; |
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
439 |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
440 v = get_be32(s->pb); |
2703
2c2da3011d6e
make sure the mpeg audio header is valid before passing it to ff_mpegaudio_decode_header()
andoma
parents:
2667
diff
changeset
|
441 if(ff_mpa_check_header(v) < 0) |
2c2da3011d6e
make sure the mpeg audio header is valid before passing it to ff_mpegaudio_decode_header()
andoma
parents:
2667
diff
changeset
|
442 return; |
2c2da3011d6e
make sure the mpeg audio header is valid before passing it to ff_mpegaudio_decode_header()
andoma
parents:
2667
diff
changeset
|
443 |
2c2da3011d6e
make sure the mpeg audio header is valid before passing it to ff_mpegaudio_decode_header()
andoma
parents:
2667
diff
changeset
|
444 ff_mpegaudio_decode_header(&c, v); |
2663
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
445 if(c.layer != 3) |
2664 | 446 return; |
2662
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
447 |
2663
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
448 /* Check for Xing / Info tag */ |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
449 url_fseek(s->pb, xing_offtbl[c.lsf == 1][c.nb_channels == 1], SEEK_CUR); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
450 v = get_be32(s->pb); |
2663
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
451 if(v == MKBETAG('X', 'i', 'n', 'g') || v == MKBETAG('I', 'n', 'f', 'o')) { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
452 v = get_be32(s->pb); |
2664 | 453 if(v & 0x1) |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
454 frames = get_be32(s->pb); |
2663
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
455 } |
2662
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
456 |
2667
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
457 /* Check for VBRI tag (always 32 bytes after end of mpegaudio header) */ |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
458 url_fseek(s->pb, base + 4 + 32, SEEK_SET); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
459 v = get_be32(s->pb); |
2667
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
460 if(v == MKBETAG('V', 'B', 'R', 'I')) { |
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
461 /* Check tag version */ |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
462 if(get_be16(s->pb) == 1) { |
2667
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
463 /* skip delay, quality and total bytes */ |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
464 url_fseek(s->pb, 8, SEEK_CUR); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
465 frames = get_be32(s->pb); |
2667
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
466 } |
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
467 } |
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
468 |
2663
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
469 if(frames < 0) |
2664 | 470 return; |
2663
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
471 |
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
472 spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */ |
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
473 st->duration = av_rescale_q(frames, (AVRational){spf, c.sample_rate}, |
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
474 st->time_base); |
2662
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
475 } |
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
476 |
234 | 477 static int mp3_read_header(AVFormatContext *s, |
478 AVFormatParameters *ap) | |
479 { | |
480 AVStream *st; | |
2096 | 481 uint8_t buf[ID3v1_TAG_SIZE]; |
234 | 482 int len, ret, filesize; |
2662
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
483 offset_t off; |
234 | 484 |
485 st = av_new_stream(s, 0); | |
486 if (!st) | |
2273
7eb456c4ed8a
Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).
takis
parents:
2234
diff
changeset
|
487 return AVERROR(ENOMEM); |
234 | 488 |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
489 st->codec->codec_type = CODEC_TYPE_AUDIO; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
490 st->codec->codec_id = CODEC_ID_MP3; |
2023 | 491 st->need_parsing = AVSTREAM_PARSE_FULL; |
2622 | 492 st->start_time = 0; |
885 | 493 |
234 | 494 /* try to get the TAG */ |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
495 if (!url_is_streamed(s->pb)) { |
234 | 496 /* XXX: change that */ |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
497 filesize = url_fsize(s->pb); |
234 | 498 if (filesize > 128) { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
499 url_fseek(s->pb, filesize - 128, SEEK_SET); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
500 ret = get_buffer(s->pb, buf, ID3v1_TAG_SIZE); |
2096 | 501 if (ret == ID3v1_TAG_SIZE) { |
502 id3v1_parse_tag(s, buf); | |
234 | 503 } |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
504 url_fseek(s->pb, 0, SEEK_SET); |
234 | 505 } |
506 } | |
507 | |
2096 | 508 /* if ID3v2 header found, skip it */ |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
509 ret = get_buffer(s->pb, buf, ID3v2_HEADER_SIZE); |
2096 | 510 if (ret != ID3v2_HEADER_SIZE) |
234 | 511 return -1; |
2096 | 512 if (id3v2_match(buf)) { |
2097 | 513 /* parse ID3v2 header */ |
234 | 514 len = ((buf[6] & 0x7f) << 21) | |
515 ((buf[7] & 0x7f) << 14) | | |
516 ((buf[8] & 0x7f) << 7) | | |
517 (buf[9] & 0x7f); | |
2097 | 518 id3v2_parse(s, len, buf[3], buf[5]); |
234 | 519 } else { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
520 url_fseek(s->pb, 0, SEEK_SET); |
234 | 521 } |
522 | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
523 off = url_ftell(s->pb); |
2667
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
524 mp3_parse_vbr_tags(s, st, off); |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
525 url_fseek(s->pb, off, SEEK_SET); |
2662
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
526 |
234 | 527 /* the parameters will be extracted from the compressed bitstream */ |
528 return 0; | |
529 } | |
530 | |
531 #define MP3_PACKET_SIZE 1024 | |
532 | |
533 static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt) | |
534 { | |
535 int ret, size; | |
536 // AVStream *st = s->streams[0]; | |
885 | 537 |
234 | 538 size= MP3_PACKET_SIZE; |
539 | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
540 ret= av_get_packet(s->pb, pkt, size); |
234 | 541 |
542 pkt->stream_index = 0; | |
543 if (ret <= 0) { | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2273
diff
changeset
|
544 return AVERROR(EIO); |
234 | 545 } |
546 /* note: we need to modify the packet size here to handle the last | |
547 packet */ | |
548 pkt->size = ret; | |
549 return ret; | |
550 } | |
551 | |
552 static int mp3_read_close(AVFormatContext *s) | |
553 { | |
554 return 0; | |
555 } | |
556 | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
557 #ifdef CONFIG_MUXERS |
234 | 558 /* simple formats */ |
2098 | 559 |
560 static void id3v2_put_size(AVFormatContext *s, int size) | |
561 { | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
562 put_byte(s->pb, size >> 21 & 0x7f); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
563 put_byte(s->pb, size >> 14 & 0x7f); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
564 put_byte(s->pb, size >> 7 & 0x7f); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
565 put_byte(s->pb, size & 0x7f); |
2098 | 566 } |
567 | |
3008 | 568 static void id3v2_put_ttag(AVFormatContext *s, const char *string, uint32_t tag) |
2098 | 569 { |
570 int len = strlen(string); | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
571 put_be32(s->pb, tag); |
2098 | 572 id3v2_put_size(s, len + 1); |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
573 put_be16(s->pb, 0); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
574 put_byte(s->pb, 3); /* UTF-8 */ |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
575 put_buffer(s->pb, string, len); |
2098 | 576 } |
577 | |
578 | |
579 /** | |
580 * Write an ID3v2.4 header at beginning of stream | |
581 */ | |
582 | |
234 | 583 static int mp3_write_header(struct AVFormatContext *s) |
584 { | |
2098 | 585 int totlen = 0; |
586 char tracktxt[10]; | |
2735 | 587 char yeartxt[10]; |
2098 | 588 |
589 if(s->track) | |
2746 | 590 snprintf(tracktxt, sizeof(tracktxt), "%d", s->track); |
2735 | 591 if(s->year) |
2746 | 592 snprintf( yeartxt, sizeof(yeartxt) , "%d", s->year ); |
2098 | 593 |
594 if(s->title[0]) totlen += 11 + strlen(s->title); | |
595 if(s->author[0]) totlen += 11 + strlen(s->author); | |
596 if(s->album[0]) totlen += 11 + strlen(s->album); | |
597 if(s->genre[0]) totlen += 11 + strlen(s->genre); | |
598 if(s->copyright[0]) totlen += 11 + strlen(s->copyright); | |
599 if(s->track) totlen += 11 + strlen(tracktxt); | |
2735 | 600 if(s->year) totlen += 11 + strlen(yeartxt); |
2098 | 601 if(!(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)) |
602 totlen += strlen(LIBAVFORMAT_IDENT) + 11; | |
603 | |
604 if(totlen == 0) | |
605 return 0; | |
606 | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
607 put_be32(s->pb, MKBETAG('I', 'D', '3', 0x04)); /* ID3v2.4 */ |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
608 put_byte(s->pb, 0); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
609 put_byte(s->pb, 0); /* flags */ |
2098 | 610 |
611 id3v2_put_size(s, totlen); | |
612 | |
613 if(s->title[0]) id3v2_put_ttag(s, s->title, MKBETAG('T', 'I', 'T', '2')); | |
614 if(s->author[0]) id3v2_put_ttag(s, s->author, MKBETAG('T', 'P', 'E', '1')); | |
615 if(s->album[0]) id3v2_put_ttag(s, s->album, MKBETAG('T', 'A', 'L', 'B')); | |
616 if(s->genre[0]) id3v2_put_ttag(s, s->genre, MKBETAG('T', 'C', 'O', 'N')); | |
617 if(s->copyright[0]) id3v2_put_ttag(s, s->copyright, MKBETAG('T', 'C', 'O', 'P')); | |
618 if(s->track) id3v2_put_ttag(s, tracktxt, MKBETAG('T', 'R', 'C', 'K')); | |
2735 | 619 if(s->year) id3v2_put_ttag(s, yeartxt, MKBETAG('T', 'Y', 'E', 'R')); |
2098 | 620 if(!(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)) |
621 id3v2_put_ttag(s, LIBAVFORMAT_IDENT, MKBETAG('T', 'E', 'N', 'C')); | |
234 | 622 return 0; |
623 } | |
624 | |
468 | 625 static int mp3_write_packet(struct AVFormatContext *s, AVPacket *pkt) |
234 | 626 { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
627 put_buffer(s->pb, pkt->data, pkt->size); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
628 put_flush_packet(s->pb); |
234 | 629 return 0; |
630 } | |
631 | |
632 static int mp3_write_trailer(struct AVFormatContext *s) | |
633 { | |
2096 | 634 uint8_t buf[ID3v1_TAG_SIZE]; |
234 | 635 |
2096 | 636 /* write the id3v1 tag */ |
234 | 637 if (s->title[0] != '\0') { |
2096 | 638 id3v1_create_tag(s, buf); |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
639 put_buffer(s->pb, buf, ID3v1_TAG_SIZE); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
640 put_flush_packet(s->pb); |
234 | 641 } |
642 return 0; | |
643 } | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
644 #endif //CONFIG_MUXERS |
234 | 645 |
1169 | 646 #ifdef CONFIG_MP3_DEMUXER |
1167 | 647 AVInputFormat mp3_demuxer = { |
234 | 648 "mp3", |
649 "MPEG audio", | |
650 0, | |
1107 | 651 mp3_read_probe, |
234 | 652 mp3_read_header, |
653 mp3_read_packet, | |
654 mp3_read_close, | |
1756 | 655 .flags= AVFMT_GENERIC_INDEX, |
814 | 656 .extensions = "mp2,mp3,m2a", /* XXX: use probe */ |
234 | 657 }; |
1169 | 658 #endif |
659 #ifdef CONFIG_MP2_MUXER | |
1167 | 660 AVOutputFormat mp2_muxer = { |
234 | 661 "mp2", |
662 "MPEG audio layer 2", | |
663 "audio/x-mpeg", | |
1622 | 664 #ifdef CONFIG_LIBMP3LAME |
814 | 665 "mp2,m2a", |
234 | 666 #else |
814 | 667 "mp2,mp3,m2a", |
234 | 668 #endif |
669 0, | |
670 CODEC_ID_MP2, | |
3289 | 671 CODEC_ID_NONE, |
2306
d045cbcf37a3
do not write id3v2 header when writing .mp2 files
bcoudurier
parents:
2274
diff
changeset
|
672 NULL, |
234 | 673 mp3_write_packet, |
674 mp3_write_trailer, | |
675 }; | |
1169 | 676 #endif |
677 #ifdef CONFIG_MP3_MUXER | |
1167 | 678 AVOutputFormat mp3_muxer = { |
234 | 679 "mp3", |
680 "MPEG audio layer 3", | |
681 "audio/x-mpeg", | |
682 "mp3", | |
683 0, | |
684 CODEC_ID_MP3, | |
3289 | 685 CODEC_ID_NONE, |
234 | 686 mp3_write_header, |
687 mp3_write_packet, | |
688 mp3_write_trailer, | |
689 }; | |
690 #endif |