FFmpeg
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
id3v2.c
Go to the documentation of this file.
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 
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 
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 
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 
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) +
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 
215  while (left && ch) {
216  ch = avio_r8(pb);
217  PUT_UTF8(ch, tmp, avio_w8(dynbuf, tmp);)
218  left--;
219  }
220  break;
221 
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 
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 
394 {
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 {
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 + FF_INPUT_BUFFER_PADDING_SIZE);
494  if (!apic->data || !apic->len || avio_read(pb, apic->data, taglen) != taglen)
495  goto fail;
496  memset(apic->data + taglen, 0, FF_INPUT_BUFFER_PADDING_SIZE);
497 
498  new_extra->tag = "APIC";
499  new_extra->data = apic;
500  new_extra->next = *extra_meta;
501  *extra_meta = new_extra;
502 
503  return;
504 
505 fail:
506  if (apic)
507  free_apic(apic);
508  av_freep(&new_extra);
509  avio_seek(pb, end, SEEK_SET);
510 }
511 
512 static void read_chapter(AVFormatContext *s, AVIOContext *pb, int taglen, char *tag, ID3v2ExtraMeta **extra_meta)
513 {
514  AVRational time_base = {1, 1000};
515  char title[1024];
516  uint32_t start, end;
517 
518  taglen -= avio_get_str(pb, taglen, title, sizeof(title));
519  if (taglen < 16)
520  return;
521 
522  start = avio_rb32(pb);
523  end = avio_rb32(pb);
524  taglen -= 27;
525  if (taglen > 0) {
526  char tag[4];
527 
528  avio_skip(pb, 8);
529  avio_read(pb, tag, 4);
530  if (!memcmp(tag, "TIT2", 4)) {
531  taglen = FFMIN(taglen, avio_rb32(pb));
532  if (taglen < 0)
533  return;
534  avio_skip(pb, 3);
535  avio_get_str(pb, taglen, title, sizeof(title));
536  }
537  }
538 
539  avpriv_new_chapter(s, s->nb_chapters + 1, time_base, start, end, title);
540 }
541 
542 typedef struct ID3v2EMFunc {
543  const char *tag3;
544  const char *tag4;
546  void (*free)(void *obj);
547 } ID3v2EMFunc;
548 
550  { "GEO", "GEOB", read_geobtag, free_geobtag },
551  { "PIC", "APIC", read_apic, free_apic },
552  { "CHAP","CHAP", read_chapter, NULL },
553  { NULL }
554 };
555 
556 /**
557  * Get the corresponding ID3v2EMFunc struct for a tag.
558  * @param isv34 Determines if v2.2 or v2.3/4 strings are used
559  * @return A pointer to the ID3v2EMFunc struct if found, NULL otherwise.
560  */
561 static const ID3v2EMFunc *get_extra_meta_func(const char *tag, int isv34)
562 {
563  int i = 0;
564  while (id3v2_extra_meta_funcs[i].tag3) {
565  if (tag && !memcmp(tag,
566  (isv34 ? id3v2_extra_meta_funcs[i].tag4 :
567  id3v2_extra_meta_funcs[i].tag3),
568  (isv34 ? 4 : 3)))
569  return &id3v2_extra_meta_funcs[i];
570  i++;
571  }
572  return NULL;
573 }
574 
576 {
577  int isv34, unsync;
578  unsigned tlen;
579  char tag[5];
580  int64_t next, end = avio_tell(s->pb) + len;
581  int taghdrlen;
582  const char *reason = NULL;
583  AVIOContext pb;
584  AVIOContext *pbx;
585  unsigned char *buffer = NULL;
586  int buffer_size = 0;
587  const ID3v2EMFunc *extra_func = NULL;
588  unsigned char *uncompressed_buffer = NULL;
589  int uncompressed_buffer_size = 0;
590 
591  av_log(s, AV_LOG_DEBUG, "id3v2 ver:%d flags:%02X len:%d\n", version, flags, len);
592 
593  switch (version) {
594  case 2:
595  if (flags & 0x40) {
596  reason = "compression";
597  goto error;
598  }
599  isv34 = 0;
600  taghdrlen = 6;
601  break;
602 
603  case 3:
604  case 4:
605  isv34 = 1;
606  taghdrlen = 10;
607  break;
608 
609  default:
610  reason = "version";
611  goto error;
612  }
613 
614  unsync = flags & 0x80;
615 
616  if (isv34 && flags & 0x40) { /* Extended header present, just skip over it */
617  int extlen = get_size(s->pb, 4);
618  if (version == 4)
619  extlen -= 4; // in v2.4 the length includes the length field we just read
620 
621  if (extlen < 0) {
622  reason = "invalid extended header length";
623  goto error;
624  }
625  avio_skip(s->pb, extlen);
626  len -= extlen + 4;
627  if (len < 0) {
628  reason = "extended header too long.";
629  goto error;
630  }
631  }
632 
633  while (len >= taghdrlen) {
634  unsigned int tflags = 0;
635  int tunsync = 0;
636  int tcomp = 0;
637  int tencr = 0;
638  unsigned long dlen;
639 
640  if (isv34) {
641  avio_read(s->pb, tag, 4);
642  tag[4] = 0;
643  if(version==3){
644  tlen = avio_rb32(s->pb);
645  }else
646  tlen = get_size(s->pb, 4);
647  tflags = avio_rb16(s->pb);
648  tunsync = tflags & ID3v2_FLAG_UNSYNCH;
649  } else {
650  avio_read(s->pb, tag, 3);
651  tag[3] = 0;
652  tlen = avio_rb24(s->pb);
653  }
654  if (tlen > (1<<28))
655  break;
656  len -= taghdrlen + tlen;
657 
658  if (len < 0)
659  break;
660 
661  next = avio_tell(s->pb) + tlen;
662 
663  if (!tlen) {
664  if (tag[0])
665  av_log(s, AV_LOG_DEBUG, "Invalid empty frame %s, skipping.\n", tag);
666  continue;
667  }
668 
669  if (tflags & ID3v2_FLAG_DATALEN) {
670  if (tlen < 4)
671  break;
672  dlen = avio_rb32(s->pb);
673  tlen -= 4;
674  } else
675  dlen = tlen;
676 
677  tcomp = tflags & ID3v2_FLAG_COMPRESSION;
678  tencr = tflags & ID3v2_FLAG_ENCRYPTION;
679 
680  /* skip encrypted tags and, if no zlib, compressed tags */
681  if (tencr || (!CONFIG_ZLIB && tcomp)) {
682  const char *type;
683  if (!tcomp)
684  type = "encrypted";
685  else if (!tencr)
686  type = "compressed";
687  else
688  type = "encrypted and compressed";
689 
690  av_log(s, AV_LOG_WARNING, "Skipping %s ID3v2 frame %s.\n", type, tag);
691  avio_skip(s->pb, tlen);
692  /* check for text tag or supported special meta tag */
693  } else if (tag[0] == 'T' || (extra_meta && (extra_func = get_extra_meta_func(tag, isv34)))) {
694  pbx = s->pb;
695 
696  if (unsync || tunsync || tcomp) {
697  av_fast_malloc(&buffer, &buffer_size, tlen);
698  if (!buffer) {
699  av_log(s, AV_LOG_ERROR, "Failed to alloc %d bytes\n", tlen);
700  goto seek;
701  }
702  }
703  if (unsync || tunsync) {
704  int64_t end = avio_tell(s->pb) + tlen;
705  uint8_t *b;
706 
707  b = buffer;
708  while (avio_tell(s->pb) < end && b - buffer < tlen && !s->pb->eof_reached) {
709  *b++ = avio_r8(s->pb);
710  if (*(b - 1) == 0xff && avio_tell(s->pb) < end - 1 &&
711  b - buffer < tlen &&
712  !s->pb->eof_reached ) {
713  uint8_t val = avio_r8(s->pb);
714  *b++ = val ? val : avio_r8(s->pb);
715  }
716  }
717  ffio_init_context(&pb, buffer, b - buffer, 0, NULL, NULL, NULL, NULL);
718  tlen = b - buffer;
719  pbx = &pb; // read from sync buffer
720  }
721 
722 #if CONFIG_ZLIB
723  if (tcomp) {
724  int err;
725 
726  av_log(s, AV_LOG_DEBUG, "Compresssed frame %s tlen=%d dlen=%ld\n", tag, tlen, dlen);
727 
728  av_fast_malloc(&uncompressed_buffer, &uncompressed_buffer_size, dlen);
729  if (!uncompressed_buffer) {
730  av_log(s, AV_LOG_ERROR, "Failed to alloc %ld bytes\n", dlen);
731  goto seek;
732  }
733 
734  if (!(unsync || tunsync)) {
735  err = avio_read(s->pb, buffer, tlen);
736  if (err < 0) {
737  av_log(s, AV_LOG_ERROR, "Failed to read compressed tag\n");
738  goto seek;
739  }
740  tlen = err;
741  }
742 
743  err = uncompress(uncompressed_buffer, &dlen, buffer, tlen);
744  if (err != Z_OK) {
745  av_log(s, AV_LOG_ERROR, "Failed to uncompress tag: %d\n", err);
746  goto seek;
747  }
748  ffio_init_context(&pb, uncompressed_buffer, dlen, 0, NULL, NULL, NULL, NULL);
749  tlen = dlen;
750  pbx = &pb; // read from sync buffer
751  }
752 #endif
753  if (tag[0] == 'T')
754  /* parse text tag */
755  read_ttag(s, pbx, tlen, tag);
756  else
757  /* parse special meta tag */
758  extra_func->read(s, pbx, tlen, tag, extra_meta);
759  }
760  else if (!tag[0]) {
761  if (tag[1])
762  av_log(s, AV_LOG_WARNING, "invalid frame id, assuming padding\n");
763  avio_skip(s->pb, tlen);
764  break;
765  }
766  /* Skip to end of tag */
767 seek:
768  avio_seek(s->pb, next, SEEK_SET);
769  }
770 
771  if (version == 4 && flags & 0x10) /* Footer preset, always 10 bytes, skip over it */
772  end += 10;
773 
774  error:
775  if (reason)
776  av_log(s, AV_LOG_INFO, "ID3v2.%d tag skipped, cannot handle %s\n", version, reason);
777  avio_seek(s->pb, end, SEEK_SET);
778  av_free(buffer);
779  av_free(uncompressed_buffer);
780  return;
781 }
782 
783 void ff_id3v2_read(AVFormatContext *s, const char *magic, ID3v2ExtraMeta **extra_meta)
784 {
785  int len, ret;
787  int found_header;
788  int64_t off;
789 
790  do {
791  /* save the current offset in case there's nothing to read/skip */
792  off = avio_tell(s->pb);
793  ret = avio_read(s->pb, buf, ID3v2_HEADER_SIZE);
794  if (ret != ID3v2_HEADER_SIZE)
795  break;
796  found_header = ff_id3v2_match(buf, magic);
797  if (found_header) {
798  /* parse ID3v2 header */
799  len = ((buf[6] & 0x7f) << 21) |
800  ((buf[7] & 0x7f) << 14) |
801  ((buf[8] & 0x7f) << 7) |
802  (buf[9] & 0x7f);
803  ff_id3v2_parse(s, len, buf[3], buf[5], extra_meta);
804  } else {
805  avio_seek(s->pb, off, SEEK_SET);
806  }
807  } while (found_header);
808  ff_metadata_conv(&s->metadata, NULL, ff_id3v2_34_metadata_conv);
809  ff_metadata_conv(&s->metadata, NULL, id3v2_2_metadata_conv);
810  ff_metadata_conv(&s->metadata, NULL, ff_id3v2_4_metadata_conv);
811  merge_date(&s->metadata);
812 }
813 
815 {
816  ID3v2ExtraMeta *current = *extra_meta, *next;
817  const ID3v2EMFunc *extra_func;
818 
819  while (current) {
820  if ((extra_func = get_extra_meta_func(current->tag, 1)))
821  extra_func->free(current->data);
822  next = current->next;
823  av_freep(&current);
824  current = next;
825  }
826 }
827 
829 {
830  ID3v2ExtraMeta *cur;
831 
832  for (cur = *extra_meta; cur; cur = cur->next) {
833  ID3v2ExtraMetaAPIC *apic;
834  AVStream *st;
835 
836  if (strcmp(cur->tag, "APIC"))
837  continue;
838  apic = cur->data;
839 
840  if (!(st = avformat_new_stream(s, NULL)))
841  return AVERROR(ENOMEM);
842 
845  st->codec->codec_id = apic->id;
846  av_dict_set(&st->metadata, "title", apic->description, 0);
847  av_dict_set(&st->metadata, "comment", apic->type, 0);
848 
850  st->attached_pic.data = apic->data;
851  st->attached_pic.size = apic->len;
853  st->attached_pic.stream_index = st->index;
855 
856  apic->data = NULL;
857  apic->len = 0;
858  }
859 
860  return 0;
861 }