Mercurial > libavformat.hg
annotate mp3.c @ 3565:b3e976d080cd libavformat
Move set_codec_from_probe_data() up to where the other probe functions are.
| author | michael |
|---|---|
| date | Sat, 12 Jul 2008 13:25:26 +0000 |
| parents | bc473761b9e7 |
| children | 3790cb6c893d |
| 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 | |
|
3539
4dee13c8073a
All id3 parsers are buggy, 0 termination fix 1 of n (issue created by andreas
michael
parents:
3484
diff
changeset
|
188 if(dstlen > 0) |
|
4dee13c8073a
All id3 parsers are buggy, 0 termination fix 1 of n (issue created by andreas
michael
parents:
3484
diff
changeset
|
189 dst[0]= 0; |
| 2097 | 190 if(taglen < 1) |
| 191 return; | |
| 192 | |
| 193 taglen--; /* account for encoding type byte */ | |
| 194 dstlen--; /* Leave space for zero terminator */ | |
| 195 | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
196 switch(get_byte(s->pb)) { /* encoding type */ |
| 2097 | 197 |
| 198 case 0: /* ISO-8859-1 (0 - 255 maps directly into unicode) */ | |
| 199 q = dst; | |
| 200 while(taglen--) { | |
| 201 uint8_t tmp; | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
202 PUT_UTF8(get_byte(s->pb), tmp, if (q - dst < dstlen - 1) *q++ = tmp;) |
| 2097 | 203 } |
| 204 *q = '\0'; | |
| 205 break; | |
| 206 | |
| 207 case 3: /* UTF-8 */ | |
|
3540
3dfb35d2ac51
All mp3 parsers are buggy fix 2 of n (out of array write, i suspect not exploitable)
michael
parents:
3539
diff
changeset
|
208 len = FFMIN(taglen, dstlen-1); |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
209 get_buffer(s->pb, dst, len); |
| 2097 | 210 dst[len] = 0; |
| 211 break; | |
| 212 } | |
| 213 } | |
| 214 | |
| 215 /** | |
| 216 * ID3v2 parser | |
| 217 * | |
| 218 * Handles ID3v2.2, 2.3 and 2.4. | |
| 219 * | |
| 220 */ | |
| 221 | |
| 222 static void id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t flags) | |
| 223 { | |
| 224 int isv34, tlen; | |
| 225 uint32_t tag; | |
| 226 offset_t next; | |
| 227 char tmp[16]; | |
| 228 int taghdrlen; | |
| 229 const char *reason; | |
| 230 | |
| 231 switch(version) { | |
| 232 case 2: | |
| 233 if(flags & 0x40) { | |
| 234 reason = "compression"; | |
| 235 goto error; | |
| 236 } | |
| 237 isv34 = 0; | |
| 238 taghdrlen = 6; | |
| 239 break; | |
| 240 | |
|
2231
7ad682f38b9a
* Getting rid of the use of GCC language extensions
romansh
parents:
2222
diff
changeset
|
241 case 3: |
|
7ad682f38b9a
* Getting rid of the use of GCC language extensions
romansh
parents:
2222
diff
changeset
|
242 case 4: |
| 2097 | 243 isv34 = 1; |
| 244 taghdrlen = 10; | |
| 245 break; | |
| 246 | |
| 247 default: | |
| 248 reason = "version"; | |
| 249 goto error; | |
| 250 } | |
| 251 | |
| 252 if(flags & 0x80) { | |
| 253 reason = "unsynchronization"; | |
| 254 goto error; | |
| 255 } | |
| 256 | |
| 257 if(isv34 && flags & 0x40) /* Extended header present, just skip over it */ | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
258 url_fskip(s->pb, id3v2_get_size(s->pb, 4)); |
| 2097 | 259 |
| 260 while(len >= taghdrlen) { | |
| 261 if(isv34) { | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
262 tag = get_be32(s->pb); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
263 tlen = id3v2_get_size(s->pb, 4); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
264 get_be16(s->pb); /* flags */ |
| 2097 | 265 } else { |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
266 tag = get_be24(s->pb); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
267 tlen = id3v2_get_size(s->pb, 3); |
| 2097 | 268 } |
| 269 len -= taghdrlen + tlen; | |
| 270 | |
| 271 if(len < 0) | |
| 272 break; | |
| 273 | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
274 next = url_ftell(s->pb) + tlen; |
| 2097 | 275 |
| 276 switch(tag) { | |
| 277 case MKBETAG('T', 'I', 'T', '2'): | |
| 278 case MKBETAG(0, 'T', 'T', '2'): | |
| 279 id3v2_read_ttag(s, tlen, s->title, sizeof(s->title)); | |
| 280 break; | |
| 281 case MKBETAG('T', 'P', 'E', '1'): | |
| 282 case MKBETAG(0, 'T', 'P', '1'): | |
| 283 id3v2_read_ttag(s, tlen, s->author, sizeof(s->author)); | |
| 284 break; | |
| 285 case MKBETAG('T', 'A', 'L', 'B'): | |
| 286 case MKBETAG(0, 'T', 'A', 'L'): | |
| 287 id3v2_read_ttag(s, tlen, s->album, sizeof(s->album)); | |
| 288 break; | |
| 289 case MKBETAG('T', 'C', 'O', 'N'): | |
| 290 case MKBETAG(0, 'T', 'C', 'O'): | |
| 291 id3v2_read_ttag(s, tlen, s->genre, sizeof(s->genre)); | |
| 292 break; | |
| 293 case MKBETAG('T', 'C', 'O', 'P'): | |
| 294 case MKBETAG(0, 'T', 'C', 'R'): | |
| 295 id3v2_read_ttag(s, tlen, s->copyright, sizeof(s->copyright)); | |
| 296 break; | |
| 297 case MKBETAG('T', 'R', 'C', 'K'): | |
| 298 case MKBETAG(0, 'T', 'R', 'K'): | |
| 299 id3v2_read_ttag(s, tlen, tmp, sizeof(tmp)); | |
| 300 s->track = atoi(tmp); | |
| 301 break; | |
| 302 case 0: | |
| 303 /* padding, skip to end */ | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
304 url_fskip(s->pb, len); |
| 2097 | 305 len = 0; |
| 306 continue; | |
| 307 } | |
| 308 /* Skip to end of tag */ | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
309 url_fseek(s->pb, next, SEEK_SET); |
| 2097 | 310 } |
| 311 | |
| 312 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
|
313 url_fskip(s->pb, 10); |
| 2097 | 314 return; |
| 315 | |
| 316 error: | |
| 317 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
|
318 url_fskip(s->pb, len); |
| 2097 | 319 } |
| 320 | |
| 2096 | 321 static void id3v1_get_string(char *str, int str_size, |
| 322 const uint8_t *buf, int buf_size) | |
| 234 | 323 { |
| 324 int i, c; | |
| 325 char *q; | |
| 326 | |
| 327 q = str; | |
| 328 for(i = 0; i < buf_size; i++) { | |
| 329 c = buf[i]; | |
| 330 if (c == '\0') | |
| 331 break; | |
| 332 if ((q - str) >= str_size - 1) | |
| 333 break; | |
| 334 *q++ = c; | |
| 335 } | |
| 336 *q = '\0'; | |
| 337 } | |
| 338 | |
| 2096 | 339 /* 'buf' must be ID3v1_TAG_SIZE byte long */ |
| 340 static int id3v1_parse_tag(AVFormatContext *s, const uint8_t *buf) | |
| 234 | 341 { |
| 342 char str[5]; | |
| 343 int genre; | |
| 885 | 344 |
| 234 | 345 if (!(buf[0] == 'T' && |
| 346 buf[1] == 'A' && | |
| 347 buf[2] == 'G')) | |
| 348 return -1; | |
| 2096 | 349 id3v1_get_string(s->title, sizeof(s->title), buf + 3, 30); |
| 350 id3v1_get_string(s->author, sizeof(s->author), buf + 33, 30); | |
| 351 id3v1_get_string(s->album, sizeof(s->album), buf + 63, 30); | |
| 352 id3v1_get_string(str, sizeof(str), buf + 93, 4); | |
| 234 | 353 s->year = atoi(str); |
| 2096 | 354 id3v1_get_string(s->comment, sizeof(s->comment), buf + 97, 30); |
| 234 | 355 if (buf[125] == 0 && buf[126] != 0) |
| 356 s->track = buf[126]; | |
| 357 genre = buf[127]; | |
| 2096 | 358 if (genre <= ID3v1_GENRE_MAX) |
| 2189 | 359 av_strlcpy(s->genre, id3v1_genre_str[genre], sizeof(s->genre)); |
| 234 | 360 return 0; |
| 361 } | |
| 362 | |
| 363 /* mp3 read */ | |
| 1107 | 364 |
| 365 static int mp3_read_probe(AVProbeData *p) | |
| 366 { | |
|
2234
2bc002540a9b
kill uninitialised variable warning in mp3_read_probe()
mru
parents:
2231
diff
changeset
|
367 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
|
368 int fsize, frames, sample_rate; |
|
1308
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
369 uint32_t header; |
|
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
370 uint8_t *buf, *buf2, *end; |
|
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
371 AVCodecContext avctx; |
| 1107 | 372 |
| 2096 | 373 if(id3v2_match(p->buf)) |
| 374 return AVPROBE_SCORE_MAX/2+1; // this must be less than mpeg-ps because some retards put id3v2 tags before mpeg-ps files | |
| 1107 | 375 |
|
1308
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
376 max_frames = 0; |
|
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
377 buf = p->buf; |
| 2796 | 378 end = buf + p->buf_size - sizeof(uint32_t); |
|
1308
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
379 |
| 2797 | 380 for(; buf < end; buf= buf2+1) { |
|
1308
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
381 buf2 = buf; |
| 1107 | 382 |
| 1312 | 383 for(frames = 0; buf2 < end; frames++) { |
| 2222 | 384 header = AV_RB32(buf2); |
| 2090 | 385 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
|
386 if(fsize < 0) |
|
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
387 break; |
|
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
388 buf2 += fsize; |
|
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
389 } |
|
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
390 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
|
391 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
|
392 first_frames= frames; |
|
1308
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
393 } |
|
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
|
394 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
|
395 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
|
396 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
|
397 else if(max_frames>=1) return 1; |
|
1308
866d43ed0a67
allow ffmpeg to read mp3s beginning with partial frames
gpoirier
parents:
1169
diff
changeset
|
398 else return 0; |
| 1107 | 399 } |
| 400 | |
|
2662
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
401 /** |
|
2667
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
402 * 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
|
403 */ |
|
2667
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
404 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
|
405 { |
|
2663
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
406 uint32_t v, spf; |
|
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
407 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
|
408 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
|
409 MPADecodeContext c; |
|
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
410 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
411 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
|
412 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
|
413 return; |
|
2c2da3011d6e
make sure the mpeg audio header is valid before passing it to ff_mpegaudio_decode_header()
andoma
parents:
2667
diff
changeset
|
414 |
|
2c2da3011d6e
make sure the mpeg audio header is valid before passing it to ff_mpegaudio_decode_header()
andoma
parents:
2667
diff
changeset
|
415 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
|
416 if(c.layer != 3) |
| 2664 | 417 return; |
|
2662
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
418 |
|
2663
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
419 /* Check for Xing / Info tag */ |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
420 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
|
421 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
|
422 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
|
423 v = get_be32(s->pb); |
| 2664 | 424 if(v & 0x1) |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
425 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
|
426 } |
|
2662
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
427 |
|
2667
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
428 /* 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
|
429 url_fseek(s->pb, base + 4 + 32, SEEK_SET); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
430 v = get_be32(s->pb); |
|
2667
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
431 if(v == MKBETAG('V', 'B', 'R', 'I')) { |
|
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
432 /* Check tag version */ |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
433 if(get_be16(s->pb) == 1) { |
|
2667
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
434 /* skip delay, quality and total bytes */ |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
435 url_fseek(s->pb, 8, SEEK_CUR); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
436 frames = get_be32(s->pb); |
|
2667
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
437 } |
|
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
438 } |
|
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
439 |
|
2663
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
440 if(frames < 0) |
| 2664 | 441 return; |
|
2663
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
442 |
|
be889462edfc
cosmetical change of mp3_parse_xing() to prepare for upcoming VBRI tag support
andoma
parents:
2662
diff
changeset
|
443 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
|
444 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
|
445 st->time_base); |
|
2662
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
446 } |
|
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
447 |
| 234 | 448 static int mp3_read_header(AVFormatContext *s, |
| 449 AVFormatParameters *ap) | |
| 450 { | |
| 451 AVStream *st; | |
| 2096 | 452 uint8_t buf[ID3v1_TAG_SIZE]; |
| 234 | 453 int len, ret, filesize; |
|
2662
08b1ac852321
add support for reading duration from Xing-tag in mp3 files
andoma
parents:
2622
diff
changeset
|
454 offset_t off; |
| 234 | 455 |
| 456 st = av_new_stream(s, 0); | |
| 457 if (!st) | |
|
2273
7eb456c4ed8a
Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).
takis
parents:
2234
diff
changeset
|
458 return AVERROR(ENOMEM); |
| 234 | 459 |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
460 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
|
461 st->codec->codec_id = CODEC_ID_MP3; |
| 2023 | 462 st->need_parsing = AVSTREAM_PARSE_FULL; |
| 2622 | 463 st->start_time = 0; |
| 885 | 464 |
| 234 | 465 /* try to get the TAG */ |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
466 if (!url_is_streamed(s->pb)) { |
| 234 | 467 /* XXX: change that */ |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
468 filesize = url_fsize(s->pb); |
| 234 | 469 if (filesize > 128) { |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
470 url_fseek(s->pb, filesize - 128, SEEK_SET); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
471 ret = get_buffer(s->pb, buf, ID3v1_TAG_SIZE); |
| 2096 | 472 if (ret == ID3v1_TAG_SIZE) { |
| 473 id3v1_parse_tag(s, buf); | |
| 234 | 474 } |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
475 url_fseek(s->pb, 0, SEEK_SET); |
| 234 | 476 } |
| 477 } | |
| 478 | |
| 2096 | 479 /* if ID3v2 header found, skip it */ |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
480 ret = get_buffer(s->pb, buf, ID3v2_HEADER_SIZE); |
| 2096 | 481 if (ret != ID3v2_HEADER_SIZE) |
| 234 | 482 return -1; |
| 2096 | 483 if (id3v2_match(buf)) { |
| 2097 | 484 /* parse ID3v2 header */ |
| 234 | 485 len = ((buf[6] & 0x7f) << 21) | |
| 486 ((buf[7] & 0x7f) << 14) | | |
| 487 ((buf[8] & 0x7f) << 7) | | |
| 488 (buf[9] & 0x7f); | |
| 2097 | 489 id3v2_parse(s, len, buf[3], buf[5]); |
| 234 | 490 } else { |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
491 url_fseek(s->pb, 0, SEEK_SET); |
| 234 | 492 } |
| 493 | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
494 off = url_ftell(s->pb); |
|
2667
e896ac505ec6
add support for reading duration from VBRI-tag in mp3 files
andoma
parents:
2664
diff
changeset
|
495 mp3_parse_vbr_tags(s, st, off); |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
496 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
|
497 |
| 234 | 498 /* the parameters will be extracted from the compressed bitstream */ |
| 499 return 0; | |
| 500 } | |
| 501 | |
| 502 #define MP3_PACKET_SIZE 1024 | |
| 503 | |
| 504 static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt) | |
| 505 { | |
| 506 int ret, size; | |
| 507 // AVStream *st = s->streams[0]; | |
| 885 | 508 |
| 234 | 509 size= MP3_PACKET_SIZE; |
| 510 | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
511 ret= av_get_packet(s->pb, pkt, size); |
| 234 | 512 |
| 513 pkt->stream_index = 0; | |
| 514 if (ret <= 0) { | |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2273
diff
changeset
|
515 return AVERROR(EIO); |
| 234 | 516 } |
| 517 /* note: we need to modify the packet size here to handle the last | |
| 518 packet */ | |
| 519 pkt->size = ret; | |
| 520 return ret; | |
| 521 } | |
| 522 | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
523 #ifdef CONFIG_MUXERS |
|
3561
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
524 static void id3v1_create_tag(AVFormatContext *s, uint8_t *buf) |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
525 { |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
526 int v, i; |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
527 |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
528 memset(buf, 0, ID3v1_TAG_SIZE); /* fail safe */ |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
529 buf[0] = 'T'; |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
530 buf[1] = 'A'; |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
531 buf[2] = 'G'; |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
532 strncpy(buf + 3, s->title, 30); |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
533 strncpy(buf + 33, s->author, 30); |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
534 strncpy(buf + 63, s->album, 30); |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
535 v = s->year; |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
536 if (v > 0) { |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
537 for(i = 0;i < 4; i++) { |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
538 buf[96 - i] = '0' + (v % 10); |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
539 v = v / 10; |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
540 } |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
541 } |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
542 strncpy(buf + 97, s->comment, 30); |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
543 if (s->track != 0) { |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
544 buf[125] = 0; |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
545 buf[126] = s->track; |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
546 } |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
547 for(i = 0; i <= ID3v1_GENRE_MAX; i++) { |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
548 if (!strcasecmp(s->genre, id3v1_genre_str[i])) { |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
549 buf[127] = i; |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
550 break; |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
551 } |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
552 } |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
553 } |
|
bc473761b9e7
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
diego
parents:
3540
diff
changeset
|
554 |
| 234 | 555 /* simple formats */ |
| 2098 | 556 |
| 557 static void id3v2_put_size(AVFormatContext *s, int size) | |
| 558 { | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
559 put_byte(s->pb, size >> 21 & 0x7f); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
560 put_byte(s->pb, size >> 14 & 0x7f); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
561 put_byte(s->pb, size >> 7 & 0x7f); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
562 put_byte(s->pb, size & 0x7f); |
| 2098 | 563 } |
| 564 | |
| 3008 | 565 static void id3v2_put_ttag(AVFormatContext *s, const char *string, uint32_t tag) |
| 2098 | 566 { |
| 567 int len = strlen(string); | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
568 put_be32(s->pb, tag); |
| 2098 | 569 id3v2_put_size(s, len + 1); |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
570 put_be16(s->pb, 0); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
571 put_byte(s->pb, 3); /* UTF-8 */ |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
572 put_buffer(s->pb, string, len); |
| 2098 | 573 } |
| 574 | |
| 575 | |
| 576 /** | |
| 577 * Write an ID3v2.4 header at beginning of stream | |
| 578 */ | |
| 579 | |
| 234 | 580 static int mp3_write_header(struct AVFormatContext *s) |
| 581 { | |
| 2098 | 582 int totlen = 0; |
| 583 char tracktxt[10]; | |
| 2735 | 584 char yeartxt[10]; |
| 2098 | 585 |
| 586 if(s->track) | |
| 2746 | 587 snprintf(tracktxt, sizeof(tracktxt), "%d", s->track); |
| 2735 | 588 if(s->year) |
| 2746 | 589 snprintf( yeartxt, sizeof(yeartxt) , "%d", s->year ); |
| 2098 | 590 |
| 591 if(s->title[0]) totlen += 11 + strlen(s->title); | |
| 592 if(s->author[0]) totlen += 11 + strlen(s->author); | |
| 593 if(s->album[0]) totlen += 11 + strlen(s->album); | |
| 594 if(s->genre[0]) totlen += 11 + strlen(s->genre); | |
| 595 if(s->copyright[0]) totlen += 11 + strlen(s->copyright); | |
| 596 if(s->track) totlen += 11 + strlen(tracktxt); | |
| 2735 | 597 if(s->year) totlen += 11 + strlen(yeartxt); |
| 2098 | 598 if(!(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)) |
| 599 totlen += strlen(LIBAVFORMAT_IDENT) + 11; | |
| 600 | |
| 601 if(totlen == 0) | |
| 602 return 0; | |
| 603 | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
604 put_be32(s->pb, MKBETAG('I', 'D', '3', 0x04)); /* ID3v2.4 */ |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
605 put_byte(s->pb, 0); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
606 put_byte(s->pb, 0); /* flags */ |
| 2098 | 607 |
| 608 id3v2_put_size(s, totlen); | |
| 609 | |
| 610 if(s->title[0]) id3v2_put_ttag(s, s->title, MKBETAG('T', 'I', 'T', '2')); | |
| 611 if(s->author[0]) id3v2_put_ttag(s, s->author, MKBETAG('T', 'P', 'E', '1')); | |
| 612 if(s->album[0]) id3v2_put_ttag(s, s->album, MKBETAG('T', 'A', 'L', 'B')); | |
| 613 if(s->genre[0]) id3v2_put_ttag(s, s->genre, MKBETAG('T', 'C', 'O', 'N')); | |
| 614 if(s->copyright[0]) id3v2_put_ttag(s, s->copyright, MKBETAG('T', 'C', 'O', 'P')); | |
| 615 if(s->track) id3v2_put_ttag(s, tracktxt, MKBETAG('T', 'R', 'C', 'K')); | |
| 2735 | 616 if(s->year) id3v2_put_ttag(s, yeartxt, MKBETAG('T', 'Y', 'E', 'R')); |
| 2098 | 617 if(!(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)) |
| 618 id3v2_put_ttag(s, LIBAVFORMAT_IDENT, MKBETAG('T', 'E', 'N', 'C')); | |
| 234 | 619 return 0; |
| 620 } | |
| 621 | |
| 468 | 622 static int mp3_write_packet(struct AVFormatContext *s, AVPacket *pkt) |
| 234 | 623 { |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
624 put_buffer(s->pb, pkt->data, pkt->size); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
625 put_flush_packet(s->pb); |
| 234 | 626 return 0; |
| 627 } | |
| 628 | |
| 629 static int mp3_write_trailer(struct AVFormatContext *s) | |
| 630 { | |
| 2096 | 631 uint8_t buf[ID3v1_TAG_SIZE]; |
| 234 | 632 |
| 2096 | 633 /* write the id3v1 tag */ |
| 234 | 634 if (s->title[0] != '\0') { |
| 2096 | 635 id3v1_create_tag(s, buf); |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
636 put_buffer(s->pb, buf, ID3v1_TAG_SIZE); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2746
diff
changeset
|
637 put_flush_packet(s->pb); |
| 234 | 638 } |
| 639 return 0; | |
| 640 } | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
641 #endif //CONFIG_MUXERS |
| 234 | 642 |
| 1169 | 643 #ifdef CONFIG_MP3_DEMUXER |
| 1167 | 644 AVInputFormat mp3_demuxer = { |
| 234 | 645 "mp3", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3289
diff
changeset
|
646 NULL_IF_CONFIG_SMALL("MPEG audio"), |
| 234 | 647 0, |
| 1107 | 648 mp3_read_probe, |
| 234 | 649 mp3_read_header, |
| 650 mp3_read_packet, | |
| 1756 | 651 .flags= AVFMT_GENERIC_INDEX, |
| 814 | 652 .extensions = "mp2,mp3,m2a", /* XXX: use probe */ |
| 234 | 653 }; |
| 1169 | 654 #endif |
| 655 #ifdef CONFIG_MP2_MUXER | |
| 1167 | 656 AVOutputFormat mp2_muxer = { |
| 234 | 657 "mp2", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3289
diff
changeset
|
658 NULL_IF_CONFIG_SMALL("MPEG audio layer 2"), |
| 234 | 659 "audio/x-mpeg", |
| 1622 | 660 #ifdef CONFIG_LIBMP3LAME |
| 814 | 661 "mp2,m2a", |
| 234 | 662 #else |
| 814 | 663 "mp2,mp3,m2a", |
| 234 | 664 #endif |
| 665 0, | |
| 666 CODEC_ID_MP2, | |
| 3289 | 667 CODEC_ID_NONE, |
|
2306
d045cbcf37a3
do not write id3v2 header when writing .mp2 files
bcoudurier
parents:
2274
diff
changeset
|
668 NULL, |
| 234 | 669 mp3_write_packet, |
| 670 mp3_write_trailer, | |
| 671 }; | |
| 1169 | 672 #endif |
| 673 #ifdef CONFIG_MP3_MUXER | |
| 1167 | 674 AVOutputFormat mp3_muxer = { |
| 234 | 675 "mp3", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3289
diff
changeset
|
676 NULL_IF_CONFIG_SMALL("MPEG audio layer 3"), |
| 234 | 677 "audio/x-mpeg", |
| 678 "mp3", | |
| 679 0, | |
| 680 CODEC_ID_MP3, | |
| 3289 | 681 CODEC_ID_NONE, |
| 234 | 682 mp3_write_header, |
| 683 mp3_write_packet, | |
| 684 mp3_write_trailer, | |
| 685 }; | |
| 686 #endif |
