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