]> git.sesse.net Git - ffmpeg/blob - libavformat/id3v2.c
ffplay: get rid of void casts in the option table
[ffmpeg] / libavformat / id3v2.c
1 /*
2  * Copyright (c) 2003 Fabrice Bellard
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * ID3v2 header parser
24  *
25  * Specifications available at:
26  * http://id3.org/Developer_Information
27  */
28
29 #include "config.h"
30
31 #if CONFIG_ZLIB
32 #include <zlib.h>
33 #endif
34
35 #include "id3v2.h"
36 #include "id3v1.h"
37 #include "libavutil/avstring.h"
38 #include "libavutil/intreadwrite.h"
39 #include "libavutil/dict.h"
40 #include "avio_internal.h"
41 #include "internal.h"
42
43 const AVMetadataConv ff_id3v2_34_metadata_conv[] = {
44     { "TALB", "album"},
45     { "TCOM", "composer"},
46     { "TCON", "genre"},
47     { "TCOP", "copyright"},
48     { "TENC", "encoded_by"},
49     { "TIT2", "title"},
50     { "TLAN", "language"},
51     { "TPE1", "artist"},
52     { "TPE2", "album_artist"},
53     { "TPE3", "performer"},
54     { "TPOS", "disc"},
55     { "TPUB", "publisher"},
56     { "TRCK", "track"},
57     { "TSSE", "encoder"},
58     { 0 }
59 };
60
61 const AVMetadataConv ff_id3v2_4_metadata_conv[] = {
62     { "TDRL", "date"},
63     { "TDRC", "date"},
64     { "TDEN", "creation_time"},
65     { "TSOA", "album-sort"},
66     { "TSOP", "artist-sort"},
67     { "TSOT", "title-sort"},
68     { 0 }
69 };
70
71 static const AVMetadataConv id3v2_2_metadata_conv[] = {
72     { "TAL",  "album"},
73     { "TCO",  "genre"},
74     { "TT2",  "title"},
75     { "TEN",  "encoded_by"},
76     { "TP1",  "artist"},
77     { "TP2",  "album_artist"},
78     { "TP3",  "performer"},
79     { "TRK",  "track"},
80     { 0 }
81 };
82
83
84 const char ff_id3v2_tags[][4] = {
85    "TALB", "TBPM", "TCOM", "TCON", "TCOP", "TDLY", "TENC", "TEXT",
86    "TFLT", "TIT1", "TIT2", "TIT3", "TKEY", "TLAN", "TLEN", "TMED",
87    "TOAL", "TOFN", "TOLY", "TOPE", "TOWN", "TPE1", "TPE2", "TPE3",
88    "TPE4", "TPOS", "TPUB", "TRCK", "TRSN", "TRSO", "TSRC", "TSSE",
89    { 0 },
90 };
91
92 const char ff_id3v2_4_tags[][4] = {
93    "TDEN", "TDOR", "TDRC", "TDRL", "TDTG", "TIPL", "TMCL", "TMOO",
94    "TPRO", "TSOA", "TSOP", "TSOT", "TSST",
95    { 0 },
96 };
97
98 const char ff_id3v2_3_tags[][4] = {
99    "TDAT", "TIME", "TORY", "TRDA", "TSIZ", "TYER",
100    { 0 },
101 };
102
103 const char *ff_id3v2_picture_types[21] = {
104     "Other",
105     "32x32 pixels 'file icon'",
106     "Other file icon",
107     "Cover (front)",
108     "Cover (back)",
109     "Leaflet page",
110     "Media (e.g. label side of CD)",
111     "Lead artist/lead performer/soloist",
112     "Artist/performer",
113     "Conductor",
114     "Band/Orchestra",
115     "Composer",
116     "Lyricist/text writer",
117     "Recording Location",
118     "During recording",
119     "During performance",
120     "Movie/video screen capture",
121     "A bright coloured fish",
122     "Illustration",
123     "Band/artist logotype",
124     "Publisher/Studio logotype",
125 };
126
127 const CodecMime ff_id3v2_mime_tags[] = {
128     {"image/gif" , AV_CODEC_ID_GIF},
129     {"image/jpeg", AV_CODEC_ID_MJPEG},
130     {"image/jpg",  AV_CODEC_ID_MJPEG},
131     {"image/png" , AV_CODEC_ID_PNG},
132     {"image/tiff", AV_CODEC_ID_TIFF},
133     {"image/bmp",  AV_CODEC_ID_BMP},
134     {"JPG",        AV_CODEC_ID_MJPEG}, /* ID3v2.2  */
135     {"PNG" ,       AV_CODEC_ID_PNG},   /* ID3v2.2  */
136     {"",           AV_CODEC_ID_NONE},
137 };
138
139 int ff_id3v2_match(const uint8_t *buf, const char * magic)
140 {
141     return  buf[0]         == magic[0] &&
142             buf[1]         == magic[1] &&
143             buf[2]         == magic[2] &&
144             buf[3]         != 0xff &&
145             buf[4]         != 0xff &&
146            (buf[6] & 0x80) ==    0 &&
147            (buf[7] & 0x80) ==    0 &&
148            (buf[8] & 0x80) ==    0 &&
149            (buf[9] & 0x80) ==    0;
150 }
151
152 int ff_id3v2_tag_len(const uint8_t * buf)
153 {
154     int len = ((buf[6] & 0x7f) << 21) +
155               ((buf[7] & 0x7f) << 14) +
156               ((buf[8] & 0x7f) << 7) +
157                (buf[9] & 0x7f) +
158               ID3v2_HEADER_SIZE;
159     if (buf[5] & 0x10)
160         len += ID3v2_HEADER_SIZE;
161     return len;
162 }
163
164 static unsigned int get_size(AVIOContext *s, int len)
165 {
166     int v = 0;
167     while (len--)
168         v = (v << 7) + (avio_r8(s) & 0x7F);
169     return v;
170 }
171
172 /**
173  * Free GEOB type extra metadata.
174  */
175 static void free_geobtag(void *obj)
176 {
177     ID3v2ExtraMetaGEOB *geob = obj;
178     av_free(geob->mime_type);
179     av_free(geob->file_name);
180     av_free(geob->description);
181     av_free(geob->data);
182     av_free(geob);
183 }
184
185 /**
186  * Decode characters to UTF-8 according to encoding type. The decoded buffer is
187  * always null terminated. Stop reading when either *maxread bytes are read from
188  * pb or U+0000 character is found.
189  *
190  * @param dst Pointer where the address of the buffer with the decoded bytes is
191  * stored. Buffer must be freed by caller.
192  * @param maxread Pointer to maximum number of characters to read from the
193  * AVIOContext. After execution the value is decremented by the number of bytes
194  * actually read.
195  * @returns 0 if no error occurred, dst is uninitialized on error
196  */
197 static int decode_str(AVFormatContext *s, AVIOContext *pb, int encoding,
198                       uint8_t **dst, int *maxread)
199 {
200     int ret;
201     uint8_t tmp;
202     uint32_t ch = 1;
203     int left = *maxread;
204     unsigned int (*get)(AVIOContext*) = avio_rb16;
205     AVIOContext *dynbuf;
206
207     if ((ret = avio_open_dyn_buf(&dynbuf)) < 0) {
208         av_log(s, AV_LOG_ERROR, "Error opening memory stream\n");
209         return ret;
210     }
211
212     switch (encoding) {
213
214     case ID3v2_ENCODING_ISO8859:
215         while (left && ch) {
216             ch = avio_r8(pb);
217             PUT_UTF8(ch, tmp, avio_w8(dynbuf, tmp);)
218             left--;
219         }
220         break;
221
222     case ID3v2_ENCODING_UTF16BOM:
223         if ((left -= 2) < 0) {
224             av_log(s, AV_LOG_ERROR, "Cannot read BOM value, input too short\n");
225             avio_close_dyn_buf(dynbuf, dst);
226             av_freep(dst);
227             return AVERROR_INVALIDDATA;
228         }
229         switch (avio_rb16(pb)) {
230         case 0xfffe:
231             get = avio_rl16;
232         case 0xfeff:
233             break;
234         default:
235             av_log(s, AV_LOG_ERROR, "Incorrect BOM value\n");
236             avio_close_dyn_buf(dynbuf, dst);
237             av_freep(dst);
238             *maxread = left;
239             return AVERROR_INVALIDDATA;
240         }
241         // fall-through
242
243     case ID3v2_ENCODING_UTF16BE:
244         while ((left > 1) && ch) {
245             GET_UTF16(ch, ((left -= 2) >= 0 ? get(pb) : 0), break;)
246             PUT_UTF8(ch, tmp, avio_w8(dynbuf, tmp);)
247         }
248         if (left < 0)
249             left += 2; /* did not read last char from pb */
250         break;
251
252     case ID3v2_ENCODING_UTF8:
253         while (left && ch) {
254             ch = avio_r8(pb);
255             avio_w8(dynbuf, ch);
256             left--;
257         }
258         break;
259     default:
260         av_log(s, AV_LOG_WARNING, "Unknown encoding\n");
261     }
262
263     if (ch)
264         avio_w8(dynbuf, 0);
265
266     avio_close_dyn_buf(dynbuf, dst);
267     *maxread = left;
268
269     return 0;
270 }
271
272 /**
273  * Parse a text tag.
274  */
275 static void read_ttag(AVFormatContext *s, AVIOContext *pb, int taglen, const char *key)
276 {
277     uint8_t *dst;
278     int encoding, dict_flags = AV_DICT_DONT_OVERWRITE | AV_DICT_DONT_STRDUP_VAL;
279     unsigned genre;
280
281     if (taglen < 1)
282         return;
283
284     encoding = avio_r8(pb);
285     taglen--; /* account for encoding type byte */
286
287     if (decode_str(s, pb, encoding, &dst, &taglen) < 0) {
288         av_log(s, AV_LOG_ERROR, "Error reading frame %s, skipped\n", key);
289         return;
290     }
291
292     if (!(strcmp(key, "TCON") && strcmp(key, "TCO"))
293         && (sscanf(dst, "(%d)", &genre) == 1 || sscanf(dst, "%d", &genre) == 1)
294         && genre <= ID3v1_GENRE_MAX) {
295         av_freep(&dst);
296         dst = av_strdup(ff_id3v1_genre_str[genre]);
297     } else if (!(strcmp(key, "TXXX") && strcmp(key, "TXX"))) {
298         /* dst now contains the key, need to get value */
299         key = dst;
300         if (decode_str(s, pb, encoding, &dst, &taglen) < 0) {
301             av_log(s, AV_LOG_ERROR, "Error reading frame %s, skipped\n", key);
302             av_freep(&key);
303             return;
304         }
305         dict_flags |= AV_DICT_DONT_STRDUP_KEY;
306     } else if (!*dst)
307         av_freep(&dst);
308
309     if (dst)
310         av_dict_set(&s->metadata, key, dst, dict_flags);
311 }
312
313 /**
314  * Parse GEOB tag into a ID3v2ExtraMetaGEOB struct.
315  */
316 static void read_geobtag(AVFormatContext *s, AVIOContext *pb, int taglen, char *tag, ID3v2ExtraMeta **extra_meta)
317 {
318     ID3v2ExtraMetaGEOB *geob_data = NULL;
319     ID3v2ExtraMeta *new_extra = NULL;
320     char encoding;
321     unsigned int len;
322
323     if (taglen < 1)
324         return;
325
326     geob_data = av_mallocz(sizeof(ID3v2ExtraMetaGEOB));
327     if (!geob_data) {
328         av_log(s, AV_LOG_ERROR, "Failed to alloc %zu bytes\n", sizeof(ID3v2ExtraMetaGEOB));
329         return;
330     }
331
332     new_extra = av_mallocz(sizeof(ID3v2ExtraMeta));
333     if (!new_extra) {
334         av_log(s, AV_LOG_ERROR, "Failed to alloc %zu bytes\n", sizeof(ID3v2ExtraMeta));
335         goto fail;
336     }
337
338     /* read encoding type byte */
339     encoding = avio_r8(pb);
340     taglen--;
341
342     /* read MIME type (always ISO-8859) */
343     if (decode_str(s, pb, ID3v2_ENCODING_ISO8859, &geob_data->mime_type, &taglen) < 0
344         || taglen <= 0)
345         goto fail;
346
347     /* read file name */
348     if (decode_str(s, pb, encoding, &geob_data->file_name, &taglen) < 0
349         || taglen <= 0)
350         goto fail;
351
352     /* read content description */
353     if (decode_str(s, pb, encoding, &geob_data->description, &taglen) < 0
354         || taglen < 0)
355         goto fail;
356
357     if (taglen) {
358         /* save encapsulated binary data */
359         geob_data->data = av_malloc(taglen);
360         if (!geob_data->data) {
361             av_log(s, AV_LOG_ERROR, "Failed to alloc %d bytes\n", taglen);
362             goto fail;
363         }
364         if ((len = avio_read(pb, geob_data->data, taglen)) < taglen)
365             av_log(s, AV_LOG_WARNING, "Error reading GEOB frame, data truncated.\n");
366         geob_data->datasize = len;
367     } else {
368         geob_data->data = NULL;
369         geob_data->datasize = 0;
370     }
371
372     /* add data to the list */
373     new_extra->tag = "GEOB";
374     new_extra->data = geob_data;
375     new_extra->next = *extra_meta;
376     *extra_meta = new_extra;
377
378     return;
379
380 fail:
381     av_log(s, AV_LOG_ERROR, "Error reading frame %s, skipped\n", tag);
382     free_geobtag(geob_data);
383     av_free(new_extra);
384     return;
385 }
386
387 static int is_number(const char *str)
388 {
389     while (*str >= '0' && *str <= '9') str++;
390     return !*str;
391 }
392
393 static AVDictionaryEntry* get_date_tag(AVDictionary *m, const char *tag)
394 {
395     AVDictionaryEntry *t;
396     if ((t = av_dict_get(m, tag, NULL, AV_DICT_MATCH_CASE)) &&
397         strlen(t->value) == 4 && is_number(t->value))
398         return t;
399     return NULL;
400 }
401
402 static void merge_date(AVDictionary **m)
403 {
404     AVDictionaryEntry *t;
405     char date[17] = {0};      // YYYY-MM-DD hh:mm
406
407     if (!(t = get_date_tag(*m, "TYER")) &&
408         !(t = get_date_tag(*m, "TYE")))
409         return;
410     av_strlcpy(date, t->value, 5);
411     av_dict_set(m, "TYER", NULL, 0);
412     av_dict_set(m, "TYE",  NULL, 0);
413
414     if (!(t = get_date_tag(*m, "TDAT")) &&
415         !(t = get_date_tag(*m, "TDA")))
416         goto finish;
417     snprintf(date + 4, sizeof(date) - 4, "-%.2s-%.2s", t->value + 2, t->value);
418     av_dict_set(m, "TDAT", NULL, 0);
419     av_dict_set(m, "TDA",  NULL, 0);
420
421     if (!(t = get_date_tag(*m, "TIME")) &&
422         !(t = get_date_tag(*m, "TIM")))
423         goto finish;
424     snprintf(date + 10, sizeof(date) - 10, " %.2s:%.2s", t->value, t->value + 2);
425     av_dict_set(m, "TIME", NULL, 0);
426     av_dict_set(m, "TIM",  NULL, 0);
427
428 finish:
429     if (date[0])
430         av_dict_set(m, "date", date, 0);
431 }
432
433 static void free_apic(void *obj)
434 {
435     ID3v2ExtraMetaAPIC *apic = obj;
436     av_freep(&apic->data);
437     av_freep(&apic->description);
438     av_freep(&apic);
439 }
440
441 static void read_apic(AVFormatContext *s, AVIOContext *pb, int taglen, char *tag, ID3v2ExtraMeta **extra_meta)
442 {
443     int enc, pic_type;
444     char             mimetype[64];
445     const CodecMime     *mime = ff_id3v2_mime_tags;
446     enum AVCodecID           id = AV_CODEC_ID_NONE;
447     ID3v2ExtraMetaAPIC  *apic = NULL;
448     ID3v2ExtraMeta *new_extra = NULL;
449     int64_t               end = avio_tell(pb) + taglen;
450
451     if (taglen <= 4)
452         goto fail;
453
454     new_extra = av_mallocz(sizeof(*new_extra));
455     apic      = av_mallocz(sizeof(*apic));
456     if (!new_extra || !apic)
457         goto fail;
458
459     enc = avio_r8(pb);
460     taglen--;
461
462     /* mimetype */
463     taglen -= avio_get_str(pb, taglen, mimetype, sizeof(mimetype));
464     while (mime->id != AV_CODEC_ID_NONE) {
465         if (!av_strncasecmp(mime->str, mimetype, sizeof(mimetype))) {
466             id = mime->id;
467             break;
468         }
469         mime++;
470     }
471     if (id == AV_CODEC_ID_NONE) {
472         av_log(s, AV_LOG_WARNING, "Unknown attached picture mimetype: %s, skipping.\n", mimetype);
473         goto fail;
474     }
475     apic->id = id;
476
477     /* picture type */
478     pic_type = avio_r8(pb);
479     taglen--;
480     if (pic_type < 0 || pic_type >= FF_ARRAY_ELEMS(ff_id3v2_picture_types)) {
481         av_log(s, AV_LOG_WARNING, "Unknown attached picture type %d.\n", pic_type);
482         pic_type = 0;
483     }
484     apic->type = ff_id3v2_picture_types[pic_type];
485
486     /* description and picture data */
487     if (decode_str(s, pb, enc, &apic->description, &taglen) < 0) {
488         av_log(s, AV_LOG_ERROR, "Error decoding attached picture description.\n");
489         goto fail;
490     }
491
492     apic->len   = taglen;
493     apic->data  = av_malloc(taglen);
494     if (!apic->data || !apic->len || avio_read(pb, apic->data, taglen) != taglen)
495         goto fail;
496
497     new_extra->tag    = "APIC";
498     new_extra->data   = apic;
499     new_extra->next   = *extra_meta;
500     *extra_meta       = new_extra;
501
502     return;
503
504 fail:
505     if (apic)
506         free_apic(apic);
507     av_freep(&new_extra);
508     avio_seek(pb, end, SEEK_SET);
509 }
510
511 typedef struct ID3v2EMFunc {
512     const char *tag3;
513     const char *tag4;
514     void (*read)(AVFormatContext*, AVIOContext*, int, char*, ID3v2ExtraMeta **);
515     void (*free)(void *obj);
516 } ID3v2EMFunc;
517
518 static const ID3v2EMFunc id3v2_extra_meta_funcs[] = {
519     { "GEO", "GEOB", read_geobtag, free_geobtag },
520     { "PIC", "APIC", read_apic,    free_apic },
521     { NULL }
522 };
523
524 /**
525  * Get the corresponding ID3v2EMFunc struct for a tag.
526  * @param isv34 Determines if v2.2 or v2.3/4 strings are used
527  * @return A pointer to the ID3v2EMFunc struct if found, NULL otherwise.
528  */
529 static const ID3v2EMFunc *get_extra_meta_func(const char *tag, int isv34)
530 {
531     int i = 0;
532     while (id3v2_extra_meta_funcs[i].tag3) {
533         if (tag && !memcmp(tag,
534                     (isv34 ? id3v2_extra_meta_funcs[i].tag4 :
535                              id3v2_extra_meta_funcs[i].tag3),
536                     (isv34 ? 4 : 3)))
537             return &id3v2_extra_meta_funcs[i];
538         i++;
539     }
540     return NULL;
541 }
542
543 static void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t flags, ID3v2ExtraMeta **extra_meta)
544 {
545     int isv34, unsync;
546     unsigned tlen;
547     char tag[5];
548     int64_t next, end = avio_tell(s->pb) + len;
549     int taghdrlen;
550     const char *reason = NULL;
551     AVIOContext pb;
552     AVIOContext *pbx;
553     unsigned char *buffer = NULL;
554     int buffer_size = 0;
555     const ID3v2EMFunc *extra_func = NULL;
556     unsigned char *compressed_buffer = NULL;
557     int compressed_buffer_size = 0;
558
559     switch (version) {
560     case 2:
561         if (flags & 0x40) {
562             reason = "compression";
563             goto error;
564         }
565         isv34 = 0;
566         taghdrlen = 6;
567         break;
568
569     case 3:
570     case 4:
571         isv34 = 1;
572         taghdrlen = 10;
573         break;
574
575     default:
576         reason = "version";
577         goto error;
578     }
579
580     unsync = flags & 0x80;
581
582     if (isv34 && flags & 0x40) { /* Extended header present, just skip over it */
583         int extlen = get_size(s->pb, 4);
584         if (version == 4)
585             extlen -= 4;     // in v2.4 the length includes the length field we just read
586
587         if (extlen < 0) {
588             reason = "invalid extended header length";
589             goto error;
590         }
591         avio_skip(s->pb, extlen);
592         len -= extlen + 4;
593         if (len < 0) {
594             reason = "extended header too long.";
595             goto error;
596         }
597     }
598
599     while (len >= taghdrlen) {
600         unsigned int tflags = 0;
601         int tunsync = 0;
602         int tcomp = 0;
603         int tencr = 0;
604         unsigned long dlen;
605
606         if (isv34) {
607             avio_read(s->pb, tag, 4);
608             tag[4] = 0;
609             if(version==3){
610                 tlen = avio_rb32(s->pb);
611             }else
612                 tlen = get_size(s->pb, 4);
613             tflags = avio_rb16(s->pb);
614             tunsync = tflags & ID3v2_FLAG_UNSYNCH;
615         } else {
616             avio_read(s->pb, tag, 3);
617             tag[3] = 0;
618             tlen = avio_rb24(s->pb);
619         }
620         if (tlen > (1<<28))
621             break;
622         len -= taghdrlen + tlen;
623
624         if (len < 0)
625             break;
626
627         next = avio_tell(s->pb) + tlen;
628
629         if (!tlen) {
630             if (tag[0])
631                 av_log(s, AV_LOG_DEBUG, "Invalid empty frame %s, skipping.\n", tag);
632             continue;
633         }
634
635         if (tflags & ID3v2_FLAG_DATALEN) {
636             if (tlen < 4)
637                 break;
638             dlen = avio_rb32(s->pb);
639             tlen -= 4;
640         } else
641             dlen = tlen;
642
643         tcomp = tflags & ID3v2_FLAG_COMPRESSION;
644         tencr = tflags & ID3v2_FLAG_ENCRYPTION;
645
646         /* skip encrypted tags and, if no zlib, compressed tags */
647         if (tencr || (!CONFIG_ZLIB && tcomp)) {
648             const char *type;
649             if (!tcomp)
650                 type = "encrypted";
651             else if (!tencr)
652                 type = "compressed";
653             else
654                 type = "encrypted and compressed";
655
656             av_log(s, AV_LOG_WARNING, "Skipping %s ID3v2 frame %s.\n", type, tag);
657             avio_skip(s->pb, tlen);
658         /* check for text tag or supported special meta tag */
659         } else if (tag[0] == 'T' || (extra_meta && (extra_func = get_extra_meta_func(tag, isv34)))) {
660             if (unsync || tunsync || tcomp) {
661                 int i, j;
662
663                 av_fast_malloc(&buffer, &buffer_size, dlen);
664                 if (!buffer) {
665                     av_log(s, AV_LOG_ERROR, "Failed to alloc %ld bytes\n", dlen);
666                     goto seek;
667                 }
668 #if CONFIG_ZLIB
669                 if (tcomp) {
670                     int n, err;
671
672                     av_log(s, AV_LOG_DEBUG, "Compresssed frame %s tlen=%d dlen=%ld\n", tag, tlen, dlen);
673
674                     av_fast_malloc(&compressed_buffer, &compressed_buffer_size, tlen);
675                     if (!compressed_buffer) {
676                         av_log(s, AV_LOG_ERROR, "Failed to alloc %d bytes\n", tlen);
677                         goto seek;
678                     }
679
680                     n = avio_read(s->pb, compressed_buffer, tlen);
681                     if (n < 0) {
682                         av_log(s, AV_LOG_ERROR, "Failed to read compressed tag\n");
683                         goto seek;
684                     }
685
686                     err = uncompress(buffer, &dlen, compressed_buffer, n);
687                     if (err != Z_OK) {
688                         av_log(s, AV_LOG_ERROR, "Failed to uncompress tag: %d\n", err);
689                         goto seek;
690                     }
691                 }
692 #endif
693
694                 for (i = 0, j = 0; i < dlen; i++, j++) {
695                     if (!tcomp)
696                         buffer[j] = avio_r8(s->pb);
697                     if (j > 0 && !buffer[j] && buffer[j - 1] == 0xff) {
698                         /* Unsynchronised byte, skip it */
699                         j--;
700                     }
701                 }
702                 ffio_init_context(&pb, buffer, j, 0, NULL, NULL, NULL, NULL);
703                 tlen = j;
704                 pbx = &pb; // read from sync buffer
705             } else {
706                 pbx = s->pb; // read straight from input
707             }
708             if (tag[0] == 'T')
709                 /* parse text tag */
710                 read_ttag(s, pbx, tlen, tag);
711             else
712                 /* parse special meta tag */
713                 extra_func->read(s, pbx, tlen, tag, extra_meta);
714         }
715         else if (!tag[0]) {
716             if (tag[1])
717                 av_log(s, AV_LOG_WARNING, "invalid frame id, assuming padding");
718             avio_skip(s->pb, tlen);
719             break;
720         }
721         /* Skip to end of tag */
722 seek:
723         avio_seek(s->pb, next, SEEK_SET);
724     }
725
726     if (version == 4 && flags & 0x10) /* Footer preset, always 10 bytes, skip over it */
727         end += 10;
728
729   error:
730     if (reason)
731         av_log(s, AV_LOG_INFO, "ID3v2.%d tag skipped, cannot handle %s\n", version, reason);
732     avio_seek(s->pb, end, SEEK_SET);
733     av_free(buffer);
734     av_free(compressed_buffer);
735     return;
736 }
737
738 void ff_id3v2_read(AVFormatContext *s, const char *magic, ID3v2ExtraMeta **extra_meta)
739 {
740     int len, ret;
741     uint8_t buf[ID3v2_HEADER_SIZE];
742     int     found_header;
743     int64_t off;
744
745     do {
746         /* save the current offset in case there's nothing to read/skip */
747         off = avio_tell(s->pb);
748         ret = avio_read(s->pb, buf, ID3v2_HEADER_SIZE);
749         if (ret != ID3v2_HEADER_SIZE)
750             break;
751             found_header = ff_id3v2_match(buf, magic);
752             if (found_header) {
753             /* parse ID3v2 header */
754             len = ((buf[6] & 0x7f) << 21) |
755                   ((buf[7] & 0x7f) << 14) |
756                   ((buf[8] & 0x7f) << 7) |
757                    (buf[9] & 0x7f);
758             ff_id3v2_parse(s, len, buf[3], buf[5], extra_meta);
759         } else {
760             avio_seek(s->pb, off, SEEK_SET);
761         }
762     } while (found_header);
763     ff_metadata_conv(&s->metadata, NULL, ff_id3v2_34_metadata_conv);
764     ff_metadata_conv(&s->metadata, NULL, id3v2_2_metadata_conv);
765     ff_metadata_conv(&s->metadata, NULL, ff_id3v2_4_metadata_conv);
766     merge_date(&s->metadata);
767 }
768
769 void ff_id3v2_free_extra_meta(ID3v2ExtraMeta **extra_meta)
770 {
771     ID3v2ExtraMeta *current = *extra_meta, *next;
772     const ID3v2EMFunc *extra_func;
773
774     while (current) {
775         if ((extra_func = get_extra_meta_func(current->tag, 1)))
776             extra_func->free(current->data);
777         next = current->next;
778         av_freep(&current);
779         current = next;
780     }
781 }
782
783 int ff_id3v2_parse_apic(AVFormatContext *s, ID3v2ExtraMeta **extra_meta)
784 {
785     ID3v2ExtraMeta *cur;
786
787     for (cur = *extra_meta; cur; cur = cur->next) {
788         ID3v2ExtraMetaAPIC *apic;
789         AVStream *st;
790
791         if (strcmp(cur->tag, "APIC"))
792             continue;
793         apic = cur->data;
794
795         if (!(st = avformat_new_stream(s, NULL)))
796             return AVERROR(ENOMEM);
797
798         st->disposition      |= AV_DISPOSITION_ATTACHED_PIC;
799         st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
800         st->codec->codec_id   = apic->id;
801         av_dict_set(&st->metadata, "title",   apic->description, 0);
802         av_dict_set(&st->metadata, "comment", apic->type, 0);
803
804         av_init_packet(&st->attached_pic);
805         st->attached_pic.data         = apic->data;
806         st->attached_pic.size         = apic->len;
807         st->attached_pic.destruct     = av_destruct_packet;
808         st->attached_pic.stream_index = st->index;
809         st->attached_pic.flags       |= AV_PKT_FLAG_KEY;
810
811         apic->data = NULL;
812         apic->len  = 0;
813     }
814
815     return 0;
816 }