3 * Copyright (c) 2003 Fabrice Bellard
5 * This file is part of FFmpeg.
7 * FFmpeg 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.
12 * FFmpeg 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.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #include "libavutil/avstring.h"
26 int ff_id3v2_match(const uint8_t *buf)
28 return buf[0] == 'I' &&
33 (buf[6] & 0x80) == 0 &&
34 (buf[7] & 0x80) == 0 &&
35 (buf[8] & 0x80) == 0 &&
39 int ff_id3v2_tag_len(const uint8_t * buf)
41 int len = ((buf[6] & 0x7f) << 21) +
42 ((buf[7] & 0x7f) << 14) +
43 ((buf[8] & 0x7f) << 7) +
47 len += ID3v2_HEADER_SIZE;
51 void ff_id3v2_read(AVFormatContext *s)
54 uint8_t buf[ID3v2_HEADER_SIZE];
56 ret = get_buffer(s->pb, buf, ID3v2_HEADER_SIZE);
57 if (ret != ID3v2_HEADER_SIZE)
59 if (ff_id3v2_match(buf)) {
60 /* parse ID3v2 header */
61 len = ((buf[6] & 0x7f) << 21) |
62 ((buf[7] & 0x7f) << 14) |
63 ((buf[8] & 0x7f) << 7) |
65 ff_id3v2_parse(s, len, buf[3], buf[5]);
67 url_fseek(s->pb, 0, SEEK_SET);
71 static unsigned int get_size(ByteIOContext *s, int len)
75 v = (v << 7) + (get_byte(s) & 0x7F);
79 static void read_ttag(AVFormatContext *s, int taglen, const char *key)
82 int len, dstlen = sizeof(dst) - 1;
89 taglen--; /* account for encoding type byte */
91 switch (get_byte(s->pb)) { /* encoding type */
93 case 0: /* ISO-8859-1 (0 - 255 maps directly into unicode) */
95 while (taglen-- && q - dst < dstlen - 7) {
97 PUT_UTF8(get_byte(s->pb), tmp, *q++ = tmp;)
103 len = FFMIN(taglen, dstlen - 1);
104 get_buffer(s->pb, dst, len);
109 if (!strcmp(key, "genre")
110 && (sscanf(dst, "(%d)", &genre) == 1 || sscanf(dst, "%d", &genre) == 1)
111 && genre <= ID3v1_GENRE_MAX)
112 av_strlcpy(dst, ff_id3v1_genre_str[genre], sizeof(dst));
115 av_metadata_set(&s->metadata, key, dst);
118 void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t flags)
129 reason = "compression";
148 reason = "unsynchronization";
152 if (isv34 && flags & 0x40) /* Extended header present, just skip over it */
153 url_fskip(s->pb, get_size(s->pb, 4));
155 while (len >= taghdrlen) {
157 tag = get_be32(s->pb);
159 tlen = get_be32(s->pb);
161 tlen = get_size(s->pb, 4);
162 get_be16(s->pb); /* flags */
164 tag = get_be24(s->pb);
165 tlen = get_be24(s->pb);
167 len -= taghdrlen + tlen;
172 next = url_ftell(s->pb) + tlen;
175 case MKBETAG('T', 'I', 'T', '2'):
176 case MKBETAG(0, 'T', 'T', '2'):
177 read_ttag(s, tlen, "title");
179 case MKBETAG('T', 'P', 'E', '1'):
180 case MKBETAG(0, 'T', 'P', '1'):
181 read_ttag(s, tlen, "author");
183 case MKBETAG('T', 'A', 'L', 'B'):
184 case MKBETAG(0, 'T', 'A', 'L'):
185 read_ttag(s, tlen, "album");
187 case MKBETAG('T', 'C', 'O', 'N'):
188 case MKBETAG(0, 'T', 'C', 'O'):
189 read_ttag(s, tlen, "genre");
191 case MKBETAG('T', 'C', 'O', 'P'):
192 case MKBETAG(0, 'T', 'C', 'R'):
193 read_ttag(s, tlen, "copyright");
195 case MKBETAG('T', 'R', 'C', 'K'):
196 case MKBETAG(0, 'T', 'R', 'K'):
197 read_ttag(s, tlen, "track");
200 /* padding, skip to end */
201 url_fskip(s->pb, len);
205 /* Skip to end of tag */
206 url_fseek(s->pb, next, SEEK_SET);
209 if (version == 4 && flags & 0x10) /* Footer preset, always 10 bytes, skip over it */
210 url_fskip(s->pb, 10);
214 av_log(s, AV_LOG_INFO, "ID3v2.%d tag skipped, cannot handle %s\n", version, reason);
215 url_fskip(s->pb, len);