FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
oggenc.c
Go to the documentation of this file.
1 /*
2  * Ogg muxer
3  * Copyright (c) 2007 Baptiste Coudurier <baptiste dot coudurier at free dot fr>
4  *
5  * This file is part of FFmpeg.
6  *
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.
11  *
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.
16  *
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
20  */
21 
22 #include <stdint.h>
23 
24 #include "libavutil/crc.h"
25 #include "libavutil/mathematics.h"
26 #include "libavutil/opt.h"
27 #include "libavutil/random_seed.h"
28 #include "libavcodec/xiph.h"
29 #include "libavcodec/bytestream.h"
30 #include "libavcodec/flac.h"
31 #include "avformat.h"
32 #include "avio_internal.h"
33 #include "internal.h"
34 #include "vorbiscomment.h"
35 
36 #define MAX_PAGE_SIZE 65025
37 
38 typedef struct OGGPage {
39  int64_t start_granule;
40  int64_t granule;
46  uint16_t size;
47 } OGGPage;
48 
49 typedef struct OGGStreamContext {
50  unsigned page_counter;
52  int header_len[3];
53  /** for theora granule */
54  int kfgshift;
55  int64_t last_kf_pts;
56  int vrev;
57  int eos;
58  unsigned page_count; ///< number of page buffered
59  OGGPage page; ///< current page
60  unsigned serial_num; ///< serial number
61  int64_t last_granule; ///< last packet granule
63 
64 typedef struct OGGPageList {
66  struct OGGPageList *next;
67 } OGGPageList;
68 
69 typedef struct OGGContext {
70  const AVClass *class;
72  int pref_size; ///< preferred page size (0 => fill all segments)
73  int64_t pref_duration; ///< preferred page duration (0 => fill all segments)
75 } OGGContext;
76 
77 #define OFFSET(x) offsetof(OGGContext, x)
78 #define PARAM AV_OPT_FLAG_ENCODING_PARAM
79 
80 static const AVOption options[] = {
81  { "serial_offset", "serial number offset",
82  OFFSET(serial_offset), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, PARAM },
83  { "oggpagesize", "Set preferred Ogg page size.",
84  OFFSET(pref_size), AV_OPT_TYPE_INT, {.i64 = 0}, 0, MAX_PAGE_SIZE, PARAM},
85  { "pagesize", "preferred page size in bytes (deprecated)",
86  OFFSET(pref_size), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, MAX_PAGE_SIZE, PARAM },
87  { "page_duration", "preferred page duration, in microseconds",
88  OFFSET(pref_duration), AV_OPT_TYPE_INT64, { .i64 = 1000000 }, 0, INT64_MAX, PARAM },
89  { NULL },
90 };
91 
92 #define OGG_CLASS(flavor, name)\
93 static const AVClass flavor ## _muxer_class = {\
94  .class_name = #name " muxer",\
95  .item_name = av_default_item_name,\
96  .option = options,\
97  .version = LIBAVUTIL_VERSION_INT,\
98 };
99 
100 static void ogg_update_checksum(AVFormatContext *s, AVIOContext *pb, int64_t crc_offset)
101 {
102  int64_t pos = avio_tell(pb);
103  uint32_t checksum = ffio_get_checksum(pb);
104  avio_seek(pb, crc_offset, SEEK_SET);
105  avio_wb32(pb, checksum);
106  avio_seek(pb, pos, SEEK_SET);
107 }
108 
109 static int ogg_write_page(AVFormatContext *s, OGGPage *page, int extra_flags)
110 {
111  OGGStreamContext *oggstream = s->streams[page->stream_index]->priv_data;
112  AVIOContext *pb;
113  int64_t crc_offset;
114  int ret, size;
115  uint8_t *buf;
116 
117  ret = avio_open_dyn_buf(&pb);
118  if (ret < 0)
119  return ret;
121  ffio_wfourcc(pb, "OggS");
122  avio_w8(pb, 0);
123  avio_w8(pb, page->flags | extra_flags);
124  avio_wl64(pb, page->granule);
125  avio_wl32(pb, oggstream->serial_num);
126  avio_wl32(pb, oggstream->page_counter++);
127  crc_offset = avio_tell(pb);
128  avio_wl32(pb, 0); // crc
129  avio_w8(pb, page->segments_count);
130  avio_write(pb, page->segments, page->segments_count);
131  avio_write(pb, page->data, page->size);
132 
133  ogg_update_checksum(s, pb, crc_offset);
134  avio_flush(pb);
135 
136  size = avio_close_dyn_buf(pb, &buf);
137  if (size < 0)
138  return size;
139 
140  avio_write(s->pb, buf, size);
141  avio_flush(s->pb);
142  av_free(buf);
143  oggstream->page_count--;
144  return 0;
145 }
146 
147 static int ogg_key_granule(OGGStreamContext *oggstream, int64_t granule)
148 {
149  return oggstream->kfgshift && !(granule & ((1<<oggstream->kfgshift)-1));
150 }
151 
152 static int64_t ogg_granule_to_timestamp(OGGStreamContext *oggstream, int64_t granule)
153 {
154  if (oggstream->kfgshift)
155  return (granule>>oggstream->kfgshift) +
156  (granule & ((1<<oggstream->kfgshift)-1));
157  else
158  return granule;
159 }
160 
162 {
163  AVStream *st2 = s->streams[next->stream_index];
164  AVStream *st = s->streams[page->stream_index];
165  int64_t next_granule, cur_granule;
166 
167  if (next->granule == -1 || page->granule == -1)
168  return 0;
169 
170  next_granule = av_rescale_q(ogg_granule_to_timestamp(st2->priv_data, next->granule),
171  st2->time_base, AV_TIME_BASE_Q);
172  cur_granule = av_rescale_q(ogg_granule_to_timestamp(st->priv_data, page->granule),
173  st ->time_base, AV_TIME_BASE_Q);
174  return next_granule > cur_granule;
175 }
176 
177 static int ogg_reset_cur_page(OGGStreamContext *oggstream)
178 {
179  oggstream->page.granule = -1;
180  oggstream->page.flags = 0;
181  oggstream->page.segments_count = 0;
182  oggstream->page.size = 0;
183  return 0;
184 }
185 
187 {
188  OGGContext *ogg = s->priv_data;
189  OGGPageList **p = &ogg->page_list;
190  OGGPageList *l = av_mallocz(sizeof(*l));
191 
192  if (!l)
193  return AVERROR(ENOMEM);
194  l->page = oggstream->page;
195 
196  oggstream->page.start_granule = oggstream->page.granule;
197  oggstream->page_count++;
198  ogg_reset_cur_page(oggstream);
199 
200  while (*p) {
201  if (ogg_compare_granule(s, &(*p)->page, &l->page))
202  break;
203  p = &(*p)->next;
204  }
205  l->next = *p;
206  *p = l;
207 
208  return 0;
209 }
210 
212  uint8_t *data, unsigned size, int64_t granule,
213  int header)
214 {
215  OGGStreamContext *oggstream = st->priv_data;
216  OGGContext *ogg = s->priv_data;
217  int total_segments = size / 255 + 1;
218  uint8_t *p = data;
219  int i, segments, len, flush = 0;
220 
221  // Handles VFR by flushing page because this frame needs to have a timestamp
222  // For theora, keyframes also need to have a timestamp to correctly mark
223  // them as such, otherwise seeking will not work correctly at the very
224  // least with old libogg versions.
225  // Do not try to flush header packets though, that will create broken files.
226  if (st->codec->codec_id == AV_CODEC_ID_THEORA && !header &&
227  (ogg_granule_to_timestamp(oggstream, granule) >
228  ogg_granule_to_timestamp(oggstream, oggstream->last_granule) + 1 ||
229  ogg_key_granule(oggstream, granule))) {
230  if (oggstream->page.granule != -1)
231  ogg_buffer_page(s, oggstream);
232  flush = 1;
233  }
234 
235  // avoid a continued page
236  if (!header && oggstream->page.size > 0 &&
237  MAX_PAGE_SIZE - oggstream->page.size < size) {
238  ogg_buffer_page(s, oggstream);
239  }
240 
241  for (i = 0; i < total_segments; ) {
242  OGGPage *page = &oggstream->page;
243 
244  segments = FFMIN(total_segments - i, 255 - page->segments_count);
245 
246  if (i && !page->segments_count)
247  page->flags |= 1; // continued packet
248 
249  memset(page->segments+page->segments_count, 255, segments - 1);
250  page->segments_count += segments - 1;
251 
252  len = FFMIN(size, segments*255);
253  page->segments[page->segments_count++] = len - (segments-1)*255;
254  memcpy(page->data+page->size, p, len);
255  p += len;
256  size -= len;
257  i += segments;
258  page->size += len;
259 
260  if (i == total_segments)
261  page->granule = granule;
262 
263  if (!header) {
264  AVStream *st = s->streams[page->stream_index];
265 
266  int64_t start = av_rescale_q(page->start_granule, st->time_base,
268  int64_t next = av_rescale_q(page->granule, st->time_base,
270 
271  if (page->segments_count == 255 ||
272  (ogg->pref_size > 0 && page->size >= ogg->pref_size) ||
273  (ogg->pref_duration > 0 && next - start >= ogg->pref_duration)) {
274  ogg_buffer_page(s, oggstream);
275  }
276  }
277  }
278 
279  if (flush && oggstream->page.granule != -1)
280  ogg_buffer_page(s, oggstream);
281 
282  return 0;
283 }
284 
285 static uint8_t *ogg_write_vorbiscomment(int64_t offset, int bitexact,
286  int *header_len, AVDictionary **m, int framing_bit)
287 {
288  const char *vendor = bitexact ? "ffmpeg" : LIBAVFORMAT_IDENT;
289  int64_t size;
290  uint8_t *p, *p0;
291 
293 
294  size = offset + ff_vorbiscomment_length(*m, vendor) + framing_bit;
295  if (size > INT_MAX)
296  return NULL;
297  p = av_mallocz(size);
298  if (!p)
299  return NULL;
300  p0 = p;
301 
302  p += offset;
303  ff_vorbiscomment_write(&p, m, vendor);
304  if (framing_bit)
305  bytestream_put_byte(&p, 1);
306 
307  *header_len = size;
308  return p0;
309 }
310 
312  OGGStreamContext *oggstream, int bitexact,
313  AVDictionary **m)
314 {
315  uint8_t *p;
316 
318  return AVERROR(EINVAL);
319 
320  // first packet: STREAMINFO
321  oggstream->header_len[0] = 51;
322  oggstream->header[0] = av_mallocz(51); // per ogg flac specs
323  p = oggstream->header[0];
324  if (!p)
325  return AVERROR(ENOMEM);
326  bytestream_put_byte(&p, 0x7F);
327  bytestream_put_buffer(&p, "FLAC", 4);
328  bytestream_put_byte(&p, 1); // major version
329  bytestream_put_byte(&p, 0); // minor version
330  bytestream_put_be16(&p, 1); // headers packets without this one
331  bytestream_put_buffer(&p, "fLaC", 4);
332  bytestream_put_byte(&p, 0x00); // streaminfo
333  bytestream_put_be24(&p, 34);
335 
336  // second packet: VorbisComment
337  p = ogg_write_vorbiscomment(4, bitexact, &oggstream->header_len[1], m, 0);
338  if (!p)
339  return AVERROR(ENOMEM);
340  oggstream->header[1] = p;
341  bytestream_put_byte(&p, 0x84); // last metadata block and vorbis comment
342  bytestream_put_be24(&p, oggstream->header_len[1] - 4);
343 
344  return 0;
345 }
346 
347 #define SPEEX_HEADER_SIZE 80
348 
350  OGGStreamContext *oggstream, int bitexact,
351  AVDictionary **m)
352 {
353  uint8_t *p;
354 
355  if (avctx->extradata_size < SPEEX_HEADER_SIZE)
356  return AVERROR_INVALIDDATA;
357 
358  // first packet: Speex header
360  if (!p)
361  return AVERROR(ENOMEM);
362  oggstream->header[0] = p;
363  oggstream->header_len[0] = SPEEX_HEADER_SIZE;
365  AV_WL32(&oggstream->header[0][68], 0); // set extra_headers to 0
366 
367  // second packet: VorbisComment
368  p = ogg_write_vorbiscomment(0, bitexact, &oggstream->header_len[1], m, 0);
369  if (!p)
370  return AVERROR(ENOMEM);
371  oggstream->header[1] = p;
372 
373  return 0;
374 }
375 
376 #define OPUS_HEADER_SIZE 19
377 
379  OGGStreamContext *oggstream, int bitexact,
380  AVDictionary **m)
381 {
382  uint8_t *p;
383 
384  if (avctx->extradata_size < OPUS_HEADER_SIZE)
385  return AVERROR_INVALIDDATA;
386 
387  /* first packet: Opus header */
388  p = av_mallocz(avctx->extradata_size);
389  if (!p)
390  return AVERROR(ENOMEM);
391  oggstream->header[0] = p;
392  oggstream->header_len[0] = avctx->extradata_size;
393  bytestream_put_buffer(&p, avctx->extradata, avctx->extradata_size);
394 
395  /* second packet: VorbisComment */
396  p = ogg_write_vorbiscomment(8, bitexact, &oggstream->header_len[1], m, 0);
397  if (!p)
398  return AVERROR(ENOMEM);
399  oggstream->header[1] = p;
400  bytestream_put_buffer(&p, "OpusTags", 8);
401 
402  return 0;
403 }
404 
406 {
407  OGGContext *ogg = s->priv_data;
408  OGGPageList *next, *p;
409 
410  if (!ogg->page_list)
411  return;
412 
413  for (p = ogg->page_list; p; ) {
414  OGGStreamContext *oggstream =
416  if (oggstream->page_count < 2 && !flush)
417  break;
418  ogg_write_page(s, &p->page,
419  flush == 1 && oggstream->page_count == 1 ? 4 : 0); // eos
420  next = p->next;
421  av_freep(&p);
422  p = next;
423  }
424  ogg->page_list = p;
425 }
426 
428 {
429  OGGContext *ogg = s->priv_data;
430  OGGStreamContext *oggstream = NULL;
431  int i, j;
432 
433  if (ogg->pref_size)
434  av_log(s, AV_LOG_WARNING, "The pagesize option is deprecated\n");
435 
436  for (i = 0; i < s->nb_streams; i++) {
437  AVStream *st = s->streams[i];
438  unsigned serial_num = i + ogg->serial_offset;
439 
440  if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
441  if (st->codec->codec_id == AV_CODEC_ID_OPUS)
442  /* Opus requires a fixed 48kHz clock */
443  avpriv_set_pts_info(st, 64, 1, 48000);
444  else
445  avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
446  }
447 
448  if (st->codec->codec_id != AV_CODEC_ID_VORBIS &&
450  st->codec->codec_id != AV_CODEC_ID_SPEEX &&
451  st->codec->codec_id != AV_CODEC_ID_FLAC &&
452  st->codec->codec_id != AV_CODEC_ID_OPUS) {
453  av_log(s, AV_LOG_ERROR, "Unsupported codec id in stream %d\n", i);
454  return AVERROR(EINVAL);
455  }
456 
457  if (!st->codec->extradata || !st->codec->extradata_size) {
458  av_log(s, AV_LOG_ERROR, "No extradata present\n");
459  return AVERROR_INVALIDDATA;
460  }
461  oggstream = av_mallocz(sizeof(*oggstream));
462  if (!oggstream)
463  return AVERROR(ENOMEM);
464 
465  oggstream->page.stream_index = i;
466 
467  if (!(s->flags & AVFMT_FLAG_BITEXACT))
468  do {
469  serial_num = av_get_random_seed();
470  for (j = 0; j < i; j++) {
471  OGGStreamContext *sc = s->streams[j]->priv_data;
472  if (serial_num == sc->serial_num)
473  break;
474  }
475  } while (j < i);
476  oggstream->serial_num = serial_num;
477 
479 
480  st->priv_data = oggstream;
481  if (st->codec->codec_id == AV_CODEC_ID_FLAC) {
482  int err = ogg_build_flac_headers(st->codec, oggstream,
484  &st->metadata);
485  if (err) {
486  av_log(s, AV_LOG_ERROR, "Error writing FLAC headers\n");
487  av_freep(&st->priv_data);
488  return err;
489  }
490  } else if (st->codec->codec_id == AV_CODEC_ID_SPEEX) {
491  int err = ogg_build_speex_headers(st->codec, oggstream,
493  &st->metadata);
494  if (err) {
495  av_log(s, AV_LOG_ERROR, "Error writing Speex headers\n");
496  av_freep(&st->priv_data);
497  return err;
498  }
499  } else if (st->codec->codec_id == AV_CODEC_ID_OPUS) {
500  int err = ogg_build_opus_headers(st->codec, oggstream,
502  &st->metadata);
503  if (err) {
504  av_log(s, AV_LOG_ERROR, "Error writing Opus headers\n");
505  av_freep(&st->priv_data);
506  return err;
507  }
508  } else {
509  uint8_t *p;
510  const char *cstr = st->codec->codec_id == AV_CODEC_ID_VORBIS ? "vorbis" : "theora";
511  int header_type = st->codec->codec_id == AV_CODEC_ID_VORBIS ? 3 : 0x81;
512  int framing_bit = st->codec->codec_id == AV_CODEC_ID_VORBIS ? 1 : 0;
513 
515  st->codec->codec_id == AV_CODEC_ID_VORBIS ? 30 : 42,
516  (const uint8_t**)oggstream->header, oggstream->header_len) < 0) {
517  av_log(s, AV_LOG_ERROR, "Extradata corrupted\n");
518  av_freep(&st->priv_data);
519  return AVERROR_INVALIDDATA;
520  }
521 
523  &oggstream->header_len[1], &st->metadata,
524  framing_bit);
525  oggstream->header[1] = p;
526  if (!p)
527  return AVERROR(ENOMEM);
528 
529  bytestream_put_byte(&p, header_type);
530  bytestream_put_buffer(&p, cstr, 6);
531 
532  if (st->codec->codec_id == AV_CODEC_ID_THEORA) {
533  /** KFGSHIFT is the width of the less significant section of the granule position
534  The less significant section is the frame count since the last keyframe */
535  oggstream->kfgshift = ((oggstream->header[0][40]&3)<<3)|(oggstream->header[0][41]>>5);
536  oggstream->vrev = oggstream->header[0][9];
537  av_log(s, AV_LOG_DEBUG, "theora kfgshift %d, vrev %d\n",
538  oggstream->kfgshift, oggstream->vrev);
539  }
540  }
541  }
542 
543  for (j = 0; j < s->nb_streams; j++) {
544  OGGStreamContext *oggstream = s->streams[j]->priv_data;
545  ogg_buffer_data(s, s->streams[j], oggstream->header[0],
546  oggstream->header_len[0], 0, 1);
547  oggstream->page.flags |= 2; // bos
548  ogg_buffer_page(s, oggstream);
549  }
550  for (j = 0; j < s->nb_streams; j++) {
551  AVStream *st = s->streams[j];
552  OGGStreamContext *oggstream = st->priv_data;
553  for (i = 1; i < 3; i++) {
554  if (oggstream->header_len[i])
555  ogg_buffer_data(s, st, oggstream->header[i],
556  oggstream->header_len[i], 0, 1);
557  }
558  ogg_buffer_page(s, oggstream);
559  }
560 
561  oggstream->page.start_granule = AV_NOPTS_VALUE;
562 
563  ogg_write_pages(s, 2);
564 
565  return 0;
566 }
567 
569 {
570  AVStream *st = s->streams[pkt->stream_index];
571  OGGStreamContext *oggstream = st->priv_data;
572  int ret;
573  int64_t granule;
574 
575  if (st->codec->codec_id == AV_CODEC_ID_THEORA) {
576  int64_t pts = oggstream->vrev < 1 ? pkt->pts : pkt->pts + pkt->duration;
577  int pframe_count;
578  if (pkt->flags & AV_PKT_FLAG_KEY)
579  oggstream->last_kf_pts = pts;
580  pframe_count = pts - oggstream->last_kf_pts;
581  // prevent frame count from overflow if key frame flag is not set
582  if (pframe_count >= (1<<oggstream->kfgshift)) {
583  oggstream->last_kf_pts += pframe_count;
584  pframe_count = 0;
585  }
586  granule = (oggstream->last_kf_pts<<oggstream->kfgshift) | pframe_count;
587  } else if (st->codec->codec_id == AV_CODEC_ID_OPUS)
588  granule = pkt->pts + pkt->duration +
590  (AVRational){ 1, st->codec->sample_rate },
591  st->time_base);
592  else
593  granule = pkt->pts + pkt->duration;
594 
595  if (oggstream->page.start_granule == AV_NOPTS_VALUE)
596  oggstream->page.start_granule = pkt->pts;
597 
598  ret = ogg_buffer_data(s, st, pkt->data, pkt->size, granule, 0);
599  if (ret < 0)
600  return ret;
601 
602  ogg_write_pages(s, 0);
603 
604  oggstream->last_granule = granule;
605 
606  return 0;
607 }
608 
610 {
611  int i;
612 
613  if (pkt)
614  return ogg_write_packet_internal(s, pkt);
615 
616  for (i = 0; i < s->nb_streams; i++) {
617  OGGStreamContext *oggstream = s->streams[i]->priv_data;
618  if (oggstream->page.segments_count)
619  ogg_buffer_page(s, oggstream);
620  }
621 
622  ogg_write_pages(s, 2);
623  return 1;
624 }
625 
627 {
628  int i;
629 
630  /* flush current page if needed */
631  for (i = 0; i < s->nb_streams; i++) {
632  OGGStreamContext *oggstream = s->streams[i]->priv_data;
633 
634  if (oggstream->page.size > 0)
635  ogg_buffer_page(s, oggstream);
636  }
637 
638  ogg_write_pages(s, 1);
639 
640  for (i = 0; i < s->nb_streams; i++) {
641  AVStream *st = s->streams[i];
642  OGGStreamContext *oggstream = st->priv_data;
643  if (st->codec->codec_id == AV_CODEC_ID_FLAC ||
644  st->codec->codec_id == AV_CODEC_ID_SPEEX ||
645  st->codec->codec_id == AV_CODEC_ID_OPUS) {
646  av_freep(&oggstream->header[0]);
647  }
648  av_freep(&oggstream->header[1]);
649  av_freep(&st->priv_data);
650  }
651  return 0;
652 }
653 
654 #if CONFIG_OGG_MUXER
655 OGG_CLASS(ogg, Ogg)
656 AVOutputFormat ff_ogg_muxer = {
657  .name = "ogg",
658  .long_name = NULL_IF_CONFIG_SMALL("Ogg"),
659  .mime_type = "application/ogg",
660  .extensions = "ogg,ogv"
661 #if !CONFIG_SPX_MUXER
662  ",spx"
663 #endif
664 #if !CONFIG_OPUS_MUXER
665  ",opus"
666 #endif
667  ,
668  .priv_data_size = sizeof(OGGContext),
669  .audio_codec = CONFIG_LIBVORBIS_ENCODER ?
671  .video_codec = AV_CODEC_ID_THEORA,
676  .priv_class = &ogg_muxer_class,
677 };
678 #endif
679 
680 #if CONFIG_OGA_MUXER
681 OGG_CLASS(oga, Ogg audio)
682 AVOutputFormat ff_oga_muxer = {
683  .name = "oga",
684  .long_name = NULL_IF_CONFIG_SMALL("Ogg Audio"),
685  .mime_type = "audio/ogg",
686  .extensions = "oga",
687  .priv_data_size = sizeof(OGGContext),
688  .audio_codec = CONFIG_LIBVORBIS_ENCODER ?
689  AV_CODEC_ID_VORBIS : AV_CODEC_ID_FLAC,
694  .priv_class = &oga_muxer_class,
695 };
696 #endif
697 
698 #if CONFIG_SPX_MUXER
699 OGG_CLASS(spx, Ogg Speex)
700 AVOutputFormat ff_spx_muxer = {
701  .name = "spx",
702  .long_name = NULL_IF_CONFIG_SMALL("Ogg Speex"),
703  .mime_type = "audio/ogg",
704  .extensions = "spx",
705  .priv_data_size = sizeof(OGGContext),
706  .audio_codec = AV_CODEC_ID_SPEEX,
711  .priv_class = &spx_muxer_class,
712 };
713 #endif
714 
715 #if CONFIG_OPUS_MUXER
716 OGG_CLASS(opus, Ogg Opus)
717 AVOutputFormat ff_opus_muxer = {
718  .name = "opus",
719  .long_name = NULL_IF_CONFIG_SMALL("Ogg Opus"),
720  .mime_type = "audio/ogg",
721  .extensions = "opus",
722  .priv_data_size = sizeof(OGGContext),
723  .audio_codec = AV_CODEC_ID_OPUS,
728  .priv_class = &opus_muxer_class,
729 };
730 #endif
int header_len[3]
Definition: oggenc.c:52
static int ogg_write_header(AVFormatContext *s)
Definition: oggenc.c:427
#define NULL
Definition: coverity.c:32
int64_t granule
Definition: oggenc.c:40
int64_t last_granule
last packet granule
Definition: oggenc.c:61
const char * s
Definition: avisynth_c.h:631
Bytestream IO Context.
Definition: avio.h:111
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
int avio_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer)
Return the written size and a pointer to the buffer.
Definition: aviobuf.c:1125
AVOption.
Definition: opt.h:255
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
static int ogg_build_speex_headers(AVCodecContext *avctx, OGGStreamContext *oggstream, int bitexact, AVDictionary **m)
Definition: oggenc.c:349
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
unsigned page_count
number of page buffered
Definition: oggenc.c:58
#define AV_DICT_DONT_OVERWRITE
Don't overwrite existing entries.
Definition: dict.h:81
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4006
int size
Definition: avcodec.h:1163
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:203
uint8_t data[MAX_PAGE_SIZE]
Definition: oggenc.c:45
OGGPage page
Definition: oggenc.c:65
void * priv_data
Definition: avformat.h:862
OGGPage page
current page
Definition: oggenc.c:59
static AVPacket pkt
#define AVFMT_ALLOW_FLUSH
Format allows flushing.
Definition: avformat.h:481
int avio_open_dyn_buf(AVIOContext **s)
Open a write only memory stream.
Definition: aviobuf.c:1113
#define OPUS_HEADER_SIZE
Definition: oggenc.c:376
int ff_vorbiscomment_write(uint8_t **p, AVDictionary **m, const char *vendor_string)
Write a VorbisComment into a buffer.
Definition: vorbiscomment.c:54
static int ogg_write_page(AVFormatContext *s, OGGPage *page, int extra_flags)
Definition: oggenc.c:109
Format I/O context.
Definition: avformat.h:1272
static int ogg_build_flac_headers(AVCodecContext *avctx, OGGStreamContext *oggstream, int bitexact, AVDictionary **m)
Definition: oggenc.c:311
static void ogg_update_checksum(AVFormatContext *s, AVIOContext *pb, int64_t crc_offset)
Definition: oggenc.c:100
void avio_wl32(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:318
uint8_t
AVOptions.
uint16_t size
Definition: oggenc.c:46
#define MAX_PAGE_SIZE
Definition: oggenc.c:36
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:1355
uint8_t segments_count
Definition: oggenc.c:43
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1340
int64_t last_kf_pts
Definition: oggenc.c:55
int flags
Flags modifying the (de)muxer behaviour.
Definition: avformat.h:1383
uint8_t * data
Definition: avcodec.h:1162
ptrdiff_t size
Definition: opengl_enc.c:101
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:365
static const uint8_t header[24]
Definition: sdr2.c:67
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition: aviobuf.c:177
static av_always_inline void ffio_wfourcc(AVIOContext *pb, const uint8_t *s)
Definition: avio_internal.h:67
Definition: oggenc.c:38
#define AVFMT_FLAG_BITEXACT
When muxing, try to avoid writing any random/volatile data to the output.
Definition: avformat.h:1400
int duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: avcodec.h:1180
static const AVOption options[]
Definition: oggenc.c:80
void av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags)
Copy entries from one AVDictionary struct into another.
Definition: dict.c:213
#define av_log(a,...)
unsigned m
Definition: audioconvert.c:187
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1208
void avio_wl64(AVIOContext *s, uint64_t val)
Definition: aviobuf.c:404
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:140
unsigned page_counter
Definition: oggenc.c:50
const AVMetadataConv ff_vorbiscomment_metadata_conv[]
VorbisComment metadata conversion mapping.
Definition: vorbiscomment.c:33
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
AVDictionary * metadata
Metadata that applies to the whole file.
Definition: avformat.h:1482
static int ogg_buffer_data(AVFormatContext *s, AVStream *st, uint8_t *data, unsigned size, int64_t granule, int header)
Definition: oggenc.c:211
FLAC (Free Lossless Audio Codec) decoder/demuxer common functions.
int64_t start_granule
Definition: oggenc.c:39
#define AVERROR(e)
Definition: error.h:43
struct OGGPageList * next
Definition: oggenc.c:66
int pref_size
preferred page size (0 => fill all segments)
Definition: oggenc.c:72
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
int initial_padding
Audio only.
Definition: avcodec.h:3015
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
int64_t ff_vorbiscomment_length(AVDictionary *m, const char *vendor_string)
Calculate the length in bytes of a VorbisComment.
Definition: vorbiscomment.c:41
static const uint8_t offset[127][2]
Definition: vf_spp.c:92
uint8_t flags
Definition: oggenc.c:42
static int ogg_reset_cur_page(OGGStreamContext *oggstream)
Definition: oggenc.c:177
static int64_t ogg_granule_to_timestamp(OGGStreamContext *oggstream, int64_t granule)
Definition: oggenc.c:152
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1168
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:861
static int ogg_write_packet_internal(AVFormatContext *s, AVPacket *pkt)
Definition: oggenc.c:568
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1328
static int ogg_write_trailer(AVFormatContext *s)
Definition: oggenc.c:626
#define LIBAVFORMAT_IDENT
Definition: version.h:44
void ffio_init_checksum(AVIOContext *s, unsigned long(*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len), unsigned long checksum)
Definition: aviobuf.c:516
int void avio_flush(AVIOContext *s)
Force flushing of buffered data.
Definition: aviobuf.c:197
#define FFMIN(a, b)
Definition: common.h:66
ret
Definition: avfilter.c:974
int serial_offset
Definition: oggenc.c:74
static int write_trailer(AVFormatContext *s1)
Definition: v4l2enc.c:94
unsigned long ff_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf, unsigned int len)
Definition: aviobuf.c:496
const char * name
Definition: avformat.h:513
static int ogg_compare_granule(AVFormatContext *s, OGGPage *next, OGGPage *page)
Definition: oggenc.c:161
#define FLAC_STREAMINFO_SIZE
Definition: flac.h:34
int avpriv_split_xiph_headers(const uint8_t *extradata, int extradata_size, int first_header_size, const uint8_t *header_start[3], int header_len[3])
Split a single extradata buffer into the three headers that most Xiph codecs use. ...
Definition: xiph.c:24
AVDictionary * metadata
Definition: avformat.h:916
uint8_t * header[3]
Definition: oggenc.c:51
#define SPEEX_HEADER_SIZE
Definition: oggenc.c:347
static void flush(AVCodecContext *avctx)
Definition: aacdec.c:514
Stream structure.
Definition: avformat.h:842
enum AVMediaType codec_type
Definition: avcodec.h:1249
enum AVCodecID codec_id
Definition: avcodec.h:1258
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
Definition: avutil.h:253
int sample_rate
samples per second
Definition: avcodec.h:1985
AVIOContext * pb
I/O context.
Definition: avformat.h:1314
void avio_w8(AVIOContext *s, int b)
Definition: aviobuf.c:155
main external API structure.
Definition: avcodec.h:1241
static int ogg_buffer_page(AVFormatContext *s, OGGStreamContext *oggstream)
Definition: oggenc.c:186
void * buf
Definition: avisynth_c.h:553
int stream_index
Definition: oggenc.c:41
int extradata_size
Definition: avcodec.h:1356
static int ogg_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: oggenc.c:609
Describe the class of an AVClass context structure.
Definition: log.h:67
#define OGG_CLASS(flavor, name)
Definition: oggenc.c:92
rational number numerator/denominator
Definition: rational.h:43
unsigned long ffio_get_checksum(AVIOContext *s)
Definition: aviobuf.c:508
static uint8_t * ogg_write_vorbiscomment(int64_t offset, int bitexact, int *header_len, AVDictionary **m, int framing_bit)
Definition: oggenc.c:285
unsigned serial_num
serial number
Definition: oggenc.c:60
#define PARAM
Definition: oggenc.c:78
static int64_t pts
Global timestamp for the audio frames.
static int flags
Definition: cpu.c:47
OGGPageList * page_list
Definition: oggenc.c:71
static int ogg_build_opus_headers(AVCodecContext *avctx, OGGStreamContext *oggstream, int bitexact, AVDictionary **m)
Definition: oggenc.c:378
Main libavformat public API header.
#define OFFSET(x)
Definition: oggenc.c:77
static int ogg_key_granule(OGGStreamContext *oggstream, int64_t granule)
Definition: oggenc.c:147
int kfgshift
for theora granule
Definition: oggenc.c:54
void ff_metadata_conv(AVDictionary **pm, const AVMetadataConv *d_conv, const AVMetadataConv *s_conv)
Definition: metadata.c:26
static av_always_inline void bytestream_put_buffer(uint8_t **b, const uint8_t *src, unsigned int size)
Definition: bytestream.h:366
#define av_free(p)
Definition: oggdec.h:101
int len
void * priv_data
Format private data.
Definition: avformat.h:1300
static void write_header(FFV1Context *f)
Definition: ffv1enc.c:493
void avio_wb32(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:326
#define av_freep(p)
void INT64 start
Definition: avisynth_c.h:553
uint8_t segments[255]
Definition: oggenc.c:44
uint32_t av_get_random_seed(void)
Get a seed to use in conjunction with random functions.
Definition: random_seed.c:109
int stream_index
Definition: avcodec.h:1164
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avformat.h:884
int64_t pref_duration
preferred page duration (0 => fill all segments)
Definition: oggenc.c:73
#define AVFMT_TS_NEGATIVE
Format allows muxing negative timestamps.
Definition: avformat.h:490
static void ogg_write_pages(AVFormatContext *s, int flush)
Definition: oggenc.c:405
This structure stores compressed data.
Definition: avcodec.h:1139
static int write_packet(AVFormatContext *s1, AVPacket *pkt)
Definition: v4l2enc.c:86
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:250
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1155
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:241
#define AV_WL32(p, v)
Definition: intreadwrite.h:426