FFmpeg
oggparsevorbis.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005 Michael Ahlberg, Måns Rullgård
3  *
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:
11  *
12  * The above copyright notice and this permission notice shall be
13  * included in all copies or substantial portions of the Software.
14  *
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.
23  */
24 
25 #include <stdlib.h>
26 
27 #include "libavutil/avstring.h"
28 #include "libavutil/base64.h"
29 #include "libavutil/dict.h"
30 #include "libavutil/mem.h"
31 
32 #include "libavcodec/bytestream.h"
34 
35 #include "avformat.h"
36 #include "demux.h"
37 #include "flac_picture.h"
38 #include "internal.h"
39 #include "oggdec.h"
40 #include "vorbiscomment.h"
41 #include "replaygain.h"
42 
43 static int ogm_chapter(AVFormatContext *as, const uint8_t *key, const uint8_t *val)
44 {
45  int i, cnum, h, m, s, ms, keylen = strlen(key);
46  AVChapter *chapter = NULL;
47 
48  if (keylen < 9 || av_strncasecmp(key, "CHAPTER", 7) || sscanf(key+7, "%03d", &cnum) != 1)
49  return 0;
50 
51  if (keylen <= 10) {
52  if (sscanf(val, "%02d:%02d:%02d.%03d", &h, &m, &s, &ms) < 4)
53  return 0;
54 
55  avpriv_new_chapter(as, cnum, (AVRational) { 1, 1000 },
56  ms + 1000 * (s + 60 * (m + 60 * h)),
58  } else if (!av_strcasecmp(key + keylen - 4, "NAME")) {
59  for (i = 0; i < as->nb_chapters; i++)
60  if (as->chapters[i]->id == cnum) {
61  chapter = as->chapters[i];
62  break;
63  }
64  if (!chapter)
65  return 0;
66 
67  av_dict_set(&chapter->metadata, "title", val, 0);
68  } else
69  return 0;
70 
71  return 1;
72 }
73 
75  const uint8_t *buf, int size)
76 {
77  int updates = ff_vorbis_comment(as, &st->metadata, buf, size, 1);
78 
79  if (updates > 0) {
81  }
82 
83  return updates;
84 }
85 
86 /**
87  * This function temporarily modifies the (const qualified) input buffer
88  * and reverts its changes before return. The input buffer needs to have
89  * at least one byte of padding.
90  */
92  const uint8_t *buf, uint32_t size,
93  int *updates, int parse_picture)
94 {
95  char *t = (char*)buf, *v = memchr(t, '=', size);
96  int tl, vl;
97  char backup;
98 
99  if (!v)
100  return 0;
101 
102  tl = v - t;
103  vl = size - tl - 1;
104  v++;
105 
106  if (!tl || !vl)
107  return 0;
108 
109  t[tl] = 0;
110 
111  backup = v[vl];
112  v[vl] = 0;
113 
114  /* The format in which the pictures are stored is the FLAC format.
115  * Xiph says: "The binary FLAC picture structure is base64 encoded
116  * and placed within a VorbisComment with the tag name
117  * 'METADATA_BLOCK_PICTURE'. This is the preferred and
118  * recommended way of embedding cover art within VorbisComments."
119  */
120  if (!av_strcasecmp(t, "METADATA_BLOCK_PICTURE") && parse_picture) {
121  int ret, len = AV_BASE64_DECODE_SIZE(vl);
122  uint8_t *pict = av_malloc(len + AV_INPUT_BUFFER_PADDING_SIZE);
123 
124  if (!pict) {
125  av_log(as, AV_LOG_WARNING, "out-of-memory error. Skipping cover art block.\n");
126  goto end;
127  }
128  ret = av_base64_decode(pict, v, len);
129  if (ret > 0)
130  ret = ff_flac_parse_picture(as, &pict, ret, 0);
131  av_freep(&pict);
132  if (ret < 0) {
133  av_log(as, AV_LOG_WARNING, "Failed to parse cover art block.\n");
134  goto end;
135  }
136  } else if (!ogm_chapter(as, t, v)) {
137  (*updates)++;
138  if (av_dict_get(*m, t, NULL, 0))
139  av_dict_set(m, t, ";", AV_DICT_APPEND);
140  av_dict_set(m, t, v, AV_DICT_APPEND);
141  }
142 end:
143  t[tl] = '=';
144  v[vl] = backup;
145 
146  return 0;
147 }
148 
150  const uint8_t *buf, int size,
151  int parse_picture)
152 {
153  const uint8_t *p = buf;
154  const uint8_t *end = buf + size;
155  int updates = 0;
156  unsigned n;
157  int s, ret;
158 
159  /* must have vendor_length and user_comment_list_length */
160  if (size < 8)
161  return AVERROR_INVALIDDATA;
162 
163  s = bytestream_get_le32(&p);
164 
165  if (end - p - 4 < s || s < 0)
166  return AVERROR_INVALIDDATA;
167 
168  p += s;
169 
170  n = bytestream_get_le32(&p);
171 
172  while (end - p >= 4 && n > 0) {
173  s = bytestream_get_le32(&p);
174 
175  if (end - p < s || s < 0)
176  break;
177 
178  ret = vorbis_parse_single_comment(as, m, p, s, &updates, parse_picture);
179  if (ret < 0)
180  return ret;
181  p += s;
182  n--;
183  }
184 
185  if (p != end)
186  av_log(as, AV_LOG_INFO,
187  "%"PTRDIFF_SPECIFIER" bytes of comment header remain\n", end - p);
188  if (n > 0)
189  av_log(as, AV_LOG_INFO,
190  "truncated comment header, %i comments not found\n", n);
191 
193 
194  return updates;
195 }
196 
197 /*
198  * Parse the vorbis header
199  *
200  * Vorbis Identification header from Vorbis_I_spec.html#vorbis-spec-codec
201  * [vorbis_version] = read 32 bits as unsigned integer | Not used
202  * [audio_channels] = read 8 bit integer as unsigned | Used
203  * [audio_sample_rate] = read 32 bits as unsigned integer | Used
204  * [bitrate_maximum] = read 32 bits as signed integer | Not used yet
205  * [bitrate_nominal] = read 32 bits as signed integer | Not used yet
206  * [bitrate_minimum] = read 32 bits as signed integer | Used as bitrate
207  * [blocksize_0] = read 4 bits as unsigned integer | Not Used
208  * [blocksize_1] = read 4 bits as unsigned integer | Not Used
209  * [framing_flag] = read one bit | Not Used
210  */
211 
213  unsigned int len[3];
214  unsigned char *packet[3];
218  uint8_t *header;
220  uint8_t *comment;
222  uint8_t *setup;
224 };
225 
227  struct oggvorbis_private *priv,
228  uint8_t **buf)
229 {
230  int i, offset, len, err;
231  int buf_len;
232  unsigned char *ptr;
233 
234  len = priv->len[0] + priv->len[1] + priv->len[2];
235  buf_len = len + len / 255 + 64;
236 
237  if (*buf)
238  return AVERROR_INVALIDDATA;
239 
240  ptr = *buf = av_realloc(NULL, buf_len);
241  if (!ptr)
242  return AVERROR(ENOMEM);
243  memset(*buf, '\0', buf_len);
244 
245  ptr[0] = 2;
246  offset = 1;
247  offset += av_xiphlacing(&ptr[offset], priv->len[0]);
248  offset += av_xiphlacing(&ptr[offset], priv->len[1]);
249  for (i = 0; i < 3; i++) {
250  memcpy(&ptr[offset], priv->packet[i], priv->len[i]);
251  offset += priv->len[i];
252  av_freep(&priv->packet[i]);
253  }
254  if ((err = av_reallocp(buf, offset + AV_INPUT_BUFFER_PADDING_SIZE)) < 0)
255  return err;
256  return offset;
257 }
258 
259 static void vorbis_cleanup(AVFormatContext *s, int idx)
260 {
261  struct ogg *ogg = s->priv_data;
262  struct ogg_stream *os = ogg->streams + idx;
263  struct oggvorbis_private *priv = os->private;
264  int i;
265  if (os->private) {
266  av_vorbis_parse_free(&priv->vp);
267  for (i = 0; i < 3; i++)
268  av_freep(&priv->packet[i]);
269 
270  av_freep(&priv->header);
271  av_freep(&priv->comment);
272  av_freep(&priv->setup);
273  }
274 }
275 
277  const uint8_t *buf, int size)
278 {
279  struct ogg *ogg = s->priv_data;
280  struct ogg_stream *os = ogg->streams + st->index;
281  int ret;
282 
283  /* New metadata packet; release old data. */
284  av_dict_free(&st->metadata);
286  if (ret < 0)
287  return ret;
288 
289  /* Update the metadata if possible. */
290  av_freep(&os->new_metadata);
291  if (st->metadata) {
293  /* Send an empty dictionary to indicate that metadata has been cleared. */
294  } else {
295  os->new_metadata = av_mallocz(1);
296  os->new_metadata_size = 0;
297  }
298 
299  return ret;
300 }
301 
303  const uint8_t *p, unsigned int psize)
304 {
305  unsigned blocksize, bs0, bs1;
306  int srate;
307  int channels;
308 
309  if (psize != 30)
310  return AVERROR_INVALIDDATA;
311 
312  p += 7; /* skip "\001vorbis" tag */
313 
314  if (bytestream_get_le32(&p) != 0) /* vorbis_version */
315  return AVERROR_INVALIDDATA;
316 
317  channels = bytestream_get_byte(&p);
318  if (st->codecpar->ch_layout.nb_channels &&
320  av_log(s, AV_LOG_ERROR, "Channel change is not supported\n");
321  return AVERROR_PATCHWELCOME;
322  }
324  srate = bytestream_get_le32(&p);
325  p += 4; // skip maximum bitrate
326  st->codecpar->bit_rate = bytestream_get_le32(&p); // nominal bitrate
327  p += 4; // skip minimum bitrate
328 
329  blocksize = bytestream_get_byte(&p);
330  bs0 = blocksize & 15;
331  bs1 = blocksize >> 4;
332 
333  if (bs0 > bs1)
334  return AVERROR_INVALIDDATA;
335  if (bs0 < 6 || bs1 > 13)
336  return AVERROR_INVALIDDATA;
337 
338  if (bytestream_get_byte(&p) != 1) /* framing_flag */
339  return AVERROR_INVALIDDATA;
340 
343 
344  if (srate > 0) {
345  if (st->codecpar->sample_rate &&
346  srate != st->codecpar->sample_rate) {
347  av_log(s, AV_LOG_ERROR, "Sample rate change is not supported\n");
348  return AVERROR_PATCHWELCOME;
349  }
350 
351  st->codecpar->sample_rate = srate;
352  avpriv_set_pts_info(st, 64, 1, srate);
353  }
354 
355  return 1;
356 }
357 
359 {
360  struct ogg *ogg = s->priv_data;
361  struct ogg_stream *os = ogg->streams + idx;
362  AVStream *st = s->streams[idx];
363 
364  if (os->psize <= 8)
365  return 0;
366 
367  return ff_vorbis_update_metadata(s, st, os->buf + os->pstart + 7,
368  os->psize - 8);
369 }
370 
371 static int vorbis_header(AVFormatContext *s, int idx)
372 {
373  struct ogg *ogg = s->priv_data;
374  AVStream *st = s->streams[idx];
375  struct ogg_stream *os = ogg->streams + idx;
376  struct oggvorbis_private *priv;
377  int pkt_type = os->buf[os->pstart];
378 
379  if (!os->private) {
380  os->private = av_mallocz(sizeof(struct oggvorbis_private));
381  if (!os->private)
382  return AVERROR(ENOMEM);
383  }
384 
385  priv = os->private;
386 
387  if (!(pkt_type & 1))
388  return priv->vp ? 0 : AVERROR_INVALIDDATA;
389 
390  if (pkt_type > 5) {
391  av_log(s, AV_LOG_VERBOSE, "Ignoring packet with unknown type %d\n", pkt_type);
392  return 1;
393  }
394 
395  if (os->psize < 1)
396  return AVERROR_INVALIDDATA;
397 
398  if (priv->packet[pkt_type >> 1])
399  return AVERROR_INVALIDDATA;
400  if (pkt_type > 1 && !priv->packet[0] || pkt_type > 3 && !priv->packet[1])
401  return priv->vp ? 0 : AVERROR_INVALIDDATA;
402 
403  priv->len[pkt_type >> 1] = os->psize;
404  priv->packet[pkt_type >> 1] = av_memdup(os->buf + os->pstart, os->psize);
405  if (!priv->packet[pkt_type >> 1])
406  return AVERROR(ENOMEM);
407  if (pkt_type == 1)
408  return vorbis_parse_header(s, st, os->buf + os->pstart, os->psize);
409 
410  if (pkt_type == 3) {
411  if (vorbis_update_metadata(s, idx) >= 0 && priv->len[1] > 10) {
412  unsigned new_len;
413 
414  int ret = ff_replaygain_export(st, st->metadata);
415  if (ret < 0)
416  return ret;
417 
418  // drop all metadata we parsed and which is not required by libvorbis
419  new_len = 7 + 4 + AV_RL32(priv->packet[1] + 7) + 4 + 1;
420  if (new_len >= 16 && new_len < os->psize) {
421  AV_WL32(priv->packet[1] + new_len - 5, 0);
422  priv->packet[1][new_len - 1] = 1;
423  priv->len[1] = new_len;
424  }
425  }
426  } else {
427  int ret;
428 
429  if (priv->vp)
430  return AVERROR_INVALIDDATA;
431 
432  ret = fixup_vorbis_headers(s, priv, &st->codecpar->extradata);
433  if (ret < 0) {
434  st->codecpar->extradata_size = 0;
435  return ret;
436  }
437  st->codecpar->extradata_size = ret;
438 
440  if (!priv->vp) {
441  av_freep(&st->codecpar->extradata);
442  st->codecpar->extradata_size = 0;
443  return AVERROR_UNKNOWN;
444  }
445  }
446 
447  return 1;
448 }
449 
450 static int vorbis_packet(AVFormatContext *s, int idx)
451 {
452  struct ogg *ogg = s->priv_data;
453  struct ogg_stream *os = ogg->streams + idx;
454  struct oggvorbis_private *priv = os->private;
455  int duration, flags = 0;
456  int skip_packet = 0;
457  int ret, new_extradata_size;
458  PutByteContext pb;
459 
460  if (!priv->vp)
461  return AVERROR_INVALIDDATA;
462 
463  /* first packet handling
464  * here we parse the duration of each packet in the first page and compare
465  * the total duration to the page granule to find the encoder delay and
466  * set the first timestamp */
467  if ((!os->lastpts || os->lastpts == AV_NOPTS_VALUE) && !(os->flags & OGG_FLAG_EOS) && (int64_t)os->granule>=0) {
468  int seg, d;
469  uint8_t *last_pkt = os->buf + os->pstart;
470  uint8_t *next_pkt = last_pkt;
471 
472  av_vorbis_parse_reset(priv->vp);
473  duration = 0;
474  seg = os->segp;
475  d = av_vorbis_parse_frame_flags(priv->vp, last_pkt, 1, &flags);
476  if (d < 0) {
478  return 0;
479  } else if (flags & VORBIS_FLAG_COMMENT) {
481  flags = 0;
482  }
483  duration += d;
484  last_pkt = next_pkt = next_pkt + os->psize;
485  for (; seg < os->nsegs; seg++) {
486  if (os->segments[seg] < 255) {
487  int d = av_vorbis_parse_frame_flags(priv->vp, last_pkt, 1, &flags);
488  if (d < 0) {
489  duration = os->granule;
490  break;
491  } else if (flags & VORBIS_FLAG_COMMENT) {
493  flags = 0;
494  }
495  duration += d;
496  last_pkt = next_pkt + os->segments[seg];
497  }
498  next_pkt += os->segments[seg];
499  }
500  os->lastpts =
501  os->lastdts = os->granule - duration;
502 
503  if (!os->granule && duration) //hack to deal with broken files (Ticket3710)
504  os->lastpts = os->lastdts = AV_NOPTS_VALUE;
505 
506  if (s->streams[idx]->start_time == AV_NOPTS_VALUE) {
507  s->streams[idx]->start_time = FFMAX(os->lastpts, 0);
508  if (s->streams[idx]->duration != AV_NOPTS_VALUE)
509  s->streams[idx]->duration -= s->streams[idx]->start_time;
510  }
511  priv->final_pts = AV_NOPTS_VALUE;
512  av_vorbis_parse_reset(priv->vp);
513  }
514 
515  /* parse packet duration */
516  if (os->psize > 0) {
517  duration = av_vorbis_parse_frame_flags(priv->vp, os->buf + os->pstart, 1, &flags);
518  if (duration < 0) {
520  return 0;
521  }
522 
523  if (flags & VORBIS_FLAG_HEADER) {
524  ret = vorbis_parse_header(s, s->streams[idx], os->buf + os->pstart, os->psize);
525  if (ret < 0)
526  return ret;
527 
528  ret = av_reallocp(&priv->header, os->psize);
529  if (ret < 0)
530  return ret;
531 
532  memcpy(priv->header, os->buf + os->pstart, os->psize);
533  priv->header_size = os->psize;
534 
535  skip_packet = 1;
536  }
537 
538  if (flags & VORBIS_FLAG_COMMENT) {
539  ret = vorbis_update_metadata(s, idx);
540  if (ret < 0)
541  return ret;
542 
543  ret = av_reallocp(&priv->comment, os->psize);
544  if (ret < 0)
545  return ret;
546 
547  memcpy(priv->comment, os->buf + os->pstart, os->psize);
548  priv->comment_size = os->psize;
549 
550  flags = 0;
551  skip_packet = 1;
552  }
553 
554  if (flags & VORBIS_FLAG_SETUP) {
555  ret = av_reallocp(&priv->setup, os->psize);
556  if (ret < 0)
557  return ret;
558 
559  memcpy(priv->setup, os->buf + os->pstart, os->psize);
560  priv->setup_size = os->psize;
561 
562  skip_packet = 1;
563  }
564 
565  os->pduration = duration;
566  }
567 
568  /* final packet handling
569  * here we save the pts of the first packet in the final page, sum up all
570  * packet durations in the final page except for the last one, and compare
571  * to the page granule to find the duration of the final packet */
572  if (os->flags & OGG_FLAG_EOS) {
573  if (os->lastpts != AV_NOPTS_VALUE) {
574  priv->final_pts = os->lastpts;
575  priv->final_duration = 0;
576  }
577  if (os->segp == os->nsegs) {
578  int64_t skip = priv->final_pts + priv->final_duration + os->pduration - os->granule;
579  if (skip > 0)
580  os->end_trimming = skip;
581  os->pduration = os->granule - priv->final_pts - priv->final_duration;
582  }
583  priv->final_duration += os->pduration;
584  }
585 
586  if (priv->header && priv->comment && priv->setup) {
587  new_extradata_size = priv->header_size + priv->comment_size + priv->setup_size + 6;
588 
589  ret = av_reallocp(&os->new_extradata, new_extradata_size);
590  if (ret < 0)
591  return ret;
592 
593  os->new_extradata_size = new_extradata_size;
594  bytestream2_init_writer(&pb, os->new_extradata, new_extradata_size);
595  bytestream2_put_be16(&pb, priv->header_size);
596  bytestream2_put_buffer(&pb, priv->header, priv->header_size);
597  bytestream2_put_be16(&pb, priv->comment_size);
598  bytestream2_put_buffer(&pb, priv->comment, priv->comment_size);
599  bytestream2_put_be16(&pb, priv->setup_size);
600  bytestream2_put_buffer(&pb, priv->setup, priv->setup_size);
601 
602  av_freep(&priv->header);
603  priv->header_size = 0;
604  av_freep(&priv->comment);
605  priv->comment_size = 0;
606  av_freep(&priv->setup);
607  priv->setup_size = 0;
608  }
609 
610  return skip_packet;
611 }
612 
613 const struct ogg_codec ff_vorbis_codec = {
614  .magic = "\001vorbis",
615  .magicsize = 7,
616  .header = vorbis_header,
617  .packet = vorbis_packet,
618  .cleanup = vorbis_cleanup,
619  .nb_header = 3,
620 };
avpriv_new_chapter
AVChapter * avpriv_new_chapter(AVFormatContext *s, int64_t id, AVRational time_base, int64_t start, int64_t end, const char *title)
Add a new chapter.
Definition: demux_utils.c:43
flags
const SwsFlags flags[]
Definition: swscale.c:61
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:216
AVCodecParameters::extradata
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: codec_par.h:69
ogg_stream::segp
int segp
Definition: oggdec.h:85
av_vorbis_parse_free
void av_vorbis_parse_free(AVVorbisParseContext **s)
Free the parser and everything associated with it.
Definition: vorbis_parser.c:279
AVChapter::metadata
AVDictionary * metadata
Definition: avformat.h:1227
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
ogg_stream::lastpts
int64_t lastpts
Definition: oggdec.h:78
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:51
AV_WL32
#define AV_WL32(p, v)
Definition: intreadwrite.h:422
AVVorbisParseContext
Definition: vorbis_parser_internal.h:34
AVFormatContext::nb_chapters
unsigned int nb_chapters
Number of chapters in AVChapter array.
Definition: avformat.h:1364
oggvorbis_private::comment
uint8_t * comment
Definition: oggparsevorbis.c:220
ff_replaygain_export
int ff_replaygain_export(AVStream *st, AVDictionary *metadata)
Parse replaygain tags and export them as per-stream side data.
Definition: replaygain.c:94
av_vorbis_parse_frame_flags
int av_vorbis_parse_frame_flags(AVVorbisParseContext *s, const uint8_t *buf, int buf_size, int *flags)
Get the duration for a Vorbis packet.
Definition: vorbis_parser.c:215
int64_t
long long int64_t
Definition: coverity.c:34
av_strcasecmp
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare.
Definition: avstring.c:208
ff_metadata_conv
void ff_metadata_conv(AVDictionary **pm, const AVMetadataConv *d_conv, const AVMetadataConv *s_conv)
Definition: metadata.c:26
ff_vorbis_stream_comment
int ff_vorbis_stream_comment(AVFormatContext *as, AVStream *st, const uint8_t *buf, int size)
Parse Vorbis comments and add metadata to an AVStream.
Definition: oggparsevorbis.c:74
vorbiscomment.h
ogg_stream::granule
uint64_t granule
Definition: oggdec.h:76
AV_DICT_APPEND
#define AV_DICT_APPEND
If the entry already exists, append to it.
Definition: dict.h:82
AV_LOG_VERBOSE
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:226
AVDictionary
Definition: dict.c:32
ogg_stream::buf
uint8_t * buf
Definition: oggdec.h:68
FFMAX
#define FFMAX(a, b)
Definition: macros.h:47
ogg_stream::nsegs
int nsegs
Definition: oggdec.h:85
AVERROR_UNKNOWN
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
Definition: error.h:73
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:329
ogg
Definition: oggdec.h:110
ogm_chapter
static int ogm_chapter(AVFormatContext *as, const uint8_t *key, const uint8_t *val)
Definition: oggparsevorbis.c:43
ogg_stream::new_extradata_size
size_t new_extradata_size
Definition: oggdec.h:98
av_malloc
#define av_malloc(s)
Definition: tableprint_vlc.h:31
av_memdup
void * av_memdup(const void *p, size_t size)
Duplicate a buffer with av_malloc().
Definition: mem.c:304
avpriv_set_pts_info
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: avformat.c:777
AV_BASE64_DECODE_SIZE
#define AV_BASE64_DECODE_SIZE(x)
Calculate the output size in bytes needed to decode a base64 string with length x to a data buffer.
Definition: base64.h:48
ogg_stream::lastdts
int64_t lastdts
Definition: oggdec.h:79
AVChapter
Definition: avformat.h:1223
val
static double val(void *priv, double ch)
Definition: aeval.c:77
ff_vorbis_comment
int ff_vorbis_comment(AVFormatContext *as, AVDictionary **m, const uint8_t *buf, int size, int parse_picture)
Parse Vorbis comments.
Definition: oggparsevorbis.c:149
oggvorbis_private::header_size
int header_size
Definition: oggparsevorbis.c:219
vorbis_parse_single_comment
static int vorbis_parse_single_comment(AVFormatContext *as, AVDictionary **m, const uint8_t *buf, uint32_t size, int *updates, int parse_picture)
This function temporarily modifies the (const qualified) input buffer and reverts its changes before ...
Definition: oggparsevorbis.c:91
oggvorbis_private::setup
uint8_t * setup
Definition: oggparsevorbis.c:222
ogg_stream::pstart
unsigned int pstart
Definition: oggdec.h:71
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:210
AV_PKT_FLAG_CORRUPT
#define AV_PKT_FLAG_CORRUPT
The packet content is corrupted.
Definition: packet.h:614
duration
int64_t duration
Definition: movenc.c:65
bytestream2_init_writer
static av_always_inline void bytestream2_init_writer(PutByteContext *p, uint8_t *buf, int buf_size)
Definition: bytestream.h:147
av_dict_get
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:60
s
#define s(width, name)
Definition: cbs_vp9.c:198
AVFormatContext::chapters
AVChapter ** chapters
Definition: avformat.h:1365
ff_vorbis_update_metadata
int ff_vorbis_update_metadata(AVFormatContext *s, AVStream *st, const uint8_t *buf, int size)
Parse Vorbis comments, add metadata to an AVStream.
Definition: oggparsevorbis.c:276
bytestream2_put_buffer
static av_always_inline unsigned int bytestream2_put_buffer(PutByteContext *p, const uint8_t *src, unsigned int size)
Definition: bytestream.h:286
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:201
VORBIS_FLAG_COMMENT
#define VORBIS_FLAG_COMMENT
Definition: vorbis_parser.h:45
ff_vorbis_codec
const struct ogg_codec ff_vorbis_codec
Definition: oggparsevorbis.c:613
channels
channels
Definition: aptx.h:31
flac_picture.h
oggvorbis_private::final_duration
int final_duration
Definition: oggparsevorbis.c:217
oggvorbis_private::packet
unsigned char * packet[3]
Definition: oggparsevorbis.c:214
ogg_stream::new_metadata
uint8_t * new_metadata
Definition: oggdec.h:95
oggvorbis_private::len
unsigned int len[3]
Definition: oggparsevorbis.c:213
ff_vorbiscomment_metadata_conv
const AVMetadataConv ff_vorbiscomment_metadata_conv[]
VorbisComment metadata conversion mapping.
Definition: vorbiscomment.c:33
key
const char * key
Definition: hwcontext_opencl.c:189
AVFormatContext
Format I/O context.
Definition: avformat.h:1264
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:767
oggvorbis_private
Definition: oggparsevorbis.c:212
PTRDIFF_SPECIFIER
#define PTRDIFF_SPECIFIER
Definition: internal.h:128
NULL
#define NULL
Definition: coverity.c:32
AVERROR_PATCHWELCOME
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:64
VORBIS_FLAG_HEADER
#define VORBIS_FLAG_HEADER
Definition: vorbis_parser.h:44
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
oggvorbis_private::comment_size
int comment_size
Definition: oggparsevorbis.c:221
ogg_stream::flags
int flags
Definition: oggdec.h:82
AVStream::metadata
AVDictionary * metadata
Definition: avformat.h:824
vorbis_parser.h
av_base64_decode
int av_base64_decode(uint8_t *out, const char *in_str, int out_size)
Decode a base64-encoded string.
Definition: base64.c:81
AVCodecParameters::ch_layout
AVChannelLayout ch_layout
Audio only.
Definition: codec_par.h:180
base64.h
ogg::streams
struct ogg_stream * streams
Definition: oggdec.h:111
AVSTREAM_EVENT_FLAG_METADATA_UPDATED
#define AVSTREAM_EVENT_FLAG_METADATA_UPDATED
Definition: avformat.h:862
AVCodecParameters::sample_rate
int sample_rate
Audio only.
Definition: codec_par.h:184
ff_flac_parse_picture
int ff_flac_parse_picture(AVFormatContext *s, uint8_t **bufp, int buf_size, int truncate_workaround)
Parse a FLAC METADATA_BLOCK_PICTURE.
Definition: flac_picture.c:33
AVCodecParameters::extradata_size
int extradata_size
Size of the extradata content in bytes.
Definition: codec_par.h:73
vorbis_cleanup
static void vorbis_cleanup(AVFormatContext *s, int idx)
Definition: oggparsevorbis.c:259
PutByteContext
Definition: bytestream.h:37
av_strncasecmp
int av_strncasecmp(const char *a, const char *b, size_t n)
Locale-independent case-insensitive compare.
Definition: avstring.c:218
ogg_stream::private
void * private
Definition: oggdec.h:99
size
int size
Definition: twinvq_data.h:10344
av_reallocp
int av_reallocp(void *ptr, size_t size)
Allocate, reallocate, or free a block of memory through a pointer to a pointer.
Definition: mem.c:188
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:247
AVStream::event_flags
int event_flags
Flags indicating events happening on the stream, a combination of AVSTREAM_EVENT_FLAG_*.
Definition: avformat.h:855
av_xiphlacing
unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
Encode extradata length to a buffer.
Definition: utils.c:829
offset
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf offset
Definition: writing_filters.txt:86
av_packet_pack_dictionary
uint8_t * av_packet_pack_dictionary(AVDictionary *dict, size_t *size)
Pack a dictionary for use in side_data.
Definition: packet.c:318
av_dict_free
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values.
Definition: dict.c:233
oggvorbis_private::final_pts
int64_t final_pts
Definition: oggparsevorbis.c:216
AV_LOG_INFO
#define AV_LOG_INFO
Standard information.
Definition: log.h:221
vorbis_update_metadata
static int vorbis_update_metadata(AVFormatContext *s, int idx)
Definition: oggparsevorbis.c:358
ogg_stream::pflags
unsigned int pflags
Definition: oggdec.h:73
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
ogg_stream
Definition: oggdec.h:67
AVChapter::id
int64_t id
unique ID to identify the chapter
Definition: avformat.h:1224
vorbis_header
static int vorbis_header(AVFormatContext *s, int idx)
Definition: oggparsevorbis.c:371
vorbis_packet
static int vorbis_packet(AVFormatContext *s, int idx)
Definition: oggparsevorbis.c:450
av_mallocz
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:256
demux.h
len
int len
Definition: vorbis_enc_data.h:426
oggvorbis_private::vp
AVVorbisParseContext * vp
Definition: oggparsevorbis.c:215
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:744
av_vorbis_parse_init
AVVorbisParseContext * av_vorbis_parse_init(const uint8_t *extradata, int extradata_size)
Allocate and initialize the Vorbis parser using headers in the extradata.
Definition: vorbis_parser.c:284
avformat.h
dict.h
AV_INPUT_BUFFER_PADDING_SIZE
#define AV_INPUT_BUFFER_PADDING_SIZE
Definition: defs.h:40
AV_RL32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:92
oggdec.h
AVStream::index
int index
stream index in AVFormatContext
Definition: avformat.h:750
VORBIS_FLAG_SETUP
#define VORBIS_FLAG_SETUP
Definition: vorbis_parser.h:46
Windows::Graphics::DirectX::Direct3D11::p
IDirect3DDxgiInterfaceAccess _COM_Outptr_ void ** p
Definition: vsrc_gfxcapture_winrt.hpp:53
ogg_stream::new_metadata_size
size_t new_metadata_size
Definition: oggdec.h:96
ogg_stream::segments
uint8_t segments[255]
Definition: oggdec.h:86
mem.h
OGG_FLAG_EOS
#define OGG_FLAG_EOS
Definition: oggdec.h:121
av_vorbis_parse_reset
void av_vorbis_parse_reset(AVVorbisParseContext *s)
Definition: vorbis_parser.c:273
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:55
ogg_stream::new_extradata
uint8_t * new_extradata
Definition: oggdec.h:97
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
av_dict_set
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:86
ogg_stream::psize
unsigned int psize
Definition: oggdec.h:72
vorbis_parse_header
static int vorbis_parse_header(AVFormatContext *s, AVStream *st, const uint8_t *p, unsigned int psize)
Definition: oggparsevorbis.c:302
ogg_codec
Copyright (C) 2005 Michael Ahlberg, Måns Rullgård.
Definition: oggdec.h:30
bytestream.h
replaygain.h
AVCodecParameters::bit_rate
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition: codec_par.h:97
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
h
h
Definition: vp9dsp_template.c:2070
AV_CODEC_ID_VORBIS
@ AV_CODEC_ID_VORBIS
Definition: codec_id.h:464
ogg_codec::magic
const int8_t * magic
Definition: oggdec.h:31
ogg_stream::end_trimming
int end_trimming
set the number of packets to drop from the end
Definition: oggdec.h:94
avstring.h
ogg_stream::pduration
unsigned int pduration
Definition: oggdec.h:74
oggvorbis_private::header
uint8_t * header
Definition: oggparsevorbis.c:218
skip
static void BS_FUNC() skip(BSCTX *bc, unsigned int n)
Skip n bits in the buffer.
Definition: bitstream_template.h:383
oggvorbis_private::setup_size
int setup_size
Definition: oggparsevorbis.c:223
av_realloc
void * av_realloc(void *ptr, size_t size)
Allocate, reallocate, or free a block of memory.
Definition: mem.c:155
fixup_vorbis_headers
static int fixup_vorbis_headers(AVFormatContext *as, struct oggvorbis_private *priv, uint8_t **buf)
Definition: oggparsevorbis.c:226