2 * Copyright (C) 2005 Michael Ahlberg, Måns Rullgård
4 * Permission is hereby granted, free of charge, to any person
5 * obtaining a copy of this software and associated documentation
6 * files (the "Software"), to deal in the Software without
7 * restriction, including without limitation the rights to use, copy,
8 * modify, merge, publish, distribute, sublicense, and/or sell copies
9 * of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
27 #include "libavutil/avstring.h"
28 #include "libavutil/base64.h"
29 #include "libavutil/bswap.h"
30 #include "libavutil/dict.h"
31 #include "libavcodec/bytestream.h"
32 #include "libavcodec/get_bits.h"
33 #include "libavcodec/vorbis_parser.h"
35 #include "flac_picture.h"
38 #include "vorbiscomment.h"
39 #include "replaygain.h"
41 static int ogm_chapter(AVFormatContext *as, uint8_t *key, uint8_t *val)
43 int i, cnum, h, m, s, ms, keylen = strlen(key);
44 AVChapter *chapter = NULL;
46 if (keylen < 9 || sscanf(key, "CHAPTER%03d", &cnum) != 1)
50 if (sscanf(val, "%02d:%02d:%02d.%03d", &h, &m, &s, &ms) < 4)
53 avpriv_new_chapter(as, cnum, (AVRational) { 1, 1000 },
54 ms + 1000 * (s + 60 * (m + 60 * h)),
55 AV_NOPTS_VALUE, NULL);
57 } else if (!strcmp(key + keylen - 4, "NAME")) {
58 for (i = 0; i < as->nb_chapters; i++)
59 if (as->chapters[i]->id == cnum) {
60 chapter = as->chapters[i];
66 av_dict_set(&chapter->metadata, "title", val, AV_DICT_DONT_STRDUP_VAL);
74 int ff_vorbis_stream_comment(AVFormatContext *as, AVStream *st,
75 const uint8_t *buf, int size)
77 int updates = ff_vorbis_comment(as, &st->metadata, buf, size, 1);
80 st->event_flags |= AVSTREAM_EVENT_FLAG_METADATA_UPDATED;
86 int ff_vorbis_comment(AVFormatContext *as, AVDictionary **m,
87 const uint8_t *buf, int size,
90 const uint8_t *p = buf;
91 const uint8_t *end = buf + size;
96 /* must have vendor_length and user_comment_list_length */
98 return AVERROR_INVALIDDATA;
100 s = bytestream_get_le32(&p);
102 if (end - p - 4 < s || s < 0)
103 return AVERROR_INVALIDDATA;
107 n = bytestream_get_le32(&p);
109 while (end - p >= 4 && n > 0) {
113 s = bytestream_get_le32(&p);
115 if (end - p < s || s < 0)
122 v = memchr(t, '=', s);
133 tt = av_malloc(tl + 1);
134 ct = av_malloc(vl + 1);
138 return AVERROR(ENOMEM);
141 for (j = 0; j < tl; j++)
142 tt[j] = av_toupper(t[j]);
148 /* The format in which the pictures are stored is the FLAC format.
149 * Xiph says: "The binary FLAC picture structure is base64 encoded
150 * and placed within a VorbisComment with the tag name
151 * 'METADATA_BLOCK_PICTURE'. This is the preferred and
152 * recommended way of embedding cover art within VorbisComments."
154 if (!strcmp(tt, "METADATA_BLOCK_PICTURE") && parse_picture) {
156 char *pict = av_malloc(vl);
161 return AVERROR(ENOMEM);
163 if ((ret = av_base64_decode(pict, ct, vl)) > 0)
164 ret = ff_flac_parse_picture(as, pict, ret);
169 av_log(as, AV_LOG_WARNING, "Failed to parse cover art block.\n");
172 } else if (!ogm_chapter(as, tt, ct)) {
174 av_dict_set(m, tt, ct,
175 AV_DICT_DONT_STRDUP_KEY |
176 AV_DICT_DONT_STRDUP_VAL);
182 av_log(as, AV_LOG_INFO,
183 "%ti bytes of comment header remain\n", end - p);
185 av_log(as, AV_LOG_INFO,
186 "truncated comment header, %i comments not found\n", n);
188 ff_metadata_conv(m, NULL, ff_vorbiscomment_metadata_conv);
194 * Parse the vorbis header
196 * Vorbis Identification header from Vorbis_I_spec.html#vorbis-spec-codec
197 * [vorbis_version] = read 32 bits as unsigned integer | Not used
198 * [audio_channels] = read 8 bit integer as unsigned | Used
199 * [audio_sample_rate] = read 32 bits as unsigned integer | Used
200 * [bitrate_maximum] = read 32 bits as signed integer | Not used yet
201 * [bitrate_nominal] = read 32 bits as signed integer | Not used yet
202 * [bitrate_minimum] = read 32 bits as signed integer | Used as bitrate
203 * [blocksize_0] = read 4 bits as unsigned integer | Not Used
204 * [blocksize_1] = read 4 bits as unsigned integer | Not Used
205 * [framing_flag] = read one bit | Not Used
208 struct oggvorbis_private {
210 unsigned char *packet[3];
211 AVVorbisParseContext *vp;
216 static int fixup_vorbis_headers(AVFormatContext *as,
217 struct oggvorbis_private *priv,
220 int i, offset, len, err;
223 len = priv->len[0] + priv->len[1] + priv->len[2];
224 ptr = *buf = av_mallocz(len + len / 255 + 64);
226 return AVERROR(ENOMEM);
230 offset += av_xiphlacing(&ptr[offset], priv->len[0]);
231 offset += av_xiphlacing(&ptr[offset], priv->len[1]);
232 for (i = 0; i < 3; i++) {
233 memcpy(&ptr[offset], priv->packet[i], priv->len[i]);
234 offset += priv->len[i];
235 av_freep(&priv->packet[i]);
237 if ((err = av_reallocp(buf, offset + AV_INPUT_BUFFER_PADDING_SIZE)) < 0)
242 static void vorbis_cleanup(AVFormatContext *s, int idx)
244 struct ogg *ogg = s->priv_data;
245 struct ogg_stream *os = ogg->streams + idx;
246 struct oggvorbis_private *priv = os->private;
249 av_vorbis_parse_free(&priv->vp);
250 for (i = 0; i < 3; i++)
251 av_freep(&priv->packet[i]);
255 static int vorbis_header(AVFormatContext *s, int idx)
257 struct ogg *ogg = s->priv_data;
258 AVStream *st = s->streams[idx];
259 struct ogg_stream *os = ogg->streams + idx;
260 struct oggvorbis_private *priv;
261 int pkt_type = os->buf[os->pstart];
264 os->private = av_mallocz(sizeof(struct oggvorbis_private));
266 return AVERROR(ENOMEM);
272 if (os->psize < 1 || pkt_type > 5)
273 return AVERROR_INVALIDDATA;
277 if (priv->packet[pkt_type >> 1])
278 return AVERROR_INVALIDDATA;
279 if (pkt_type > 1 && !priv->packet[0] || pkt_type > 3 && !priv->packet[1])
280 return AVERROR_INVALIDDATA;
282 priv->len[pkt_type >> 1] = os->psize;
283 priv->packet[pkt_type >> 1] = av_mallocz(os->psize);
284 if (!priv->packet[pkt_type >> 1])
285 return AVERROR(ENOMEM);
286 memcpy(priv->packet[pkt_type >> 1], os->buf + os->pstart, os->psize);
287 if (os->buf[os->pstart] == 1) {
288 const uint8_t *p = os->buf + os->pstart + 7; /* skip "\001vorbis" tag */
289 unsigned blocksize, bs0, bs1;
293 return AVERROR_INVALIDDATA;
295 if (bytestream_get_le32(&p) != 0) /* vorbis_version */
296 return AVERROR_INVALIDDATA;
298 st->codec->channels = bytestream_get_byte(&p);
299 srate = bytestream_get_le32(&p);
300 p += 4; // skip maximum bitrate
301 st->codec->bit_rate = bytestream_get_le32(&p); // nominal bitrate
302 p += 4; // skip minimum bitrate
304 blocksize = bytestream_get_byte(&p);
305 bs0 = blocksize & 15;
306 bs1 = blocksize >> 4;
309 return AVERROR_INVALIDDATA;
310 if (bs0 < 6 || bs1 > 13)
311 return AVERROR_INVALIDDATA;
313 if (bytestream_get_byte(&p) != 1) /* framing_flag */
314 return AVERROR_INVALIDDATA;
316 st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
317 st->codec->codec_id = AV_CODEC_ID_VORBIS;
320 st->codec->sample_rate = srate;
321 avpriv_set_pts_info(st, 64, 1, srate);
323 } else if (os->buf[os->pstart] == 3) {
325 ff_vorbis_stream_comment(s, st, os->buf + os->pstart + 7,
326 os->psize - 8) >= 0) {
329 int ret = ff_replaygain_export(st, st->metadata);
333 // drop all metadata we parsed and which is not required by libvorbis
334 new_len = 7 + 4 + AV_RL32(priv->packet[1] + 7) + 4 + 1;
335 if (new_len >= 16 && new_len < os->psize) {
336 AV_WL32(priv->packet[1] + new_len - 5, 0);
337 priv->packet[1][new_len - 1] = 1;
338 priv->len[1] = new_len;
342 int ret = fixup_vorbis_headers(s, priv, &st->codec->extradata);
344 st->codec->extradata_size = 0;
347 st->codec->extradata_size = ret;
349 priv->vp = av_vorbis_parse_init(st->codec->extradata, st->codec->extradata_size);
351 av_freep(&st->codec->extradata);
352 st->codec->extradata_size = 0;
360 static int vorbis_packet(AVFormatContext *s, int idx)
362 struct ogg *ogg = s->priv_data;
363 struct ogg_stream *os = ogg->streams + idx;
364 struct oggvorbis_private *priv = os->private;
368 return AVERROR_INVALIDDATA;
370 /* first packet handling
371 * here we parse the duration of each packet in the first page and compare
372 * the total duration to the page granule to find the encoder delay and
373 * set the first timestamp */
376 uint8_t *last_pkt = os->buf + os->pstart;
377 uint8_t *next_pkt = last_pkt;
378 int first_duration = 0;
380 av_vorbis_parse_reset(priv->vp);
382 for (seg = 0; seg < os->nsegs; seg++) {
383 if (os->segments[seg] < 255) {
384 int d = av_vorbis_parse_frame(priv->vp, last_pkt, 1);
386 duration = os->granule;
392 last_pkt = next_pkt + os->segments[seg];
394 next_pkt += os->segments[seg];
397 os->lastdts = os->granule - duration;
398 s->streams[idx]->start_time = os->lastpts + first_duration;
399 if (s->streams[idx]->duration)
400 s->streams[idx]->duration -= s->streams[idx]->start_time;
401 s->streams[idx]->cur_dts = AV_NOPTS_VALUE;
402 priv->final_pts = AV_NOPTS_VALUE;
403 av_vorbis_parse_reset(priv->vp);
406 /* parse packet duration */
408 duration = av_vorbis_parse_frame(priv->vp, os->buf + os->pstart, 1);
410 os->pflags |= AV_PKT_FLAG_CORRUPT;
413 os->pduration = duration;
416 /* final packet handling
417 * here we save the pts of the first packet in the final page, sum up all
418 * packet durations in the final page except for the last one, and compare
419 * to the page granule to find the duration of the final packet */
420 if (os->flags & OGG_FLAG_EOS) {
421 if (os->lastpts != AV_NOPTS_VALUE) {
422 priv->final_pts = os->lastpts;
423 priv->final_duration = 0;
425 if (os->segp == os->nsegs)
426 os->pduration = os->granule - priv->final_pts - priv->final_duration;
427 priv->final_duration += os->pduration;
433 const struct ogg_codec ff_vorbis_codec = {
434 .magic = "\001vorbis",
436 .header = vorbis_header,
437 .packet = vorbis_packet,
438 .cleanup = vorbis_cleanup,