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