FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
matroskadec.c
Go to the documentation of this file.
1 /*
2  * Matroska file demuxer
3  * Copyright (c) 2003-2008 The FFmpeg Project
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 /**
23  * @file
24  * Matroska file demuxer
25  * @author Ronald Bultje <rbultje@ronald.bitfreak.net>
26  * @author with a little help from Moritz Bunkus <moritz@bunkus.org>
27  * @author totally reworked by Aurelien Jacobs <aurel@gnuage.org>
28  * @see specs available on the Matroska project page: http://www.matroska.org/
29  */
30 
31 #include "config.h"
32 
33 #include <inttypes.h>
34 #include <stdio.h>
35 
36 #include "libavutil/avstring.h"
37 #include "libavutil/base64.h"
38 #include "libavutil/dict.h"
39 #include "libavutil/intfloat.h"
40 #include "libavutil/intreadwrite.h"
41 #include "libavutil/lzo.h"
43 #include "libavutil/mathematics.h"
44 #include "libavutil/opt.h"
46 
47 #include "libavcodec/bytestream.h"
48 #include "libavcodec/flac.h"
49 #include "libavcodec/mpeg4audio.h"
50 
51 #include "avformat.h"
52 #include "avio_internal.h"
53 #include "internal.h"
54 #include "isom.h"
55 #include "matroska.h"
56 #include "oggdec.h"
57 /* For ff_codec_get_id(). */
58 #include "riff.h"
59 #include "rmsipr.h"
60 
61 #if CONFIG_BZLIB
62 #include <bzlib.h>
63 #endif
64 #if CONFIG_ZLIB
65 #include <zlib.h>
66 #endif
67 
68 #include "qtpalette.h"
69 
70 typedef enum {
83 } EbmlType;
84 
85 typedef const struct EbmlSyntax {
86  uint32_t id;
90  union {
91  uint64_t u;
92  double f;
93  const char *s;
94  const struct EbmlSyntax *n;
95  } def;
96 } EbmlSyntax;
97 
98 typedef struct EbmlList {
99  int nb_elem;
100  void *elem;
101 } EbmlList;
102 
103 typedef struct EbmlBin {
104  int size;
106  int64_t pos;
107 } EbmlBin;
108 
109 typedef struct Ebml {
110  uint64_t version;
111  uint64_t max_size;
112  uint64_t id_length;
113  char *doctype;
114  uint64_t doctype_version;
115 } Ebml;
116 
117 typedef struct MatroskaTrackCompression {
118  uint64_t algo;
121 
122 typedef struct MatroskaTrackEncryption {
123  uint64_t algo;
126 
127 typedef struct MatroskaTrackEncoding {
128  uint64_t scope;
129  uint64_t type;
133 
134 typedef struct MatroskaMasteringMeta {
135  double r_x;
136  double r_y;
137  double g_x;
138  double g_y;
139  double b_x;
140  double b_y;
141  double white_x;
142  double white_y;
146 
147 typedef struct MatroskaTrackVideoColor {
150  uint64_t chroma_sub_horz;
151  uint64_t chroma_sub_vert;
152  uint64_t cb_sub_horz;
153  uint64_t cb_sub_vert;
156  uint64_t range;
158  uint64_t primaries;
159  uint64_t max_cll;
160  uint64_t max_fall;
163 
164 typedef struct MatroskaTrackVideo {
165  double frame_rate;
166  uint64_t display_width;
167  uint64_t display_height;
168  uint64_t pixel_width;
169  uint64_t pixel_height;
171  uint64_t interlaced;
172  uint64_t field_order;
173  uint64_t stereo_mode;
174  uint64_t alpha_mode;
177 
178 typedef struct MatroskaTrackAudio {
179  double samplerate;
181  uint64_t bitdepth;
182  uint64_t channels;
183 
184  /* real audio header (extracted from extradata) */
190  int pkt_cnt;
191  uint64_t buf_timecode;
194 
195 typedef struct MatroskaTrackPlane {
196  uint64_t uid;
197  uint64_t type;
199 
200 typedef struct MatroskaTrackOperation {
203 
204 typedef struct MatroskaTrack {
205  uint64_t num;
206  uint64_t uid;
207  uint64_t type;
208  char *name;
209  char *codec_id;
211  char *language;
212  double time_scale;
214  uint64_t flag_default;
215  uint64_t flag_forced;
216  uint64_t seek_preroll;
221  uint64_t codec_delay;
223 
225  int64_t end_timecode;
228 
231 } MatroskaTrack;
232 
233 typedef struct MatroskaAttachment {
234  uint64_t uid;
235  char *filename;
236  char *mime;
238 
241 
242 typedef struct MatroskaChapter {
243  uint64_t start;
244  uint64_t end;
245  uint64_t uid;
246  char *title;
247 
250 
251 typedef struct MatroskaIndexPos {
252  uint64_t track;
253  uint64_t pos;
255 
256 typedef struct MatroskaIndex {
257  uint64_t time;
259 } MatroskaIndex;
260 
261 typedef struct MatroskaTag {
262  char *name;
263  char *string;
264  char *lang;
265  uint64_t def;
267 } MatroskaTag;
268 
269 typedef struct MatroskaTagTarget {
270  char *type;
271  uint64_t typevalue;
272  uint64_t trackuid;
273  uint64_t chapteruid;
274  uint64_t attachuid;
276 
277 typedef struct MatroskaTags {
280 } MatroskaTags;
281 
282 typedef struct MatroskaSeekhead {
283  uint64_t id;
284  uint64_t pos;
286 
287 typedef struct MatroskaLevel {
288  uint64_t start;
289  uint64_t length;
290 } MatroskaLevel;
291 
292 typedef struct MatroskaCluster {
293  uint64_t timecode;
296 
297 typedef struct MatroskaLevel1Element {
298  uint64_t id;
299  uint64_t pos;
300  int parsed;
302 
303 typedef struct MatroskaDemuxContext {
304  const AVClass *class;
306 
307  /* EBML stuff */
310  int level_up;
311  uint32_t current_id;
312 
313  uint64_t time_scale;
314  double duration;
315  char *title;
316  char *muxingapp;
324 
325  /* byte position of the segment inside the stream */
326  int64_t segment_start;
327 
328  /* the packet queue */
332 
333  int done;
334 
335  /* What to skip before effectively reading a packet. */
338 
339  /* File has a CUES element, but we defer parsing until it is needed. */
341 
342  /* Level1 elements and whether they were read yet */
345 
349 
350  /* File has SSA subtitles which prevent incremental cluster parsing. */
352 
353  /* WebM DASH Manifest live flag/ */
354  int is_live;
356 
357 typedef struct MatroskaBlock {
358  uint64_t duration;
359  int64_t reference;
360  uint64_t non_simple;
362  uint64_t additional_id;
365 } MatroskaBlock;
366 
367 static const EbmlSyntax ebml_header[] = {
368  { EBML_ID_EBMLREADVERSION, EBML_UINT, 0, offsetof(Ebml, version), { .u = EBML_VERSION } },
369  { EBML_ID_EBMLMAXSIZELENGTH, EBML_UINT, 0, offsetof(Ebml, max_size), { .u = 8 } },
370  { EBML_ID_EBMLMAXIDLENGTH, EBML_UINT, 0, offsetof(Ebml, id_length), { .u = 4 } },
371  { EBML_ID_DOCTYPE, EBML_STR, 0, offsetof(Ebml, doctype), { .s = "(none)" } },
372  { EBML_ID_DOCTYPEREADVERSION, EBML_UINT, 0, offsetof(Ebml, doctype_version), { .u = 1 } },
375  { 0 }
376 };
377 
378 static const EbmlSyntax ebml_syntax[] = {
379  { EBML_ID_HEADER, EBML_NEST, 0, 0, { .n = ebml_header } },
380  { 0 }
381 };
382 
383 static const EbmlSyntax matroska_info[] = {
384  { MATROSKA_ID_TIMECODESCALE, EBML_UINT, 0, offsetof(MatroskaDemuxContext, time_scale), { .u = 1000000 } },
386  { MATROSKA_ID_TITLE, EBML_UTF8, 0, offsetof(MatroskaDemuxContext, title) },
388  { MATROSKA_ID_MUXINGAPP, EBML_UTF8, 0, offsetof(MatroskaDemuxContext, muxingapp) },
389  { MATROSKA_ID_DATEUTC, EBML_BIN, 0, offsetof(MatroskaDemuxContext, date_utc) },
391  { 0 }
392 };
393 
395  { MATROSKA_ID_VIDEOCOLOR_RX, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, r_x), { .f=-1 } },
396  { MATROSKA_ID_VIDEOCOLOR_RY, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, r_y), { .f=-1 } },
397  { MATROSKA_ID_VIDEOCOLOR_GX, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, g_x), { .f=-1 } },
398  { MATROSKA_ID_VIDEOCOLOR_GY, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, g_y), { .f=-1 } },
399  { MATROSKA_ID_VIDEOCOLOR_BX, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, b_x), { .f=-1 } },
400  { MATROSKA_ID_VIDEOCOLOR_BY, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, b_y), { .f=-1 } },
401  { MATROSKA_ID_VIDEOCOLOR_WHITEX, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, white_x), { .f=-1 } },
402  { MATROSKA_ID_VIDEOCOLOR_WHITEY, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, white_y), { .f=-1 } },
403  { MATROSKA_ID_VIDEOCOLOR_LUMINANCEMIN, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, min_luminance), { .f=-1 } },
404  { MATROSKA_ID_VIDEOCOLOR_LUMINANCEMAX, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, max_luminance), { .f=-1 } },
405  { 0 }
406 };
407 
409  { MATROSKA_ID_VIDEOCOLORMATRIXCOEFF, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, matrix_coefficients), { .u=2 } },
410  { MATROSKA_ID_VIDEOCOLORBITSPERCHANNEL, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, bits_per_channel), { .u=8 } },
411  { MATROSKA_ID_VIDEOCOLORCHROMASUBHORZ, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, chroma_sub_horz), { .u=0 } },
412  { MATROSKA_ID_VIDEOCOLORCHROMASUBVERT, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, chroma_sub_vert), { .u=0 } },
413  { MATROSKA_ID_VIDEOCOLORCBSUBHORZ, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, cb_sub_horz), { .u=0 } },
414  { MATROSKA_ID_VIDEOCOLORCBSUBVERT, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, cb_sub_vert), { .u=0 } },
415  { MATROSKA_ID_VIDEOCOLORCHROMASITINGHORZ, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, chroma_siting_horz), { .u=0 } },
416  { MATROSKA_ID_VIDEOCOLORCHROMASITINGVERT, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, chroma_siting_vert), { .u=0 } },
417  { MATROSKA_ID_VIDEOCOLORRANGE, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, range), { .u=0 } },
419  { MATROSKA_ID_VIDEOCOLORPRIMARIES, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, primaries), { .u=2 } },
420  { MATROSKA_ID_VIDEOCOLORMAXCLL, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, max_cll), { .u=0 } },
421  { MATROSKA_ID_VIDEOCOLORMAXFALL, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, max_fall), { .u=0 } },
422  { MATROSKA_ID_VIDEOCOLORMASTERINGMETA, EBML_NEST, 0, offsetof(MatroskaTrackVideoColor, mastering_meta), { .n = matroska_mastering_meta } },
423  { 0 }
424 };
425 
427  { MATROSKA_ID_VIDEOFRAMERATE, EBML_FLOAT, 0, offsetof(MatroskaTrackVideo, frame_rate) },
428  { MATROSKA_ID_VIDEODISPLAYWIDTH, EBML_UINT, 0, offsetof(MatroskaTrackVideo, display_width), { .u=-1 } },
429  { MATROSKA_ID_VIDEODISPLAYHEIGHT, EBML_UINT, 0, offsetof(MatroskaTrackVideo, display_height), { .u=-1 } },
430  { MATROSKA_ID_VIDEOPIXELWIDTH, EBML_UINT, 0, offsetof(MatroskaTrackVideo, pixel_width) },
431  { MATROSKA_ID_VIDEOPIXELHEIGHT, EBML_UINT, 0, offsetof(MatroskaTrackVideo, pixel_height) },
432  { MATROSKA_ID_VIDEOCOLORSPACE, EBML_BIN, 0, offsetof(MatroskaTrackVideo, color_space) },
433  { MATROSKA_ID_VIDEOALPHAMODE, EBML_UINT, 0, offsetof(MatroskaTrackVideo, alpha_mode) },
434  { MATROSKA_ID_VIDEOCOLOR, EBML_NEST, 0, offsetof(MatroskaTrackVideo, color), { .n = matroska_track_video_color } },
444  { 0 }
445 };
446 
448  { MATROSKA_ID_AUDIOSAMPLINGFREQ, EBML_FLOAT, 0, offsetof(MatroskaTrackAudio, samplerate), { .f = 8000.0 } },
449  { MATROSKA_ID_AUDIOOUTSAMPLINGFREQ, EBML_FLOAT, 0, offsetof(MatroskaTrackAudio, out_samplerate) },
450  { MATROSKA_ID_AUDIOBITDEPTH, EBML_UINT, 0, offsetof(MatroskaTrackAudio, bitdepth) },
451  { MATROSKA_ID_AUDIOCHANNELS, EBML_UINT, 0, offsetof(MatroskaTrackAudio, channels), { .u = 1 } },
452  { 0 }
453 };
454 
458  { 0 }
459 };
460 
469  { 0 }
470 };
472  { MATROSKA_ID_ENCODINGSCOPE, EBML_UINT, 0, offsetof(MatroskaTrackEncoding, scope), { .u = 1 } },
473  { MATROSKA_ID_ENCODINGTYPE, EBML_UINT, 0, offsetof(MatroskaTrackEncoding, type), { .u = 0 } },
474  { MATROSKA_ID_ENCODINGCOMPRESSION, EBML_NEST, 0, offsetof(MatroskaTrackEncoding, compression), { .n = matroska_track_encoding_compression } },
475  { MATROSKA_ID_ENCODINGENCRYPTION, EBML_NEST, 0, offsetof(MatroskaTrackEncoding, encryption), { .n = matroska_track_encoding_encryption } },
477  { 0 }
478 };
479 
481  { MATROSKA_ID_TRACKCONTENTENCODING, EBML_NEST, sizeof(MatroskaTrackEncoding), offsetof(MatroskaTrack, encodings), { .n = matroska_track_encoding } },
482  { 0 }
483 };
484 
488  { 0 }
489 };
490 
492  { MATROSKA_ID_TRACKPLANE, EBML_NEST, sizeof(MatroskaTrackPlane), offsetof(MatroskaTrackOperation,combine_planes), {.n = matroska_track_plane} },
493  { 0 }
494 };
495 
497  { MATROSKA_ID_TRACKCOMBINEPLANES, EBML_NEST, 0, 0, {.n = matroska_track_combine_planes} },
498  { 0 }
499 };
500 
501 static const EbmlSyntax matroska_track[] = {
502  { MATROSKA_ID_TRACKNUMBER, EBML_UINT, 0, offsetof(MatroskaTrack, num) },
504  { MATROSKA_ID_TRACKUID, EBML_UINT, 0, offsetof(MatroskaTrack, uid) },
507  { MATROSKA_ID_CODECPRIVATE, EBML_BIN, 0, offsetof(MatroskaTrack, codec_priv) },
508  { MATROSKA_ID_CODECDELAY, EBML_UINT, 0, offsetof(MatroskaTrack, codec_delay) },
509  { MATROSKA_ID_TRACKLANGUAGE, EBML_UTF8, 0, offsetof(MatroskaTrack, language), { .s = "eng" } },
510  { MATROSKA_ID_TRACKDEFAULTDURATION, EBML_UINT, 0, offsetof(MatroskaTrack, default_duration) },
511  { MATROSKA_ID_TRACKTIMECODESCALE, EBML_FLOAT, 0, offsetof(MatroskaTrack, time_scale), { .f = 1.0 } },
512  { MATROSKA_ID_TRACKFLAGDEFAULT, EBML_UINT, 0, offsetof(MatroskaTrack, flag_default), { .u = 1 } },
513  { MATROSKA_ID_TRACKFLAGFORCED, EBML_UINT, 0, offsetof(MatroskaTrack, flag_forced), { .u = 0 } },
514  { MATROSKA_ID_TRACKVIDEO, EBML_NEST, 0, offsetof(MatroskaTrack, video), { .n = matroska_track_video } },
515  { MATROSKA_ID_TRACKAUDIO, EBML_NEST, 0, offsetof(MatroskaTrack, audio), { .n = matroska_track_audio } },
516  { MATROSKA_ID_TRACKOPERATION, EBML_NEST, 0, offsetof(MatroskaTrack, operation), { .n = matroska_track_operation } },
517  { MATROSKA_ID_TRACKCONTENTENCODINGS, EBML_NEST, 0, 0, { .n = matroska_track_encodings } },
518  { MATROSKA_ID_TRACKMAXBLKADDID, EBML_UINT, 0, offsetof(MatroskaTrack, max_block_additional_id) },
519  { MATROSKA_ID_SEEKPREROLL, EBML_UINT, 0, offsetof(MatroskaTrack, seek_preroll) },
528  { 0 }
529 };
530 
531 static const EbmlSyntax matroska_tracks[] = {
532  { MATROSKA_ID_TRACKENTRY, EBML_NEST, sizeof(MatroskaTrack), offsetof(MatroskaDemuxContext, tracks), { .n = matroska_track } },
533  { 0 }
534 };
535 
536 static const EbmlSyntax matroska_attachment[] = {
538  { MATROSKA_ID_FILENAME, EBML_UTF8, 0, offsetof(MatroskaAttachment, filename) },
539  { MATROSKA_ID_FILEMIMETYPE, EBML_STR, 0, offsetof(MatroskaAttachment, mime) },
540  { MATROSKA_ID_FILEDATA, EBML_BIN, 0, offsetof(MatroskaAttachment, bin) },
542  { 0 }
543 };
544 
546  { MATROSKA_ID_ATTACHEDFILE, EBML_NEST, sizeof(MatroskaAttachment), offsetof(MatroskaDemuxContext, attachments), { .n = matroska_attachment } },
547  { 0 }
548 };
549 
551  { MATROSKA_ID_CHAPSTRING, EBML_UTF8, 0, offsetof(MatroskaChapter, title) },
554  { 0 }
555 };
556 
561  { MATROSKA_ID_CHAPTERDISPLAY, EBML_NEST, 0, 0, { .n = matroska_chapter_display } },
566  { 0 }
567 };
568 
569 static const EbmlSyntax matroska_chapter[] = {
570  { MATROSKA_ID_CHAPTERATOM, EBML_NEST, sizeof(MatroskaChapter), offsetof(MatroskaDemuxContext, chapters), { .n = matroska_chapter_entry } },
575  { 0 }
576 };
577 
578 static const EbmlSyntax matroska_chapters[] = {
579  { MATROSKA_ID_EDITIONENTRY, EBML_NEST, 0, 0, { .n = matroska_chapter } },
580  { 0 }
581 };
582 
583 static const EbmlSyntax matroska_index_pos[] = {
584  { MATROSKA_ID_CUETRACK, EBML_UINT, 0, offsetof(MatroskaIndexPos, track) },
589  { 0 }
590 };
591 
593  { MATROSKA_ID_CUETIME, EBML_UINT, 0, offsetof(MatroskaIndex, time) },
594  { MATROSKA_ID_CUETRACKPOSITION, EBML_NEST, sizeof(MatroskaIndexPos), offsetof(MatroskaIndex, pos), { .n = matroska_index_pos } },
595  { 0 }
596 };
597 
598 static const EbmlSyntax matroska_index[] = {
599  { MATROSKA_ID_POINTENTRY, EBML_NEST, sizeof(MatroskaIndex), offsetof(MatroskaDemuxContext, index), { .n = matroska_index_entry } },
600  { 0 }
601 };
602 
603 static const EbmlSyntax matroska_simpletag[] = {
604  { MATROSKA_ID_TAGNAME, EBML_UTF8, 0, offsetof(MatroskaTag, name) },
605  { MATROSKA_ID_TAGSTRING, EBML_UTF8, 0, offsetof(MatroskaTag, string) },
606  { MATROSKA_ID_TAGLANG, EBML_STR, 0, offsetof(MatroskaTag, lang), { .s = "und" } },
607  { MATROSKA_ID_TAGDEFAULT, EBML_UINT, 0, offsetof(MatroskaTag, def) },
608  { MATROSKA_ID_TAGDEFAULT_BUG, EBML_UINT, 0, offsetof(MatroskaTag, def) },
609  { MATROSKA_ID_SIMPLETAG, EBML_NEST, sizeof(MatroskaTag), offsetof(MatroskaTag, sub), { .n = matroska_simpletag } },
610  { 0 }
611 };
612 
613 static const EbmlSyntax matroska_tagtargets[] = {
615  { MATROSKA_ID_TAGTARGETS_TYPEVALUE, EBML_UINT, 0, offsetof(MatroskaTagTarget, typevalue), { .u = 50 } },
616  { MATROSKA_ID_TAGTARGETS_TRACKUID, EBML_UINT, 0, offsetof(MatroskaTagTarget, trackuid) },
617  { MATROSKA_ID_TAGTARGETS_CHAPTERUID, EBML_UINT, 0, offsetof(MatroskaTagTarget, chapteruid) },
618  { MATROSKA_ID_TAGTARGETS_ATTACHUID, EBML_UINT, 0, offsetof(MatroskaTagTarget, attachuid) },
619  { 0 }
620 };
621 
622 static const EbmlSyntax matroska_tag[] = {
623  { MATROSKA_ID_SIMPLETAG, EBML_NEST, sizeof(MatroskaTag), offsetof(MatroskaTags, tag), { .n = matroska_simpletag } },
624  { MATROSKA_ID_TAGTARGETS, EBML_NEST, 0, offsetof(MatroskaTags, target), { .n = matroska_tagtargets } },
625  { 0 }
626 };
627 
628 static const EbmlSyntax matroska_tags[] = {
629  { MATROSKA_ID_TAG, EBML_NEST, sizeof(MatroskaTags), offsetof(MatroskaDemuxContext, tags), { .n = matroska_tag } },
630  { 0 }
631 };
632 
634  { MATROSKA_ID_SEEKID, EBML_UINT, 0, offsetof(MatroskaSeekhead, id) },
635  { MATROSKA_ID_SEEKPOSITION, EBML_UINT, 0, offsetof(MatroskaSeekhead, pos), { .u = -1 } },
636  { 0 }
637 };
638 
639 static const EbmlSyntax matroska_seekhead[] = {
640  { MATROSKA_ID_SEEKENTRY, EBML_NEST, sizeof(MatroskaSeekhead), offsetof(MatroskaDemuxContext, seekhead), { .n = matroska_seekhead_entry } },
641  { 0 }
642 };
643 
644 static const EbmlSyntax matroska_segment[] = {
645  { MATROSKA_ID_INFO, EBML_LEVEL1, 0, 0, { .n = matroska_info } },
646  { MATROSKA_ID_TRACKS, EBML_LEVEL1, 0, 0, { .n = matroska_tracks } },
647  { MATROSKA_ID_ATTACHMENTS, EBML_LEVEL1, 0, 0, { .n = matroska_attachments } },
648  { MATROSKA_ID_CHAPTERS, EBML_LEVEL1, 0, 0, { .n = matroska_chapters } },
649  { MATROSKA_ID_CUES, EBML_LEVEL1, 0, 0, { .n = matroska_index } },
650  { MATROSKA_ID_TAGS, EBML_LEVEL1, 0, 0, { .n = matroska_tags } },
651  { MATROSKA_ID_SEEKHEAD, EBML_LEVEL1, 0, 0, { .n = matroska_seekhead } },
653  { 0 }
654 };
655 
656 static const EbmlSyntax matroska_segments[] = {
657  { MATROSKA_ID_SEGMENT, EBML_NEST, 0, 0, { .n = matroska_segment } },
658  { 0 }
659 };
660 
661 static const EbmlSyntax matroska_blockmore[] = {
662  { MATROSKA_ID_BLOCKADDID, EBML_UINT, 0, offsetof(MatroskaBlock,additional_id) },
663  { MATROSKA_ID_BLOCKADDITIONAL, EBML_BIN, 0, offsetof(MatroskaBlock,additional) },
664  { 0 }
665 };
666 
668  { MATROSKA_ID_BLOCKMORE, EBML_NEST, 0, 0, {.n = matroska_blockmore} },
669  { 0 }
670 };
671 
672 static const EbmlSyntax matroska_blockgroup[] = {
673  { MATROSKA_ID_BLOCK, EBML_BIN, 0, offsetof(MatroskaBlock, bin) },
674  { MATROSKA_ID_BLOCKADDITIONS, EBML_NEST, 0, 0, { .n = matroska_blockadditions} },
675  { MATROSKA_ID_SIMPLEBLOCK, EBML_BIN, 0, offsetof(MatroskaBlock, bin) },
677  { MATROSKA_ID_DISCARDPADDING, EBML_SINT, 0, offsetof(MatroskaBlock, discard_padding) },
678  { MATROSKA_ID_BLOCKREFERENCE, EBML_SINT, 0, offsetof(MatroskaBlock, reference) },
680  { 1, EBML_UINT, 0, offsetof(MatroskaBlock, non_simple), { .u = 1 } },
681  { 0 }
682 };
683 
684 static const EbmlSyntax matroska_cluster[] = {
685  { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, offsetof(MatroskaCluster, timecode) },
686  { MATROSKA_ID_BLOCKGROUP, EBML_NEST, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } },
687  { MATROSKA_ID_SIMPLEBLOCK, EBML_PASS, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } },
690  { 0 }
691 };
692 
693 static const EbmlSyntax matroska_clusters[] = {
694  { MATROSKA_ID_CLUSTER, EBML_NEST, 0, 0, { .n = matroska_cluster } },
699  { 0 }
700 };
701 
703  { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, offsetof(MatroskaCluster, timecode) },
704  { MATROSKA_ID_BLOCKGROUP, EBML_NEST, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } },
705  { MATROSKA_ID_SIMPLEBLOCK, EBML_PASS, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } },
713  { 0 }
714 };
715 
717  { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, offsetof(MatroskaCluster, timecode) },
722  { 0 }
723 };
724 
726  { MATROSKA_ID_CLUSTER, EBML_NEST, 0, 0, { .n = matroska_cluster_incremental } },
731  { 0 }
732 };
733 
734 static const char *const matroska_doctypes[] = { "matroska", "webm" };
735 
737 
738 static int matroska_resync(MatroskaDemuxContext *matroska, int64_t last_pos)
739 {
740  AVIOContext *pb = matroska->ctx->pb;
741  uint32_t id;
742  matroska->current_id = 0;
743  matroska->num_levels = 0;
744 
745  /* seek to next position to resync from */
746  if (avio_seek(pb, last_pos + 1, SEEK_SET) < 0)
747  goto eof;
748 
749  id = avio_rb32(pb);
750 
751  // try to find a toplevel element
752  while (!avio_feof(pb)) {
753  if (id == MATROSKA_ID_INFO || id == MATROSKA_ID_TRACKS ||
754  id == MATROSKA_ID_CUES || id == MATROSKA_ID_TAGS ||
756  id == MATROSKA_ID_CLUSTER || id == MATROSKA_ID_CHAPTERS) {
757  matroska->current_id = id;
758  return 0;
759  }
760  id = (id << 8) | avio_r8(pb);
761  }
762 
763 eof:
764  matroska->done = 1;
765  return AVERROR_EOF;
766 }
767 
768 /*
769  * Return: Whether we reached the end of a level in the hierarchy or not.
770  */
772 {
773  AVIOContext *pb = matroska->ctx->pb;
774  int64_t pos = avio_tell(pb);
775 
776  if (matroska->num_levels > 0) {
777  MatroskaLevel *level = &matroska->levels[matroska->num_levels - 1];
778  if (pos - level->start >= level->length || matroska->current_id) {
779  matroska->num_levels--;
780  return 1;
781  }
782  }
783  return (matroska->is_live && matroska->ctx->pb->eof_reached) ? 1 : 0;
784 }
785 
786 /*
787  * Read: an "EBML number", which is defined as a variable-length
788  * array of bytes. The first byte indicates the length by giving a
789  * number of 0-bits followed by a one. The position of the first
790  * "one" bit inside the first byte indicates the length of this
791  * number.
792  * Returns: number of bytes read, < 0 on error
793  */
795  int max_size, uint64_t *number)
796 {
797  int read = 1, n = 1;
798  uint64_t total = 0;
799 
800  /* The first byte tells us the length in bytes - avio_r8() can normally
801  * return 0, but since that's not a valid first ebmlID byte, we can
802  * use it safely here to catch EOS. */
803  if (!(total = avio_r8(pb))) {
804  /* we might encounter EOS here */
805  if (!avio_feof(pb)) {
806  int64_t pos = avio_tell(pb);
807  av_log(matroska->ctx, AV_LOG_ERROR,
808  "Read error at pos. %"PRIu64" (0x%"PRIx64")\n",
809  pos, pos);
810  return pb->error ? pb->error : AVERROR(EIO);
811  }
812  return AVERROR_EOF;
813  }
814 
815  /* get the length of the EBML number */
816  read = 8 - ff_log2_tab[total];
817  if (read > max_size) {
818  int64_t pos = avio_tell(pb) - 1;
819  av_log(matroska->ctx, AV_LOG_ERROR,
820  "Invalid EBML number size tag 0x%02x at pos %"PRIu64" (0x%"PRIx64")\n",
821  (uint8_t) total, pos, pos);
822  return AVERROR_INVALIDDATA;
823  }
824 
825  /* read out length */
826  total ^= 1 << ff_log2_tab[total];
827  while (n++ < read)
828  total = (total << 8) | avio_r8(pb);
829 
830  *number = total;
831 
832  return read;
833 }
834 
835 /**
836  * Read a EBML length value.
837  * This needs special handling for the "unknown length" case which has multiple
838  * encodings.
839  */
841  uint64_t *number)
842 {
843  int res = ebml_read_num(matroska, pb, 8, number);
844  if (res > 0 && *number + 1 == 1ULL << (7 * res))
845  *number = 0xffffffffffffffULL;
846  return res;
847 }
848 
849 /*
850  * Read the next element as an unsigned int.
851  * 0 is success, < 0 is failure.
852  */
853 static int ebml_read_uint(AVIOContext *pb, int size, uint64_t *num)
854 {
855  int n = 0;
856 
857  if (size > 8)
858  return AVERROR_INVALIDDATA;
859 
860  /* big-endian ordering; build up number */
861  *num = 0;
862  while (n++ < size)
863  *num = (*num << 8) | avio_r8(pb);
864 
865  return 0;
866 }
867 
868 /*
869  * Read the next element as a signed int.
870  * 0 is success, < 0 is failure.
871  */
872 static int ebml_read_sint(AVIOContext *pb, int size, int64_t *num)
873 {
874  int n = 1;
875 
876  if (size > 8)
877  return AVERROR_INVALIDDATA;
878 
879  if (size == 0) {
880  *num = 0;
881  } else {
882  *num = sign_extend(avio_r8(pb), 8);
883 
884  /* big-endian ordering; build up number */
885  while (n++ < size)
886  *num = ((uint64_t)*num << 8) | avio_r8(pb);
887  }
888 
889  return 0;
890 }
891 
892 /*
893  * Read the next element as a float.
894  * 0 is success, < 0 is failure.
895  */
896 static int ebml_read_float(AVIOContext *pb, int size, double *num)
897 {
898  if (size == 0)
899  *num = 0;
900  else if (size == 4)
901  *num = av_int2float(avio_rb32(pb));
902  else if (size == 8)
903  *num = av_int2double(avio_rb64(pb));
904  else
905  return AVERROR_INVALIDDATA;
906 
907  return 0;
908 }
909 
910 /*
911  * Read the next element as an ASCII string.
912  * 0 is success, < 0 is failure.
913  */
914 static int ebml_read_ascii(AVIOContext *pb, int size, char **str)
915 {
916  char *res;
917 
918  /* EBML strings are usually not 0-terminated, so we allocate one
919  * byte more, read the string and NULL-terminate it ourselves. */
920  if (!(res = av_malloc(size + 1)))
921  return AVERROR(ENOMEM);
922  if (avio_read(pb, (uint8_t *) res, size) != size) {
923  av_free(res);
924  return AVERROR(EIO);
925  }
926  (res)[size] = '\0';
927  av_free(*str);
928  *str = res;
929 
930  return 0;
931 }
932 
933 /*
934  * Read the next element as binary data.
935  * 0 is success, < 0 is failure.
936  */
937 static int ebml_read_binary(AVIOContext *pb, int length, EbmlBin *bin)
938 {
939  av_fast_padded_malloc(&bin->data, &bin->size, length);
940  if (!bin->data)
941  return AVERROR(ENOMEM);
942 
943  bin->size = length;
944  bin->pos = avio_tell(pb);
945  if (avio_read(pb, bin->data, length) != length) {
946  av_freep(&bin->data);
947  bin->size = 0;
948  return AVERROR(EIO);
949  }
950 
951  return 0;
952 }
953 
954 /*
955  * Read the next element, but only the header. The contents
956  * are supposed to be sub-elements which can be read separately.
957  * 0 is success, < 0 is failure.
958  */
959 static int ebml_read_master(MatroskaDemuxContext *matroska, uint64_t length)
960 {
961  AVIOContext *pb = matroska->ctx->pb;
963 
964  if (matroska->num_levels >= EBML_MAX_DEPTH) {
965  av_log(matroska->ctx, AV_LOG_ERROR,
966  "File moves beyond max. allowed depth (%d)\n", EBML_MAX_DEPTH);
967  return AVERROR(ENOSYS);
968  }
969 
970  level = &matroska->levels[matroska->num_levels++];
971  level->start = avio_tell(pb);
972  level->length = length;
973 
974  return 0;
975 }
976 
977 /*
978  * Read signed/unsigned "EBML" numbers.
979  * Return: number of bytes processed, < 0 on error
980  */
982  uint8_t *data, uint32_t size, uint64_t *num)
983 {
984  AVIOContext pb;
985  ffio_init_context(&pb, data, size, 0, NULL, NULL, NULL, NULL);
986  return ebml_read_num(matroska, &pb, FFMIN(size, 8), num);
987 }
988 
989 /*
990  * Same as above, but signed.
991  */
993  uint8_t *data, uint32_t size, int64_t *num)
994 {
995  uint64_t unum;
996  int res;
997 
998  /* read as unsigned number first */
999  if ((res = matroska_ebmlnum_uint(matroska, data, size, &unum)) < 0)
1000  return res;
1001 
1002  /* make signed (weird way) */
1003  *num = unum - ((1LL << (7 * res - 1)) - 1);
1004 
1005  return res;
1006 }
1007 
1008 static int ebml_parse_elem(MatroskaDemuxContext *matroska,
1009  EbmlSyntax *syntax, void *data);
1010 
1011 static int ebml_parse_id(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
1012  uint32_t id, void *data)
1013 {
1014  int i;
1015  for (i = 0; syntax[i].id; i++)
1016  if (id == syntax[i].id)
1017  break;
1018  if (!syntax[i].id && id == MATROSKA_ID_CLUSTER &&
1019  matroska->num_levels > 0 &&
1020  matroska->levels[matroska->num_levels - 1].length == 0xffffffffffffff)
1021  return 0; // we reached the end of an unknown size cluster
1022  if (!syntax[i].id && id != EBML_ID_VOID && id != EBML_ID_CRC32) {
1023  av_log(matroska->ctx, AV_LOG_DEBUG, "Unknown entry 0x%"PRIX32"\n", id);
1024  }
1025  return ebml_parse_elem(matroska, &syntax[i], data);
1026 }
1027 
1028 static int ebml_parse(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
1029  void *data)
1030 {
1031  if (!matroska->current_id) {
1032  uint64_t id;
1033  int res = ebml_read_num(matroska, matroska->ctx->pb, 4, &id);
1034  if (res < 0) {
1035  // in live mode, finish parsing if EOF is reached.
1036  return (matroska->is_live && matroska->ctx->pb->eof_reached &&
1037  res == AVERROR_EOF) ? 1 : res;
1038  }
1039  matroska->current_id = id | 1 << 7 * res;
1040  }
1041  return ebml_parse_id(matroska, syntax, matroska->current_id, data);
1042 }
1043 
1044 static int ebml_parse_nest(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
1045  void *data)
1046 {
1047  int i, res = 0;
1048 
1049  for (i = 0; syntax[i].id; i++)
1050  switch (syntax[i].type) {
1051  case EBML_UINT:
1052  *(uint64_t *) ((char *) data + syntax[i].data_offset) = syntax[i].def.u;
1053  break;
1054  case EBML_FLOAT:
1055  *(double *) ((char *) data + syntax[i].data_offset) = syntax[i].def.f;
1056  break;
1057  case EBML_STR:
1058  case EBML_UTF8:
1059  // the default may be NULL
1060  if (syntax[i].def.s) {
1061  uint8_t **dst = (uint8_t **) ((uint8_t *) data + syntax[i].data_offset);
1062  *dst = av_strdup(syntax[i].def.s);
1063  if (!*dst)
1064  return AVERROR(ENOMEM);
1065  }
1066  break;
1067  }
1068 
1069  while (!res && !ebml_level_end(matroska))
1070  res = ebml_parse(matroska, syntax, data);
1071 
1072  return res;
1073 }
1074 
1075 static int is_ebml_id_valid(uint32_t id)
1076 {
1077  // Due to endian nonsense in Matroska, the highest byte with any bits set
1078  // will contain the leading length bit. This bit in turn identifies the
1079  // total byte length of the element by its position within the byte.
1080  unsigned int bits = av_log2(id);
1081  return id && (bits + 7) / 8 == (8 - bits % 8);
1082 }
1083 
1084 /*
1085  * Allocate and return the entry for the level1 element with the given ID. If
1086  * an entry already exists, return the existing entry.
1087  */
1089  uint32_t id)
1090 {
1091  int i;
1092  MatroskaLevel1Element *elem;
1093 
1094  if (!is_ebml_id_valid(id))
1095  return NULL;
1096 
1097  // Some files link to all clusters; useless.
1098  if (id == MATROSKA_ID_CLUSTER)
1099  return NULL;
1100 
1101  // There can be multiple seekheads.
1102  if (id != MATROSKA_ID_SEEKHEAD) {
1103  for (i = 0; i < matroska->num_level1_elems; i++) {
1104  if (matroska->level1_elems[i].id == id)
1105  return &matroska->level1_elems[i];
1106  }
1107  }
1108 
1109  // Only a completely broken file would have more elements.
1110  // It also provides a low-effort way to escape from circular seekheads
1111  // (every iteration will add a level1 entry).
1112  if (matroska->num_level1_elems >= FF_ARRAY_ELEMS(matroska->level1_elems)) {
1113  av_log(matroska->ctx, AV_LOG_ERROR, "Too many level1 elements or circular seekheads.\n");
1114  return NULL;
1115  }
1116 
1117  elem = &matroska->level1_elems[matroska->num_level1_elems++];
1118  *elem = (MatroskaLevel1Element){.id = id};
1119 
1120  return elem;
1121 }
1122 
1124  EbmlSyntax *syntax, void *data)
1125 {
1126  static const uint64_t max_lengths[EBML_TYPE_COUNT] = {
1127  [EBML_UINT] = 8,
1128  [EBML_FLOAT] = 8,
1129  // max. 16 MB for strings
1130  [EBML_STR] = 0x1000000,
1131  [EBML_UTF8] = 0x1000000,
1132  // max. 256 MB for binary data
1133  [EBML_BIN] = 0x10000000,
1134  // no limits for anything else
1135  };
1136  AVIOContext *pb = matroska->ctx->pb;
1137  uint32_t id = syntax->id;
1138  uint64_t length;
1139  int res;
1140  void *newelem;
1141  MatroskaLevel1Element *level1_elem;
1142 
1143  data = (char *) data + syntax->data_offset;
1144  if (syntax->list_elem_size) {
1145  EbmlList *list = data;
1146  newelem = av_realloc_array(list->elem, list->nb_elem + 1, syntax->list_elem_size);
1147  if (!newelem)
1148  return AVERROR(ENOMEM);
1149  list->elem = newelem;
1150  data = (char *) list->elem + list->nb_elem * syntax->list_elem_size;
1151  memset(data, 0, syntax->list_elem_size);
1152  list->nb_elem++;
1153  }
1154 
1155  if (syntax->type != EBML_PASS && syntax->type != EBML_STOP) {
1156  matroska->current_id = 0;
1157  if ((res = ebml_read_length(matroska, pb, &length)) < 0)
1158  return res;
1159  if (max_lengths[syntax->type] && length > max_lengths[syntax->type]) {
1160  av_log(matroska->ctx, AV_LOG_ERROR,
1161  "Invalid length 0x%"PRIx64" > 0x%"PRIx64" for syntax element %i\n",
1162  length, max_lengths[syntax->type], syntax->type);
1163  return AVERROR_INVALIDDATA;
1164  }
1165  }
1166 
1167  switch (syntax->type) {
1168  case EBML_UINT:
1169  res = ebml_read_uint(pb, length, data);
1170  break;
1171  case EBML_SINT:
1172  res = ebml_read_sint(pb, length, data);
1173  break;
1174  case EBML_FLOAT:
1175  res = ebml_read_float(pb, length, data);
1176  break;
1177  case EBML_STR:
1178  case EBML_UTF8:
1179  res = ebml_read_ascii(pb, length, data);
1180  break;
1181  case EBML_BIN:
1182  res = ebml_read_binary(pb, length, data);
1183  break;
1184  case EBML_LEVEL1:
1185  case EBML_NEST:
1186  if ((res = ebml_read_master(matroska, length)) < 0)
1187  return res;
1188  if (id == MATROSKA_ID_SEGMENT)
1189  matroska->segment_start = avio_tell(matroska->ctx->pb);
1190  if (id == MATROSKA_ID_CUES)
1191  matroska->cues_parsing_deferred = 0;
1192  if (syntax->type == EBML_LEVEL1 &&
1193  (level1_elem = matroska_find_level1_elem(matroska, syntax->id))) {
1194  if (level1_elem->parsed)
1195  av_log(matroska->ctx, AV_LOG_ERROR, "Duplicate element\n");
1196  level1_elem->parsed = 1;
1197  }
1198  return ebml_parse_nest(matroska, syntax->def.n, data);
1199  case EBML_PASS:
1200  return ebml_parse_id(matroska, syntax->def.n, id, data);
1201  case EBML_STOP:
1202  return 1;
1203  default:
1204  if (ffio_limit(pb, length) != length)
1205  return AVERROR(EIO);
1206  return avio_skip(pb, length) < 0 ? AVERROR(EIO) : 0;
1207  }
1208  if (res == AVERROR_INVALIDDATA)
1209  av_log(matroska->ctx, AV_LOG_ERROR, "Invalid element\n");
1210  else if (res == AVERROR(EIO))
1211  av_log(matroska->ctx, AV_LOG_ERROR, "Read error\n");
1212  return res;
1213 }
1214 
1215 static void ebml_free(EbmlSyntax *syntax, void *data)
1216 {
1217  int i, j;
1218  for (i = 0; syntax[i].id; i++) {
1219  void *data_off = (char *) data + syntax[i].data_offset;
1220  switch (syntax[i].type) {
1221  case EBML_STR:
1222  case EBML_UTF8:
1223  av_freep(data_off);
1224  break;
1225  case EBML_BIN:
1226  av_freep(&((EbmlBin *) data_off)->data);
1227  break;
1228  case EBML_LEVEL1:
1229  case EBML_NEST:
1230  if (syntax[i].list_elem_size) {
1231  EbmlList *list = data_off;
1232  char *ptr = list->elem;
1233  for (j = 0; j < list->nb_elem;
1234  j++, ptr += syntax[i].list_elem_size)
1235  ebml_free(syntax[i].def.n, ptr);
1236  av_freep(&list->elem);
1237  } else
1238  ebml_free(syntax[i].def.n, data_off);
1239  default:
1240  break;
1241  }
1242  }
1243 }
1244 
1245 /*
1246  * Autodetecting...
1247  */
1249 {
1250  uint64_t total = 0;
1251  int len_mask = 0x80, size = 1, n = 1, i;
1252 
1253  /* EBML header? */
1254  if (AV_RB32(p->buf) != EBML_ID_HEADER)
1255  return 0;
1256 
1257  /* length of header */
1258  total = p->buf[4];
1259  while (size <= 8 && !(total & len_mask)) {
1260  size++;
1261  len_mask >>= 1;
1262  }
1263  if (size > 8)
1264  return 0;
1265  total &= (len_mask - 1);
1266  while (n < size)
1267  total = (total << 8) | p->buf[4 + n++];
1268 
1269  /* Does the probe data contain the whole header? */
1270  if (p->buf_size < 4 + size + total)
1271  return 0;
1272 
1273  /* The header should contain a known document type. For now,
1274  * we don't parse the whole header but simply check for the
1275  * availability of that array of characters inside the header.
1276  * Not fully fool-proof, but good enough. */
1277  for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++) {
1278  size_t probelen = strlen(matroska_doctypes[i]);
1279  if (total < probelen)
1280  continue;
1281  for (n = 4 + size; n <= 4 + size + total - probelen; n++)
1282  if (!memcmp(p->buf + n, matroska_doctypes[i], probelen))
1283  return AVPROBE_SCORE_MAX;
1284  }
1285 
1286  // probably valid EBML header but no recognized doctype
1287  return AVPROBE_SCORE_EXTENSION;
1288 }
1289 
1291  int num)
1292 {
1293  MatroskaTrack *tracks = matroska->tracks.elem;
1294  int i;
1295 
1296  for (i = 0; i < matroska->tracks.nb_elem; i++)
1297  if (tracks[i].num == num)
1298  return &tracks[i];
1299 
1300  av_log(matroska->ctx, AV_LOG_ERROR, "Invalid track number %d\n", num);
1301  return NULL;
1302 }
1303 
1304 static int matroska_decode_buffer(uint8_t **buf, int *buf_size,
1305  MatroskaTrack *track)
1306 {
1307  MatroskaTrackEncoding *encodings = track->encodings.elem;
1308  uint8_t *data = *buf;
1309  int isize = *buf_size;
1310  uint8_t *pkt_data = NULL;
1311  uint8_t av_unused *newpktdata;
1312  int pkt_size = isize;
1313  int result = 0;
1314  int olen;
1315 
1316  if (pkt_size >= 10000000U)
1317  return AVERROR_INVALIDDATA;
1318 
1319  switch (encodings[0].compression.algo) {
1321  {
1322  int header_size = encodings[0].compression.settings.size;
1323  uint8_t *header = encodings[0].compression.settings.data;
1324 
1325  if (header_size && !header) {
1326  av_log(NULL, AV_LOG_ERROR, "Compression size but no data in headerstrip\n");
1327  return -1;
1328  }
1329 
1330  if (!header_size)
1331  return 0;
1332 
1333  pkt_size = isize + header_size;
1334  pkt_data = av_malloc(pkt_size);
1335  if (!pkt_data)
1336  return AVERROR(ENOMEM);
1337 
1338  memcpy(pkt_data, header, header_size);
1339  memcpy(pkt_data + header_size, data, isize);
1340  break;
1341  }
1342 #if CONFIG_LZO
1344  do {
1345  olen = pkt_size *= 3;
1346  newpktdata = av_realloc(pkt_data, pkt_size + AV_LZO_OUTPUT_PADDING);
1347  if (!newpktdata) {
1348  result = AVERROR(ENOMEM);
1349  goto failed;
1350  }
1351  pkt_data = newpktdata;
1352  result = av_lzo1x_decode(pkt_data, &olen, data, &isize);
1353  } while (result == AV_LZO_OUTPUT_FULL && pkt_size < 10000000);
1354  if (result) {
1355  result = AVERROR_INVALIDDATA;
1356  goto failed;
1357  }
1358  pkt_size -= olen;
1359  break;
1360 #endif
1361 #if CONFIG_ZLIB
1363  {
1364  z_stream zstream = { 0 };
1365  if (inflateInit(&zstream) != Z_OK)
1366  return -1;
1367  zstream.next_in = data;
1368  zstream.avail_in = isize;
1369  do {
1370  pkt_size *= 3;
1371  newpktdata = av_realloc(pkt_data, pkt_size);
1372  if (!newpktdata) {
1373  inflateEnd(&zstream);
1374  result = AVERROR(ENOMEM);
1375  goto failed;
1376  }
1377  pkt_data = newpktdata;
1378  zstream.avail_out = pkt_size - zstream.total_out;
1379  zstream.next_out = pkt_data + zstream.total_out;
1380  result = inflate(&zstream, Z_NO_FLUSH);
1381  } while (result == Z_OK && pkt_size < 10000000);
1382  pkt_size = zstream.total_out;
1383  inflateEnd(&zstream);
1384  if (result != Z_STREAM_END) {
1385  if (result == Z_MEM_ERROR)
1386  result = AVERROR(ENOMEM);
1387  else
1388  result = AVERROR_INVALIDDATA;
1389  goto failed;
1390  }
1391  break;
1392  }
1393 #endif
1394 #if CONFIG_BZLIB
1396  {
1397  bz_stream bzstream = { 0 };
1398  if (BZ2_bzDecompressInit(&bzstream, 0, 0) != BZ_OK)
1399  return -1;
1400  bzstream.next_in = data;
1401  bzstream.avail_in = isize;
1402  do {
1403  pkt_size *= 3;
1404  newpktdata = av_realloc(pkt_data, pkt_size);
1405  if (!newpktdata) {
1406  BZ2_bzDecompressEnd(&bzstream);
1407  result = AVERROR(ENOMEM);
1408  goto failed;
1409  }
1410  pkt_data = newpktdata;
1411  bzstream.avail_out = pkt_size - bzstream.total_out_lo32;
1412  bzstream.next_out = pkt_data + bzstream.total_out_lo32;
1413  result = BZ2_bzDecompress(&bzstream);
1414  } while (result == BZ_OK && pkt_size < 10000000);
1415  pkt_size = bzstream.total_out_lo32;
1416  BZ2_bzDecompressEnd(&bzstream);
1417  if (result != BZ_STREAM_END) {
1418  if (result == BZ_MEM_ERROR)
1419  result = AVERROR(ENOMEM);
1420  else
1421  result = AVERROR_INVALIDDATA;
1422  goto failed;
1423  }
1424  break;
1425  }
1426 #endif
1427  default:
1428  return AVERROR_INVALIDDATA;
1429  }
1430 
1431  *buf = pkt_data;
1432  *buf_size = pkt_size;
1433  return 0;
1434 
1435 failed:
1436  av_free(pkt_data);
1437  return result;
1438 }
1439 
1441  AVDictionary **metadata, char *prefix)
1442 {
1443  MatroskaTag *tags = list->elem;
1444  char key[1024];
1445  int i;
1446 
1447  for (i = 0; i < list->nb_elem; i++) {
1448  const char *lang = tags[i].lang &&
1449  strcmp(tags[i].lang, "und") ? tags[i].lang : NULL;
1450 
1451  if (!tags[i].name) {
1452  av_log(s, AV_LOG_WARNING, "Skipping invalid tag with no TagName.\n");
1453  continue;
1454  }
1455  if (prefix)
1456  snprintf(key, sizeof(key), "%s/%s", prefix, tags[i].name);
1457  else
1458  av_strlcpy(key, tags[i].name, sizeof(key));
1459  if (tags[i].def || !lang) {
1460  av_dict_set(metadata, key, tags[i].string, 0);
1461  if (tags[i].sub.nb_elem)
1462  matroska_convert_tag(s, &tags[i].sub, metadata, key);
1463  }
1464  if (lang) {
1465  av_strlcat(key, "-", sizeof(key));
1466  av_strlcat(key, lang, sizeof(key));
1467  av_dict_set(metadata, key, tags[i].string, 0);
1468  if (tags[i].sub.nb_elem)
1469  matroska_convert_tag(s, &tags[i].sub, metadata, key);
1470  }
1471  }
1473 }
1474 
1476 {
1477  MatroskaDemuxContext *matroska = s->priv_data;
1478  MatroskaTags *tags = matroska->tags.elem;
1479  int i, j;
1480 
1481  for (i = 0; i < matroska->tags.nb_elem; i++) {
1482  if (tags[i].target.attachuid) {
1483  MatroskaAttachment *attachment = matroska->attachments.elem;
1484  int found = 0;
1485  for (j = 0; j < matroska->attachments.nb_elem; j++) {
1486  if (attachment[j].uid == tags[i].target.attachuid &&
1487  attachment[j].stream) {
1488  matroska_convert_tag(s, &tags[i].tag,
1489  &attachment[j].stream->metadata, NULL);
1490  found = 1;
1491  }
1492  }
1493  if (!found) {
1495  "The tags at index %d refer to a "
1496  "non-existent attachment %"PRId64".\n",
1497  i, tags[i].target.attachuid);
1498  }
1499  } else if (tags[i].target.chapteruid) {
1500  MatroskaChapter *chapter = matroska->chapters.elem;
1501  int found = 0;
1502  for (j = 0; j < matroska->chapters.nb_elem; j++) {
1503  if (chapter[j].uid == tags[i].target.chapteruid &&
1504  chapter[j].chapter) {
1505  matroska_convert_tag(s, &tags[i].tag,
1506  &chapter[j].chapter->metadata, NULL);
1507  found = 1;
1508  }
1509  }
1510  if (!found) {
1512  "The tags at index %d refer to a non-existent chapter "
1513  "%"PRId64".\n",
1514  i, tags[i].target.chapteruid);
1515  }
1516  } else if (tags[i].target.trackuid) {
1517  MatroskaTrack *track = matroska->tracks.elem;
1518  int found = 0;
1519  for (j = 0; j < matroska->tracks.nb_elem; j++) {
1520  if (track[j].uid == tags[i].target.trackuid &&
1521  track[j].stream) {
1522  matroska_convert_tag(s, &tags[i].tag,
1523  &track[j].stream->metadata, NULL);
1524  found = 1;
1525  }
1526  }
1527  if (!found) {
1529  "The tags at index %d refer to a non-existent track "
1530  "%"PRId64".\n",
1531  i, tags[i].target.trackuid);
1532  }
1533  } else {
1534  matroska_convert_tag(s, &tags[i].tag, &s->metadata,
1535  tags[i].target.type);
1536  }
1537  }
1538 }
1539 
1541  uint64_t pos)
1542 {
1543  uint32_t level_up = matroska->level_up;
1544  uint32_t saved_id = matroska->current_id;
1545  int64_t before_pos = avio_tell(matroska->ctx->pb);
1547  int64_t offset;
1548  int ret = 0;
1549 
1550  /* seek */
1551  offset = pos + matroska->segment_start;
1552  if (avio_seek(matroska->ctx->pb, offset, SEEK_SET) == offset) {
1553  /* We don't want to lose our seekhead level, so we add
1554  * a dummy. This is a crude hack. */
1555  if (matroska->num_levels == EBML_MAX_DEPTH) {
1556  av_log(matroska->ctx, AV_LOG_INFO,
1557  "Max EBML element depth (%d) reached, "
1558  "cannot parse further.\n", EBML_MAX_DEPTH);
1559  ret = AVERROR_INVALIDDATA;
1560  } else {
1561  level.start = 0;
1562  level.length = (uint64_t) -1;
1563  matroska->levels[matroska->num_levels] = level;
1564  matroska->num_levels++;
1565  matroska->current_id = 0;
1566 
1567  ret = ebml_parse(matroska, matroska_segment, matroska);
1568 
1569  /* remove dummy level */
1570  while (matroska->num_levels) {
1571  uint64_t length = matroska->levels[--matroska->num_levels].length;
1572  if (length == (uint64_t) -1)
1573  break;
1574  }
1575  }
1576  }
1577  /* seek back */
1578  avio_seek(matroska->ctx->pb, before_pos, SEEK_SET);
1579  matroska->level_up = level_up;
1580  matroska->current_id = saved_id;
1581 
1582  return ret;
1583 }
1584 
1586 {
1587  EbmlList *seekhead_list = &matroska->seekhead;
1588  int i;
1589 
1590  // we should not do any seeking in the streaming case
1591  if (!matroska->ctx->pb->seekable)
1592  return;
1593 
1594  for (i = 0; i < seekhead_list->nb_elem; i++) {
1595  MatroskaSeekhead *seekheads = seekhead_list->elem;
1596  uint32_t id = seekheads[i].id;
1597  uint64_t pos = seekheads[i].pos;
1598 
1599  MatroskaLevel1Element *elem = matroska_find_level1_elem(matroska, id);
1600  if (!elem || elem->parsed)
1601  continue;
1602 
1603  elem->pos = pos;
1604 
1605  // defer cues parsing until we actually need cue data.
1606  if (id == MATROSKA_ID_CUES)
1607  continue;
1608 
1609  if (matroska_parse_seekhead_entry(matroska, pos) < 0) {
1610  // mark index as broken
1611  matroska->cues_parsing_deferred = -1;
1612  break;
1613  }
1614 
1615  elem->parsed = 1;
1616  }
1617 }
1618 
1620 {
1621  EbmlList *index_list;
1623  uint64_t index_scale = 1;
1624  int i, j;
1625 
1626  if (matroska->ctx->flags & AVFMT_FLAG_IGNIDX)
1627  return;
1628 
1629  index_list = &matroska->index;
1630  index = index_list->elem;
1631  if (index_list->nb_elem < 2)
1632  return;
1633  if (index[1].time > 1E14 / matroska->time_scale) {
1634  av_log(matroska->ctx, AV_LOG_WARNING, "Dropping apparently-broken index.\n");
1635  return;
1636  }
1637  for (i = 0; i < index_list->nb_elem; i++) {
1638  EbmlList *pos_list = &index[i].pos;
1639  MatroskaIndexPos *pos = pos_list->elem;
1640  for (j = 0; j < pos_list->nb_elem; j++) {
1641  MatroskaTrack *track = matroska_find_track_by_num(matroska,
1642  pos[j].track);
1643  if (track && track->stream)
1644  av_add_index_entry(track->stream,
1645  pos[j].pos + matroska->segment_start,
1646  index[i].time / index_scale, 0, 0,
1648  }
1649  }
1650 }
1651 
1653  int i;
1654 
1655  if (matroska->ctx->flags & AVFMT_FLAG_IGNIDX)
1656  return;
1657 
1658  for (i = 0; i < matroska->num_level1_elems; i++) {
1659  MatroskaLevel1Element *elem = &matroska->level1_elems[i];
1660  if (elem->id == MATROSKA_ID_CUES && !elem->parsed) {
1661  if (matroska_parse_seekhead_entry(matroska, elem->pos) < 0)
1662  matroska->cues_parsing_deferred = -1;
1663  elem->parsed = 1;
1664  break;
1665  }
1666  }
1667 
1668  matroska_add_index_entries(matroska);
1669 }
1670 
1672 {
1673  static const char *const aac_profiles[] = { "MAIN", "LC", "SSR" };
1674  int profile;
1675 
1676  for (profile = 0; profile < FF_ARRAY_ELEMS(aac_profiles); profile++)
1677  if (strstr(codec_id, aac_profiles[profile]))
1678  break;
1679  return profile + 1;
1680 }
1681 
1682 static int matroska_aac_sri(int samplerate)
1683 {
1684  int sri;
1685 
1686  for (sri = 0; sri < FF_ARRAY_ELEMS(avpriv_mpeg4audio_sample_rates); sri++)
1687  if (avpriv_mpeg4audio_sample_rates[sri] == samplerate)
1688  break;
1689  return sri;
1690 }
1691 
1692 static void matroska_metadata_creation_time(AVDictionary **metadata, int64_t date_utc)
1693 {
1694  char buffer[32];
1695  /* Convert to seconds and adjust by number of seconds between 2001-01-01 and Epoch */
1696  time_t creation_time = date_utc / 1000000000 + 978307200;
1697  struct tm tmpbuf, *ptm = gmtime_r(&creation_time, &tmpbuf);
1698  if (!ptm) return;
1699  if (strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", ptm))
1700  av_dict_set(metadata, "creation_time", buffer, 0);
1701 }
1702 
1704  MatroskaTrack *track,
1705  int *offset)
1706 {
1707  AVStream *st = track->stream;
1708  uint8_t *p = track->codec_priv.data;
1709  int size = track->codec_priv.size;
1710 
1711  if (size < 8 + FLAC_STREAMINFO_SIZE || p[4] & 0x7f) {
1712  av_log(s, AV_LOG_WARNING, "Invalid FLAC private data\n");
1713  track->codec_priv.size = 0;
1714  return 0;
1715  }
1716  *offset = 8;
1717  track->codec_priv.size = 8 + FLAC_STREAMINFO_SIZE;
1718 
1719  p += track->codec_priv.size;
1720  size -= track->codec_priv.size;
1721 
1722  /* parse the remaining metadata blocks if present */
1723  while (size >= 4) {
1724  int block_last, block_type, block_size;
1725 
1726  flac_parse_block_header(p, &block_last, &block_type, &block_size);
1727 
1728  p += 4;
1729  size -= 4;
1730  if (block_size > size)
1731  return 0;
1732 
1733  /* check for the channel mask */
1734  if (block_type == FLAC_METADATA_TYPE_VORBIS_COMMENT) {
1735  AVDictionary *dict = NULL;
1736  AVDictionaryEntry *chmask;
1737 
1738  ff_vorbis_comment(s, &dict, p, block_size, 0);
1739  chmask = av_dict_get(dict, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", NULL, 0);
1740  if (chmask) {
1741  uint64_t mask = strtol(chmask->value, NULL, 0);
1742  if (!mask || mask & ~0x3ffffULL) {
1744  "Invalid value of WAVEFORMATEXTENSIBLE_CHANNEL_MASK\n");
1745  } else
1746  st->codecpar->channel_layout = mask;
1747  }
1748  av_dict_free(&dict);
1749  }
1750 
1751  p += block_size;
1752  size -= block_size;
1753  }
1754 
1755  return 0;
1756 }
1757 
1758 static int mkv_field_order(int64_t field_order)
1759 {
1760  switch (field_order) {
1762  return AV_FIELD_PROGRESSIVE;
1764  return AV_FIELD_UNKNOWN;
1766  return AV_FIELD_TT;
1768  return AV_FIELD_BB;
1770  return AV_FIELD_BT;
1772  return AV_FIELD_TB;
1773  default:
1774  return AV_FIELD_UNKNOWN;
1775  }
1776 }
1777 
1778 static void mkv_stereo_mode_display_mul(int stereo_mode,
1779  int *h_width, int *h_height)
1780 {
1781  switch (stereo_mode) {
1787  break;
1792  *h_width = 2;
1793  break;
1798  *h_height = 2;
1799  break;
1800  }
1801 }
1802 
1803 static int mkv_parse_video_color(AVStream *st, const MatroskaTrack *track) {
1804  const MatroskaMasteringMeta* mastering_meta =
1805  &track->video.color.mastering_meta;
1806  // Mastering primaries are CIE 1931 coords, and must be > 0.
1807  const int has_mastering_primaries =
1808  mastering_meta->r_x > 0 && mastering_meta->r_y > 0 &&
1809  mastering_meta->g_x > 0 && mastering_meta->g_y > 0 &&
1810  mastering_meta->b_x > 0 && mastering_meta->b_y > 0 &&
1811  mastering_meta->white_x > 0 && mastering_meta->white_y > 0;
1812  const int has_mastering_luminance = mastering_meta->max_luminance > 0;
1813 
1816  if (track->video.color.primaries != AVCOL_PRI_RESERVED)
1820  if (track->video.color.range != AVCOL_RANGE_UNSPECIFIED &&
1821  track->video.color.range <= AVCOL_RANGE_JPEG)
1822  st->codecpar->color_range = track->video.color.range;
1823 
1824  if (has_mastering_primaries || has_mastering_luminance) {
1825  // Use similar rationals as other standards.
1826  const int chroma_den = 50000;
1827  const int luma_den = 10000;
1828  AVMasteringDisplayMetadata *metadata =
1831  sizeof(AVMasteringDisplayMetadata));
1832  if (!metadata) {
1833  return AVERROR(ENOMEM);
1834  }
1835  memset(metadata, 0, sizeof(AVMasteringDisplayMetadata));
1836  if (has_mastering_primaries) {
1837  metadata->display_primaries[0][0] = av_make_q(
1838  round(mastering_meta->r_x * chroma_den), chroma_den);
1839  metadata->display_primaries[0][1] = av_make_q(
1840  round(mastering_meta->r_y * chroma_den), chroma_den);
1841  metadata->display_primaries[1][0] = av_make_q(
1842  round(mastering_meta->g_x * chroma_den), chroma_den);
1843  metadata->display_primaries[1][1] = av_make_q(
1844  round(mastering_meta->g_y * chroma_den), chroma_den);
1845  metadata->display_primaries[2][0] = av_make_q(
1846  round(mastering_meta->b_x * chroma_den), chroma_den);
1847  metadata->display_primaries[2][1] = av_make_q(
1848  round(mastering_meta->b_y * chroma_den), chroma_den);
1849  metadata->white_point[0] = av_make_q(
1850  round(mastering_meta->white_x * chroma_den), chroma_den);
1851  metadata->white_point[1] = av_make_q(
1852  round(mastering_meta->white_y * chroma_den), chroma_den);
1853  metadata->has_primaries = 1;
1854  }
1855  if (has_mastering_luminance) {
1856  metadata->max_luminance = av_make_q(
1857  round(mastering_meta->max_luminance * luma_den), luma_den);
1858  metadata->min_luminance = av_make_q(
1859  round(mastering_meta->min_luminance * luma_den), luma_den);
1860  metadata->has_luminance = 1;
1861  }
1862  }
1863  return 0;
1864 }
1865 
1866 static int get_qt_codec(MatroskaTrack *track, uint32_t *fourcc, enum AVCodecID *codec_id)
1867 {
1868  const AVCodecTag *codec_tags;
1869 
1870  codec_tags = track->type == MATROSKA_TRACK_TYPE_VIDEO ?
1872 
1873  /* Normalize noncompliant private data that starts with the fourcc
1874  * by expanding/shifting the data by 4 bytes and storing the data
1875  * size at the start. */
1876  if (ff_codec_get_id(codec_tags, AV_RL32(track->codec_priv.data))) {
1877  uint8_t *p = av_realloc(track->codec_priv.data,
1878  track->codec_priv.size + 4);
1879  if (!p)
1880  return AVERROR(ENOMEM);
1881  memmove(p + 4, p, track->codec_priv.size);
1882  track->codec_priv.data = p;
1883  track->codec_priv.size += 4;
1884  AV_WB32(track->codec_priv.data, track->codec_priv.size);
1885  }
1886 
1887  *fourcc = AV_RL32(track->codec_priv.data + 4);
1888  *codec_id = ff_codec_get_id(codec_tags, *fourcc);
1889 
1890  return 0;
1891 }
1892 
1894 {
1895  MatroskaDemuxContext *matroska = s->priv_data;
1896  MatroskaTrack *tracks = matroska->tracks.elem;
1897  AVStream *st;
1898  int i, j, ret;
1899  int k;
1900 
1901  for (i = 0; i < matroska->tracks.nb_elem; i++) {
1902  MatroskaTrack *track = &tracks[i];
1904  EbmlList *encodings_list = &track->encodings;
1905  MatroskaTrackEncoding *encodings = encodings_list->elem;
1906  uint8_t *extradata = NULL;
1907  int extradata_size = 0;
1908  int extradata_offset = 0;
1909  uint32_t fourcc = 0;
1910  AVIOContext b;
1911  char* key_id_base64 = NULL;
1912  int bit_depth = -1;
1913 
1914  /* Apply some sanity checks. */
1915  if (track->type != MATROSKA_TRACK_TYPE_VIDEO &&
1916  track->type != MATROSKA_TRACK_TYPE_AUDIO &&
1917  track->type != MATROSKA_TRACK_TYPE_SUBTITLE &&
1918  track->type != MATROSKA_TRACK_TYPE_METADATA) {
1919  av_log(matroska->ctx, AV_LOG_INFO,
1920  "Unknown or unsupported track type %"PRIu64"\n",
1921  track->type);
1922  continue;
1923  }
1924  if (!track->codec_id)
1925  continue;
1926 
1927  if (track->audio.samplerate < 0 || track->audio.samplerate > INT_MAX ||
1928  isnan(track->audio.samplerate)) {
1929  av_log(matroska->ctx, AV_LOG_WARNING,
1930  "Invalid sample rate %f, defaulting to 8000 instead.\n",
1931  track->audio.samplerate);
1932  track->audio.samplerate = 8000;
1933  }
1934 
1935  if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
1936  if (!track->default_duration && track->video.frame_rate > 0)
1937  track->default_duration = 1000000000 / track->video.frame_rate;
1938  if (track->video.display_width == -1)
1939  track->video.display_width = track->video.pixel_width;
1940  if (track->video.display_height == -1)
1941  track->video.display_height = track->video.pixel_height;
1942  if (track->video.color_space.size == 4)
1943  fourcc = AV_RL32(track->video.color_space.data);
1944  } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
1945  if (!track->audio.out_samplerate)
1946  track->audio.out_samplerate = track->audio.samplerate;
1947  }
1948  if (encodings_list->nb_elem > 1) {
1949  av_log(matroska->ctx, AV_LOG_ERROR,
1950  "Multiple combined encodings not supported");
1951  } else if (encodings_list->nb_elem == 1) {
1952  if (encodings[0].type) {
1953  if (encodings[0].encryption.key_id.size > 0) {
1954  /* Save the encryption key id to be stored later as a
1955  metadata tag. */
1956  const int b64_size = AV_BASE64_SIZE(encodings[0].encryption.key_id.size);
1957  key_id_base64 = av_malloc(b64_size);
1958  if (key_id_base64 == NULL)
1959  return AVERROR(ENOMEM);
1960 
1961  av_base64_encode(key_id_base64, b64_size,
1962  encodings[0].encryption.key_id.data,
1963  encodings[0].encryption.key_id.size);
1964  } else {
1965  encodings[0].scope = 0;
1966  av_log(matroska->ctx, AV_LOG_ERROR,
1967  "Unsupported encoding type");
1968  }
1969  } else if (
1970 #if CONFIG_ZLIB
1971  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_ZLIB &&
1972 #endif
1973 #if CONFIG_BZLIB
1975 #endif
1976 #if CONFIG_LZO
1978 #endif
1980  encodings[0].scope = 0;
1981  av_log(matroska->ctx, AV_LOG_ERROR,
1982  "Unsupported encoding type");
1983  } else if (track->codec_priv.size && encodings[0].scope & 2) {
1984  uint8_t *codec_priv = track->codec_priv.data;
1985  int ret = matroska_decode_buffer(&track->codec_priv.data,
1986  &track->codec_priv.size,
1987  track);
1988  if (ret < 0) {
1989  track->codec_priv.data = NULL;
1990  track->codec_priv.size = 0;
1991  av_log(matroska->ctx, AV_LOG_ERROR,
1992  "Failed to decode codec private data\n");
1993  }
1994 
1995  if (codec_priv != track->codec_priv.data)
1996  av_free(codec_priv);
1997  }
1998  }
1999 
2000  for (j = 0; ff_mkv_codec_tags[j].id != AV_CODEC_ID_NONE; j++) {
2001  if (!strncmp(ff_mkv_codec_tags[j].str, track->codec_id,
2002  strlen(ff_mkv_codec_tags[j].str))) {
2003  codec_id = ff_mkv_codec_tags[j].id;
2004  break;
2005  }
2006  }
2007 
2008  st = track->stream = avformat_new_stream(s, NULL);
2009  if (!st) {
2010  av_free(key_id_base64);
2011  return AVERROR(ENOMEM);
2012  }
2013 
2014  if (key_id_base64) {
2015  /* export encryption key id as base64 metadata tag */
2016  av_dict_set(&st->metadata, "enc_key_id", key_id_base64, 0);
2017  av_freep(&key_id_base64);
2018  }
2019 
2020  if (!strcmp(track->codec_id, "V_MS/VFW/FOURCC") &&
2021  track->codec_priv.size >= 40 &&
2022  track->codec_priv.data) {
2023  track->ms_compat = 1;
2024  bit_depth = AV_RL16(track->codec_priv.data + 14);
2025  fourcc = AV_RL32(track->codec_priv.data + 16);
2027  fourcc);
2028  if (!codec_id)
2030  fourcc);
2031  extradata_offset = 40;
2032  } else if (!strcmp(track->codec_id, "A_MS/ACM") &&
2033  track->codec_priv.size >= 14 &&
2034  track->codec_priv.data) {
2035  int ret;
2036  ffio_init_context(&b, track->codec_priv.data,
2037  track->codec_priv.size,
2038  0, NULL, NULL, NULL, NULL);
2039  ret = ff_get_wav_header(s, &b, st->codecpar, track->codec_priv.size, 0);
2040  if (ret < 0)
2041  return ret;
2042  codec_id = st->codecpar->codec_id;
2043  fourcc = st->codecpar->codec_tag;
2044  extradata_offset = FFMIN(track->codec_priv.size, 18);
2045  } else if (!strcmp(track->codec_id, "A_QUICKTIME")
2046  /* Normally 36, but allow noncompliant private data */
2047  && (track->codec_priv.size >= 32)
2048  && (track->codec_priv.data)) {
2049  uint16_t sample_size;
2050  int ret = get_qt_codec(track, &fourcc, &codec_id);
2051  if (ret < 0)
2052  return ret;
2053  sample_size = AV_RB16(track->codec_priv.data + 26);
2054  if (fourcc == 0) {
2055  if (sample_size == 8) {
2056  fourcc = MKTAG('r','a','w',' ');
2057  codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc);
2058  } else if (sample_size == 16) {
2059  fourcc = MKTAG('t','w','o','s');
2060  codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc);
2061  }
2062  }
2063  if ((fourcc == MKTAG('t','w','o','s') ||
2064  fourcc == MKTAG('s','o','w','t')) &&
2065  sample_size == 8)
2066  codec_id = AV_CODEC_ID_PCM_S8;
2067  } else if (!strcmp(track->codec_id, "V_QUICKTIME") &&
2068  (track->codec_priv.size >= 21) &&
2069  (track->codec_priv.data)) {
2070  int ret = get_qt_codec(track, &fourcc, &codec_id);
2071  if (ret < 0)
2072  return ret;
2073  if (codec_id == AV_CODEC_ID_NONE && AV_RL32(track->codec_priv.data+4) == AV_RL32("SMI ")) {
2074  fourcc = MKTAG('S','V','Q','3');
2075  codec_id = ff_codec_get_id(ff_codec_movvideo_tags, fourcc);
2076  }
2077  if (codec_id == AV_CODEC_ID_NONE) {
2078  char buf[32];
2079  av_get_codec_tag_string(buf, sizeof(buf), fourcc);
2080  av_log(matroska->ctx, AV_LOG_ERROR,
2081  "mov FourCC not found %s.\n", buf);
2082  }
2083  if (track->codec_priv.size >= 86) {
2084  bit_depth = AV_RB16(track->codec_priv.data + 82);
2085  ffio_init_context(&b, track->codec_priv.data,
2086  track->codec_priv.size,
2087  0, NULL, NULL, NULL, NULL);
2088  if (ff_get_qtpalette(codec_id, &b, track->palette)) {
2089  bit_depth &= 0x1F;
2090  track->has_palette = 1;
2091  }
2092  }
2093  } else if (codec_id == AV_CODEC_ID_PCM_S16BE) {
2094  switch (track->audio.bitdepth) {
2095  case 8:
2096  codec_id = AV_CODEC_ID_PCM_U8;
2097  break;
2098  case 24:
2099  codec_id = AV_CODEC_ID_PCM_S24BE;
2100  break;
2101  case 32:
2102  codec_id = AV_CODEC_ID_PCM_S32BE;
2103  break;
2104  }
2105  } else if (codec_id == AV_CODEC_ID_PCM_S16LE) {
2106  switch (track->audio.bitdepth) {
2107  case 8:
2108  codec_id = AV_CODEC_ID_PCM_U8;
2109  break;
2110  case 24:
2111  codec_id = AV_CODEC_ID_PCM_S24LE;
2112  break;
2113  case 32:
2114  codec_id = AV_CODEC_ID_PCM_S32LE;
2115  break;
2116  }
2117  } else if (codec_id == AV_CODEC_ID_PCM_F32LE &&
2118  track->audio.bitdepth == 64) {
2119  codec_id = AV_CODEC_ID_PCM_F64LE;
2120  } else if (codec_id == AV_CODEC_ID_AAC && !track->codec_priv.size) {
2121  int profile = matroska_aac_profile(track->codec_id);
2122  int sri = matroska_aac_sri(track->audio.samplerate);
2123  extradata = av_mallocz(5 + AV_INPUT_BUFFER_PADDING_SIZE);
2124  if (!extradata)
2125  return AVERROR(ENOMEM);
2126  extradata[0] = (profile << 3) | ((sri & 0x0E) >> 1);
2127  extradata[1] = ((sri & 0x01) << 7) | (track->audio.channels << 3);
2128  if (strstr(track->codec_id, "SBR")) {
2129  sri = matroska_aac_sri(track->audio.out_samplerate);
2130  extradata[2] = 0x56;
2131  extradata[3] = 0xE5;
2132  extradata[4] = 0x80 | (sri << 3);
2133  extradata_size = 5;
2134  } else
2135  extradata_size = 2;
2136  } else if (codec_id == AV_CODEC_ID_ALAC && track->codec_priv.size && track->codec_priv.size < INT_MAX - 12 - AV_INPUT_BUFFER_PADDING_SIZE) {
2137  /* Only ALAC's magic cookie is stored in Matroska's track headers.
2138  * Create the "atom size", "tag", and "tag version" fields the
2139  * decoder expects manually. */
2140  extradata_size = 12 + track->codec_priv.size;
2141  extradata = av_mallocz(extradata_size +
2143  if (!extradata)
2144  return AVERROR(ENOMEM);
2145  AV_WB32(extradata, extradata_size);
2146  memcpy(&extradata[4], "alac", 4);
2147  AV_WB32(&extradata[8], 0);
2148  memcpy(&extradata[12], track->codec_priv.data,
2149  track->codec_priv.size);
2150  } else if (codec_id == AV_CODEC_ID_TTA) {
2151  extradata_size = 30;
2152  extradata = av_mallocz(extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
2153  if (!extradata)
2154  return AVERROR(ENOMEM);
2155  ffio_init_context(&b, extradata, extradata_size, 1,
2156  NULL, NULL, NULL, NULL);
2157  avio_write(&b, "TTA1", 4);
2158  avio_wl16(&b, 1);
2159  if (track->audio.channels > UINT16_MAX ||
2160  track->audio.bitdepth > UINT16_MAX) {
2161  av_log(matroska->ctx, AV_LOG_WARNING,
2162  "Too large audio channel number %"PRIu64
2163  " or bitdepth %"PRIu64". Skipping track.\n",
2164  track->audio.channels, track->audio.bitdepth);
2165  av_freep(&extradata);
2166  if (matroska->ctx->error_recognition & AV_EF_EXPLODE)
2167  return AVERROR_INVALIDDATA;
2168  else
2169  continue;
2170  }
2171  avio_wl16(&b, track->audio.channels);
2172  avio_wl16(&b, track->audio.bitdepth);
2173  if (track->audio.out_samplerate < 0 || track->audio.out_samplerate > INT_MAX)
2174  return AVERROR_INVALIDDATA;
2175  avio_wl32(&b, track->audio.out_samplerate);
2176  avio_wl32(&b, av_rescale((matroska->duration * matroska->time_scale),
2177  track->audio.out_samplerate,
2178  AV_TIME_BASE * 1000));
2179  } else if (codec_id == AV_CODEC_ID_RV10 ||
2180  codec_id == AV_CODEC_ID_RV20 ||
2181  codec_id == AV_CODEC_ID_RV30 ||
2182  codec_id == AV_CODEC_ID_RV40) {
2183  extradata_offset = 26;
2184  } else if (codec_id == AV_CODEC_ID_RA_144) {
2185  track->audio.out_samplerate = 8000;
2186  track->audio.channels = 1;
2187  } else if ((codec_id == AV_CODEC_ID_RA_288 ||
2188  codec_id == AV_CODEC_ID_COOK ||
2189  codec_id == AV_CODEC_ID_ATRAC3 ||
2190  codec_id == AV_CODEC_ID_SIPR)
2191  && track->codec_priv.data) {
2192  int flavor;
2193 
2194  ffio_init_context(&b, track->codec_priv.data,
2195  track->codec_priv.size,
2196  0, NULL, NULL, NULL, NULL);
2197  avio_skip(&b, 22);
2198  flavor = avio_rb16(&b);
2199  track->audio.coded_framesize = avio_rb32(&b);
2200  avio_skip(&b, 12);
2201  track->audio.sub_packet_h = avio_rb16(&b);
2202  track->audio.frame_size = avio_rb16(&b);
2203  track->audio.sub_packet_size = avio_rb16(&b);
2204  if (flavor < 0 ||
2205  track->audio.coded_framesize <= 0 ||
2206  track->audio.sub_packet_h <= 0 ||
2207  track->audio.frame_size <= 0 ||
2208  track->audio.sub_packet_size <= 0)
2209  return AVERROR_INVALIDDATA;
2210  track->audio.buf = av_malloc_array(track->audio.sub_packet_h,
2211  track->audio.frame_size);
2212  if (!track->audio.buf)
2213  return AVERROR(ENOMEM);
2214  if (codec_id == AV_CODEC_ID_RA_288) {
2215  st->codecpar->block_align = track->audio.coded_framesize;
2216  track->codec_priv.size = 0;
2217  } else {
2218  if (codec_id == AV_CODEC_ID_SIPR && flavor < 4) {
2219  static const int sipr_bit_rate[4] = { 6504, 8496, 5000, 16000 };
2220  track->audio.sub_packet_size = ff_sipr_subpk_size[flavor];
2221  st->codecpar->bit_rate = sipr_bit_rate[flavor];
2222  }
2223  st->codecpar->block_align = track->audio.sub_packet_size;
2224  extradata_offset = 78;
2225  }
2226  } else if (codec_id == AV_CODEC_ID_FLAC && track->codec_priv.size) {
2227  ret = matroska_parse_flac(s, track, &extradata_offset);
2228  if (ret < 0)
2229  return ret;
2230  } else if (codec_id == AV_CODEC_ID_PRORES && track->codec_priv.size == 4) {
2231  fourcc = AV_RL32(track->codec_priv.data);
2232  }
2233  track->codec_priv.size -= extradata_offset;
2234 
2235  if (codec_id == AV_CODEC_ID_NONE)
2236  av_log(matroska->ctx, AV_LOG_INFO,
2237  "Unknown/unsupported AVCodecID %s.\n", track->codec_id);
2238 
2239  if (track->time_scale < 0.01)
2240  track->time_scale = 1.0;
2241  avpriv_set_pts_info(st, 64, matroska->time_scale * track->time_scale,
2242  1000 * 1000 * 1000); /* 64 bit pts in ns */
2243 
2244  /* convert the delay from ns to the track timebase */
2246  (AVRational){ 1, 1000000000 },
2247  st->time_base);
2248 
2249  st->codecpar->codec_id = codec_id;
2250 
2251  if (strcmp(track->language, "und"))
2252  av_dict_set(&st->metadata, "language", track->language, 0);
2253  av_dict_set(&st->metadata, "title", track->name, 0);
2254 
2255  if (track->flag_default)
2257  if (track->flag_forced)
2259 
2260  if (!st->codecpar->extradata) {
2261  if (extradata) {
2262  st->codecpar->extradata = extradata;
2263  st->codecpar->extradata_size = extradata_size;
2264  } else if (track->codec_priv.data && track->codec_priv.size > 0) {
2265  if (ff_alloc_extradata(st->codecpar, track->codec_priv.size))
2266  return AVERROR(ENOMEM);
2267  memcpy(st->codecpar->extradata,
2268  track->codec_priv.data + extradata_offset,
2269  track->codec_priv.size);
2270  }
2271  }
2272 
2273  if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
2274  MatroskaTrackPlane *planes = track->operation.combine_planes.elem;
2275  int display_width_mul = 1;
2276  int display_height_mul = 1;
2277 
2279  st->codecpar->codec_tag = fourcc;
2280  if (bit_depth >= 0)
2282  st->codecpar->width = track->video.pixel_width;
2283  st->codecpar->height = track->video.pixel_height;
2284 
2285  if (track->video.interlaced == MATROSKA_VIDEO_INTERLACE_FLAG_INTERLACED)
2286  st->codecpar->field_order = mkv_field_order(track->video.field_order);
2287 
2288  if (track->video.stereo_mode && track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB)
2289  mkv_stereo_mode_display_mul(track->video.stereo_mode, &display_width_mul, &display_height_mul);
2290 
2292  &st->sample_aspect_ratio.den,
2293  st->codecpar->height * track->video.display_width * display_width_mul,
2294  st->codecpar->width * track->video.display_height * display_height_mul,
2295  255);
2296  if (st->codecpar->codec_id != AV_CODEC_ID_HEVC)
2298 
2299  if (track->default_duration) {
2301  1000000000, track->default_duration, 30000);
2302 #if FF_API_R_FRAME_RATE
2303  if ( st->avg_frame_rate.num < st->avg_frame_rate.den * 1000LL
2304  && st->avg_frame_rate.num > st->avg_frame_rate.den * 5LL)
2305  st->r_frame_rate = st->avg_frame_rate;
2306 #endif
2307  }
2308 
2309  /* export stereo mode flag as metadata tag */
2310  if (track->video.stereo_mode && track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB)
2311  av_dict_set(&st->metadata, "stereo_mode", ff_matroska_video_stereo_mode[track->video.stereo_mode], 0);
2312 
2313  /* export alpha mode flag as metadata tag */
2314  if (track->video.alpha_mode)
2315  av_dict_set(&st->metadata, "alpha_mode", "1", 0);
2316 
2317  /* if we have virtual track, mark the real tracks */
2318  for (j=0; j < track->operation.combine_planes.nb_elem; j++) {
2319  char buf[32];
2320  if (planes[j].type >= MATROSKA_VIDEO_STEREO_PLANE_COUNT)
2321  continue;
2322  snprintf(buf, sizeof(buf), "%s_%d",
2323  ff_matroska_video_stereo_plane[planes[j].type], i);
2324  for (k=0; k < matroska->tracks.nb_elem; k++)
2325  if (planes[j].uid == tracks[k].uid && tracks[k].stream) {
2326  av_dict_set(&tracks[k].stream->metadata,
2327  "stereo_mode", buf, 0);
2328  break;
2329  }
2330  }
2331  // add stream level stereo3d side data if it is a supported format
2332  if (track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB &&
2333  track->video.stereo_mode != 10 && track->video.stereo_mode != 12) {
2334  int ret = ff_mkv_stereo3d_conv(st, track->video.stereo_mode);
2335  if (ret < 0)
2336  return ret;
2337  }
2338 
2340  int ret = mkv_parse_video_color(st, track);
2341  if (ret < 0)
2342  return ret;
2343  }
2344  } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
2346  st->codecpar->codec_tag = fourcc;
2347  st->codecpar->sample_rate = track->audio.out_samplerate;
2348  st->codecpar->channels = track->audio.channels;
2349  if (!st->codecpar->bits_per_coded_sample)
2350  st->codecpar->bits_per_coded_sample = track->audio.bitdepth;
2351  if (st->codecpar->codec_id == AV_CODEC_ID_MP3)
2353  else if (st->codecpar->codec_id != AV_CODEC_ID_AAC)
2355  if (track->codec_delay > 0) {
2356  st->codecpar->initial_padding = av_rescale_q(track->codec_delay,
2357  (AVRational){1, 1000000000},
2359  48000 : st->codecpar->sample_rate});
2360  }
2361  if (track->seek_preroll > 0) {
2362  st->codecpar->seek_preroll = av_rescale_q(track->seek_preroll,
2363  (AVRational){1, 1000000000},
2364  (AVRational){1, st->codecpar->sample_rate});
2365  }
2366  } else if (codec_id == AV_CODEC_ID_WEBVTT) {
2367  st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
2368 
2369  if (!strcmp(track->codec_id, "D_WEBVTT/CAPTIONS")) {
2370  st->disposition |= AV_DISPOSITION_CAPTIONS;
2371  } else if (!strcmp(track->codec_id, "D_WEBVTT/DESCRIPTIONS")) {
2372  st->disposition |= AV_DISPOSITION_DESCRIPTIONS;
2373  } else if (!strcmp(track->codec_id, "D_WEBVTT/METADATA")) {
2374  st->disposition |= AV_DISPOSITION_METADATA;
2375  }
2376  } else if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE) {
2377  st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
2378  if (st->codecpar->codec_id == AV_CODEC_ID_ASS)
2379  matroska->contains_ssa = 1;
2380  }
2381  }
2382 
2383  return 0;
2384 }
2385 
2387 {
2388  MatroskaDemuxContext *matroska = s->priv_data;
2389  EbmlList *attachments_list = &matroska->attachments;
2390  EbmlList *chapters_list = &matroska->chapters;
2391  MatroskaAttachment *attachments;
2392  MatroskaChapter *chapters;
2393  uint64_t max_start = 0;
2394  int64_t pos;
2395  Ebml ebml = { 0 };
2396  int i, j, res;
2397 
2398  matroska->ctx = s;
2399  matroska->cues_parsing_deferred = 1;
2400 
2401  /* First read the EBML header. */
2402  if (ebml_parse(matroska, ebml_syntax, &ebml) || !ebml.doctype) {
2403  av_log(matroska->ctx, AV_LOG_ERROR, "EBML header parsing failed\n");
2404  ebml_free(ebml_syntax, &ebml);
2405  return AVERROR_INVALIDDATA;
2406  }
2407  if (ebml.version > EBML_VERSION ||
2408  ebml.max_size > sizeof(uint64_t) ||
2409  ebml.id_length > sizeof(uint32_t) ||
2410  ebml.doctype_version > 3) {
2411  av_log(matroska->ctx, AV_LOG_ERROR,
2412  "EBML header using unsupported features\n"
2413  "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n",
2414  ebml.version, ebml.doctype, ebml.doctype_version);
2415  ebml_free(ebml_syntax, &ebml);
2416  return AVERROR_PATCHWELCOME;
2417  } else if (ebml.doctype_version == 3) {
2418  av_log(matroska->ctx, AV_LOG_WARNING,
2419  "EBML header using unsupported features\n"
2420  "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n",
2421  ebml.version, ebml.doctype, ebml.doctype_version);
2422  }
2423  for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++)
2424  if (!strcmp(ebml.doctype, matroska_doctypes[i]))
2425  break;
2426  if (i >= FF_ARRAY_ELEMS(matroska_doctypes)) {
2427  av_log(s, AV_LOG_WARNING, "Unknown EBML doctype '%s'\n", ebml.doctype);
2428  if (matroska->ctx->error_recognition & AV_EF_EXPLODE) {
2429  ebml_free(ebml_syntax, &ebml);
2430  return AVERROR_INVALIDDATA;
2431  }
2432  }
2433  ebml_free(ebml_syntax, &ebml);
2434 
2435  /* The next thing is a segment. */
2436  pos = avio_tell(matroska->ctx->pb);
2437  res = ebml_parse(matroska, matroska_segments, matroska);
2438  // try resyncing until we find a EBML_STOP type element.
2439  while (res != 1) {
2440  res = matroska_resync(matroska, pos);
2441  if (res < 0)
2442  goto fail;
2443  pos = avio_tell(matroska->ctx->pb);
2444  res = ebml_parse(matroska, matroska_segment, matroska);
2445  }
2446  matroska_execute_seekhead(matroska);
2447 
2448  if (!matroska->time_scale)
2449  matroska->time_scale = 1000000;
2450  if (matroska->duration)
2451  matroska->ctx->duration = matroska->duration * matroska->time_scale *
2452  1000 / AV_TIME_BASE;
2453  av_dict_set(&s->metadata, "title", matroska->title, 0);
2454  av_dict_set(&s->metadata, "encoder", matroska->muxingapp, 0);
2455 
2456  if (matroska->date_utc.size == 8)
2458 
2459  res = matroska_parse_tracks(s);
2460  if (res < 0)
2461  goto fail;
2462 
2463  attachments = attachments_list->elem;
2464  for (j = 0; j < attachments_list->nb_elem; j++) {
2465  if (!(attachments[j].filename && attachments[j].mime &&
2466  attachments[j].bin.data && attachments[j].bin.size > 0)) {
2467  av_log(matroska->ctx, AV_LOG_ERROR, "incomplete attachment\n");
2468  } else {
2469  AVStream *st = avformat_new_stream(s, NULL);
2470  if (!st)
2471  break;
2472  av_dict_set(&st->metadata, "filename", attachments[j].filename, 0);
2473  av_dict_set(&st->metadata, "mimetype", attachments[j].mime, 0);
2475 
2476  for (i = 0; ff_mkv_image_mime_tags[i].id != AV_CODEC_ID_NONE; i++) {
2477  if (!strncmp(ff_mkv_image_mime_tags[i].str, attachments[j].mime,
2478  strlen(ff_mkv_image_mime_tags[i].str))) {
2480  break;
2481  }
2482  }
2483 
2484  attachments[j].stream = st;
2485 
2486  if (st->codecpar->codec_id != AV_CODEC_ID_NONE) {
2489 
2491  if ((res = av_new_packet(&st->attached_pic, attachments[j].bin.size)) < 0)
2492  return res;
2493  memcpy(st->attached_pic.data, attachments[j].bin.data, attachments[j].bin.size);
2494  st->attached_pic.stream_index = st->index;
2496  } else {
2498  if (ff_alloc_extradata(st->codecpar, attachments[j].bin.size))
2499  break;
2500  memcpy(st->codecpar->extradata, attachments[j].bin.data,
2501  attachments[j].bin.size);
2502 
2503  for (i = 0; ff_mkv_mime_tags[i].id != AV_CODEC_ID_NONE; i++) {
2504  if (!strncmp(ff_mkv_mime_tags[i].str, attachments[j].mime,
2505  strlen(ff_mkv_mime_tags[i].str))) {
2507  break;
2508  }
2509  }
2510  }
2511  }
2512  }
2513 
2514  chapters = chapters_list->elem;
2515  for (i = 0; i < chapters_list->nb_elem; i++)
2516  if (chapters[i].start != AV_NOPTS_VALUE && chapters[i].uid &&
2517  (max_start == 0 || chapters[i].start > max_start)) {
2518  chapters[i].chapter =
2519  avpriv_new_chapter(s, chapters[i].uid,
2520  (AVRational) { 1, 1000000000 },
2521  chapters[i].start, chapters[i].end,
2522  chapters[i].title);
2523  if (chapters[i].chapter) {
2524  av_dict_set(&chapters[i].chapter->metadata,
2525  "title", chapters[i].title, 0);
2526  }
2527  max_start = chapters[i].start;
2528  }
2529 
2530  matroska_add_index_entries(matroska);
2531 
2533 
2534  return 0;
2535 fail:
2537  return res;
2538 }
2539 
2540 /*
2541  * Put one packet in an application-supplied AVPacket struct.
2542  * Returns 0 on success or -1 on failure.
2543  */
2545  AVPacket *pkt)
2546 {
2547  if (matroska->num_packets > 0) {
2548  MatroskaTrack *tracks = matroska->tracks.elem;
2549  MatroskaTrack *track;
2550  memcpy(pkt, matroska->packets[0], sizeof(AVPacket));
2551  av_freep(&matroska->packets[0]);
2552  track = &tracks[pkt->stream_index];
2553  if (track->has_palette) {
2555  if (!pal) {
2556  av_log(matroska->ctx, AV_LOG_ERROR, "Cannot append palette to packet\n");
2557  } else {
2558  memcpy(pal, track->palette, AVPALETTE_SIZE);
2559  }
2560  track->has_palette = 0;
2561  }
2562  if (matroska->num_packets > 1) {
2563  void *newpackets;
2564  memmove(&matroska->packets[0], &matroska->packets[1],
2565  (matroska->num_packets - 1) * sizeof(AVPacket *));
2566  newpackets = av_realloc(matroska->packets,
2567  (matroska->num_packets - 1) *
2568  sizeof(AVPacket *));
2569  if (newpackets)
2570  matroska->packets = newpackets;
2571  } else {
2572  av_freep(&matroska->packets);
2573  matroska->prev_pkt = NULL;
2574  }
2575  matroska->num_packets--;
2576  return 0;
2577  }
2578 
2579  return -1;
2580 }
2581 
2582 /*
2583  * Free all packets in our internal queue.
2584  */
2586 {
2587  matroska->prev_pkt = NULL;
2588  if (matroska->packets) {
2589  int n;
2590  for (n = 0; n < matroska->num_packets; n++) {
2591  av_packet_unref(matroska->packets[n]);
2592  av_freep(&matroska->packets[n]);
2593  }
2594  av_freep(&matroska->packets);
2595  matroska->num_packets = 0;
2596  }
2597 }
2598 
2600  int *buf_size, int type,
2601  uint32_t **lace_buf, int *laces)
2602 {
2603  int res = 0, n, size = *buf_size;
2604  uint8_t *data = *buf;
2605  uint32_t *lace_size;
2606 
2607  if (!type) {
2608  *laces = 1;
2609  *lace_buf = av_mallocz(sizeof(int));
2610  if (!*lace_buf)
2611  return AVERROR(ENOMEM);
2612 
2613  *lace_buf[0] = size;
2614  return 0;
2615  }
2616 
2617  av_assert0(size > 0);
2618  *laces = *data + 1;
2619  data += 1;
2620  size -= 1;
2621  lace_size = av_mallocz(*laces * sizeof(int));
2622  if (!lace_size)
2623  return AVERROR(ENOMEM);
2624 
2625  switch (type) {
2626  case 0x1: /* Xiph lacing */
2627  {
2628  uint8_t temp;
2629  uint32_t total = 0;
2630  for (n = 0; res == 0 && n < *laces - 1; n++) {
2631  while (1) {
2632  if (size <= total) {
2633  res = AVERROR_INVALIDDATA;
2634  break;
2635  }
2636  temp = *data;
2637  total += temp;
2638  lace_size[n] += temp;
2639  data += 1;
2640  size -= 1;
2641  if (temp != 0xff)
2642  break;
2643  }
2644  }
2645  if (size <= total) {
2646  res = AVERROR_INVALIDDATA;
2647  break;
2648  }
2649 
2650  lace_size[n] = size - total;
2651  break;
2652  }
2653 
2654  case 0x2: /* fixed-size lacing */
2655  if (size % (*laces)) {
2656  res = AVERROR_INVALIDDATA;
2657  break;
2658  }
2659  for (n = 0; n < *laces; n++)
2660  lace_size[n] = size / *laces;
2661  break;
2662 
2663  case 0x3: /* EBML lacing */
2664  {
2665  uint64_t num;
2666  uint64_t total;
2667  n = matroska_ebmlnum_uint(matroska, data, size, &num);
2668  if (n < 0 || num > INT_MAX) {
2669  av_log(matroska->ctx, AV_LOG_INFO,
2670  "EBML block data error\n");
2671  res = n<0 ? n : AVERROR_INVALIDDATA;
2672  break;
2673  }
2674  data += n;
2675  size -= n;
2676  total = lace_size[0] = num;
2677  for (n = 1; res == 0 && n < *laces - 1; n++) {
2678  int64_t snum;
2679  int r;
2680  r = matroska_ebmlnum_sint(matroska, data, size, &snum);
2681  if (r < 0 || lace_size[n - 1] + snum > (uint64_t)INT_MAX) {
2682  av_log(matroska->ctx, AV_LOG_INFO,
2683  "EBML block data error\n");
2684  res = r<0 ? r : AVERROR_INVALIDDATA;
2685  break;
2686  }
2687  data += r;
2688  size -= r;
2689  lace_size[n] = lace_size[n - 1] + snum;
2690  total += lace_size[n];
2691  }
2692  if (size <= total) {
2693  res = AVERROR_INVALIDDATA;
2694  break;
2695  }
2696  lace_size[*laces - 1] = size - total;
2697  break;
2698  }
2699  }
2700 
2701  *buf = data;
2702  *lace_buf = lace_size;
2703  *buf_size = size;
2704 
2705  return res;
2706 }
2707 
2709  MatroskaTrack *track, AVStream *st,
2710  uint8_t *data, int size, uint64_t timecode,
2711  int64_t pos)
2712 {
2713  int a = st->codecpar->block_align;
2714  int sps = track->audio.sub_packet_size;
2715  int cfs = track->audio.coded_framesize;
2716  int h = track->audio.sub_packet_h;
2717  int y = track->audio.sub_packet_cnt;
2718  int w = track->audio.frame_size;
2719  int x;
2720 
2721  if (!track->audio.pkt_cnt) {
2722  if (track->audio.sub_packet_cnt == 0)
2723  track->audio.buf_timecode = timecode;
2724  if (st->codecpar->codec_id == AV_CODEC_ID_RA_288) {
2725  if (size < cfs * h / 2) {
2726  av_log(matroska->ctx, AV_LOG_ERROR,
2727  "Corrupt int4 RM-style audio packet size\n");
2728  return AVERROR_INVALIDDATA;
2729  }
2730  for (x = 0; x < h / 2; x++)
2731  memcpy(track->audio.buf + x * 2 * w + y * cfs,
2732  data + x * cfs, cfs);
2733  } else if (st->codecpar->codec_id == AV_CODEC_ID_SIPR) {
2734  if (size < w) {
2735  av_log(matroska->ctx, AV_LOG_ERROR,
2736  "Corrupt sipr RM-style audio packet size\n");
2737  return AVERROR_INVALIDDATA;
2738  }
2739  memcpy(track->audio.buf + y * w, data, w);
2740  } else {
2741  if (size < sps * w / sps || h<=0 || w%sps) {
2742  av_log(matroska->ctx, AV_LOG_ERROR,
2743  "Corrupt generic RM-style audio packet size\n");
2744  return AVERROR_INVALIDDATA;
2745  }
2746  for (x = 0; x < w / sps; x++)
2747  memcpy(track->audio.buf +
2748  sps * (h * x + ((h + 1) / 2) * (y & 1) + (y >> 1)),
2749  data + x * sps, sps);
2750  }
2751 
2752  if (++track->audio.sub_packet_cnt >= h) {
2753  if (st->codecpar->codec_id == AV_CODEC_ID_SIPR)
2754  ff_rm_reorder_sipr_data(track->audio.buf, h, w);
2755  track->audio.sub_packet_cnt = 0;
2756  track->audio.pkt_cnt = h * w / a;
2757  }
2758  }
2759 
2760  while (track->audio.pkt_cnt) {
2761  int ret;
2762  AVPacket *pkt = av_mallocz(sizeof(AVPacket));
2763  if (!pkt)
2764  return AVERROR(ENOMEM);
2765 
2766  ret = av_new_packet(pkt, a);
2767  if (ret < 0) {
2768  av_free(pkt);
2769  return ret;
2770  }
2771  memcpy(pkt->data,
2772  track->audio.buf + a * (h * w / a - track->audio.pkt_cnt--),
2773  a);
2774  pkt->pts = track->audio.buf_timecode;
2776  pkt->pos = pos;
2777  pkt->stream_index = st->index;
2778  dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
2779  }
2780 
2781  return 0;
2782 }
2783 
2784 /* reconstruct full wavpack blocks from mangled matroska ones */
2786  uint8_t **pdst, int *size)
2787 {
2788  uint8_t *dst = NULL;
2789  int dstlen = 0;
2790  int srclen = *size;
2791  uint32_t samples;
2792  uint16_t ver;
2793  int ret, offset = 0;
2794 
2795  if (srclen < 12 || track->stream->codecpar->extradata_size < 2)
2796  return AVERROR_INVALIDDATA;
2797 
2798  ver = AV_RL16(track->stream->codecpar->extradata);
2799 
2800  samples = AV_RL32(src);
2801  src += 4;
2802  srclen -= 4;
2803 
2804  while (srclen >= 8) {
2805  int multiblock;
2806  uint32_t blocksize;
2807  uint8_t *tmp;
2808 
2809  uint32_t flags = AV_RL32(src);
2810  uint32_t crc = AV_RL32(src + 4);
2811  src += 8;
2812  srclen -= 8;
2813 
2814  multiblock = (flags & 0x1800) != 0x1800;
2815  if (multiblock) {
2816  if (srclen < 4) {
2817  ret = AVERROR_INVALIDDATA;
2818  goto fail;
2819  }
2820  blocksize = AV_RL32(src);
2821  src += 4;
2822  srclen -= 4;
2823  } else
2824  blocksize = srclen;
2825 
2826  if (blocksize > srclen) {
2827  ret = AVERROR_INVALIDDATA;
2828  goto fail;
2829  }
2830 
2831  tmp = av_realloc(dst, dstlen + blocksize + 32);
2832  if (!tmp) {
2833  ret = AVERROR(ENOMEM);
2834  goto fail;
2835  }
2836  dst = tmp;
2837  dstlen += blocksize + 32;
2838 
2839  AV_WL32(dst + offset, MKTAG('w', 'v', 'p', 'k')); // tag
2840  AV_WL32(dst + offset + 4, blocksize + 24); // blocksize - 8
2841  AV_WL16(dst + offset + 8, ver); // version
2842  AV_WL16(dst + offset + 10, 0); // track/index_no
2843  AV_WL32(dst + offset + 12, 0); // total samples
2844  AV_WL32(dst + offset + 16, 0); // block index
2845  AV_WL32(dst + offset + 20, samples); // number of samples
2846  AV_WL32(dst + offset + 24, flags); // flags
2847  AV_WL32(dst + offset + 28, crc); // crc
2848  memcpy(dst + offset + 32, src, blocksize); // block data
2849 
2850  src += blocksize;
2851  srclen -= blocksize;
2852  offset += blocksize + 32;
2853  }
2854 
2855  *pdst = dst;
2856  *size = dstlen;
2857 
2858  return 0;
2859 
2860 fail:
2861  av_freep(&dst);
2862  return ret;
2863 }
2864 
2866  MatroskaTrack *track,
2867  AVStream *st,
2868  uint8_t *data, int data_len,
2869  uint64_t timecode,
2870  uint64_t duration,
2871  int64_t pos)
2872 {
2873  AVPacket *pkt;
2874  uint8_t *id, *settings, *text, *buf;
2875  int id_len, settings_len, text_len;
2876  uint8_t *p, *q;
2877  int err;
2878 
2879  if (data_len <= 0)
2880  return AVERROR_INVALIDDATA;
2881 
2882  p = data;
2883  q = data + data_len;
2884 
2885  id = p;
2886  id_len = -1;
2887  while (p < q) {
2888  if (*p == '\r' || *p == '\n') {
2889  id_len = p - id;
2890  if (*p == '\r')
2891  p++;
2892  break;
2893  }
2894  p++;
2895  }
2896 
2897  if (p >= q || *p != '\n')
2898  return AVERROR_INVALIDDATA;
2899  p++;
2900 
2901  settings = p;
2902  settings_len = -1;
2903  while (p < q) {
2904  if (*p == '\r' || *p == '\n') {
2905  settings_len = p - settings;
2906  if (*p == '\r')
2907  p++;
2908  break;
2909  }
2910  p++;
2911  }
2912 
2913  if (p >= q || *p != '\n')
2914  return AVERROR_INVALIDDATA;
2915  p++;
2916 
2917  text = p;
2918  text_len = q - p;
2919  while (text_len > 0) {
2920  const int len = text_len - 1;
2921  const uint8_t c = p[len];
2922  if (c != '\r' && c != '\n')
2923  break;
2924  text_len = len;
2925  }
2926 
2927  if (text_len <= 0)
2928  return AVERROR_INVALIDDATA;
2929 
2930  pkt = av_mallocz(sizeof(*pkt));
2931  if (!pkt)
2932  return AVERROR(ENOMEM);
2933  err = av_new_packet(pkt, text_len);
2934  if (err < 0) {
2935  av_free(pkt);
2936  return AVERROR(err);
2937  }
2938 
2939  memcpy(pkt->data, text, text_len);
2940 
2941  if (id_len > 0) {
2942  buf = av_packet_new_side_data(pkt,
2944  id_len);
2945  if (!buf) {
2946  av_free(pkt);
2947  return AVERROR(ENOMEM);
2948  }
2949  memcpy(buf, id, id_len);
2950  }
2951 
2952  if (settings_len > 0) {
2953  buf = av_packet_new_side_data(pkt,
2955  settings_len);
2956  if (!buf) {
2957  av_free(pkt);
2958  return AVERROR(ENOMEM);
2959  }
2960  memcpy(buf, settings, settings_len);
2961  }
2962 
2963  // Do we need this for subtitles?
2964  // pkt->flags = AV_PKT_FLAG_KEY;
2965 
2966  pkt->stream_index = st->index;
2967  pkt->pts = timecode;
2968 
2969  // Do we need this for subtitles?
2970  // pkt->dts = timecode;
2971 
2972  pkt->duration = duration;
2973  pkt->pos = pos;
2974 
2975  dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
2976  matroska->prev_pkt = pkt;
2977 
2978  return 0;
2979 }
2980 
2982  MatroskaTrack *track, AVStream *st,
2983  uint8_t *data, int pkt_size,
2984  uint64_t timecode, uint64_t lace_duration,
2985  int64_t pos, int is_keyframe,
2986  uint8_t *additional, uint64_t additional_id, int additional_size,
2987  int64_t discard_padding)
2988 {
2989  MatroskaTrackEncoding *encodings = track->encodings.elem;
2990  uint8_t *pkt_data = data;
2991  int offset = 0, res;
2992  AVPacket *pkt;
2993 
2994  if (encodings && !encodings->type && encodings->scope & 1) {
2995  res = matroska_decode_buffer(&pkt_data, &pkt_size, track);
2996  if (res < 0)
2997  return res;
2998  }
2999 
3000  if (st->codecpar->codec_id == AV_CODEC_ID_WAVPACK) {
3001  uint8_t *wv_data;
3002  res = matroska_parse_wavpack(track, pkt_data, &wv_data, &pkt_size);
3003  if (res < 0) {
3004  av_log(matroska->ctx, AV_LOG_ERROR,
3005  "Error parsing a wavpack block.\n");
3006  goto fail;
3007  }
3008  if (pkt_data != data)
3009  av_freep(&pkt_data);
3010  pkt_data = wv_data;
3011  }
3012 
3013  if (st->codecpar->codec_id == AV_CODEC_ID_PRORES &&
3014  AV_RB32(&data[4]) != MKBETAG('i', 'c', 'p', 'f'))
3015  offset = 8;
3016 
3017  pkt = av_mallocz(sizeof(AVPacket));
3018  if (!pkt) {
3019  if (pkt_data != data)
3020  av_freep(&pkt_data);
3021  return AVERROR(ENOMEM);
3022  }
3023  /* XXX: prevent data copy... */
3024  if (av_new_packet(pkt, pkt_size + offset) < 0) {
3025  av_free(pkt);
3026  res = AVERROR(ENOMEM);
3027  goto fail;
3028  }
3029 
3030  if (st->codecpar->codec_id == AV_CODEC_ID_PRORES && offset == 8) {
3031  uint8_t *buf = pkt->data;
3032  bytestream_put_be32(&buf, pkt_size);
3033  bytestream_put_be32(&buf, MKBETAG('i', 'c', 'p', 'f'));
3034  }
3035 
3036  memcpy(pkt->data + offset, pkt_data, pkt_size);
3037 
3038  if (pkt_data != data)
3039  av_freep(&pkt_data);
3040 
3041  pkt->flags = is_keyframe;
3042  pkt->stream_index = st->index;
3043 
3044  if (additional_size > 0) {
3045  uint8_t *side_data = av_packet_new_side_data(pkt,
3047  additional_size + 8);
3048  if (!side_data) {
3049  av_packet_unref(pkt);
3050  av_free(pkt);
3051  return AVERROR(ENOMEM);
3052  }
3053  AV_WB64(side_data, additional_id);
3054  memcpy(side_data + 8, additional, additional_size);
3055  }
3056 
3057  if (discard_padding) {
3058  uint8_t *side_data = av_packet_new_side_data(pkt,
3060  10);
3061  if (!side_data) {
3062  av_packet_unref(pkt);
3063  av_free(pkt);
3064  return AVERROR(ENOMEM);
3065  }
3066  AV_WL32(side_data, 0);
3067  AV_WL32(side_data + 4, av_rescale_q(discard_padding,
3068  (AVRational){1, 1000000000},
3069  (AVRational){1, st->codecpar->sample_rate}));
3070  }
3071 
3072  if (track->ms_compat)
3073  pkt->dts = timecode;
3074  else
3075  pkt->pts = timecode;
3076  pkt->pos = pos;
3077  pkt->duration = lace_duration;
3078 
3079 #if FF_API_CONVERGENCE_DURATION
3081  if (st->codecpar->codec_id == AV_CODEC_ID_SUBRIP) {
3082  pkt->convergence_duration = lace_duration;
3083  }
3085 #endif
3086 
3087  dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
3088  matroska->prev_pkt = pkt;
3089 
3090  return 0;
3091 
3092 fail:
3093  if (pkt_data != data)
3094  av_freep(&pkt_data);
3095  return res;
3096 }
3097 
3099  int size, int64_t pos, uint64_t cluster_time,
3100  uint64_t block_duration, int is_keyframe,
3101  uint8_t *additional, uint64_t additional_id, int additional_size,
3102  int64_t cluster_pos, int64_t discard_padding)
3103 {
3104  uint64_t timecode = AV_NOPTS_VALUE;
3105  MatroskaTrack *track;
3106  int res = 0;
3107  AVStream *st;
3108  int16_t block_time;
3109  uint32_t *lace_size = NULL;
3110  int n, flags, laces = 0;
3111  uint64_t num;
3112  int trust_default_duration = 1;
3113 
3114  if ((n = matroska_ebmlnum_uint(matroska, data, size, &num)) < 0) {
3115  av_log(matroska->ctx, AV_LOG_ERROR, "EBML block data error\n");
3116  return n;
3117  }
3118  data += n;
3119  size -= n;
3120 
3121  track = matroska_find_track_by_num(matroska, num);
3122  if (!track || !track->stream) {
3123  av_log(matroska->ctx, AV_LOG_INFO,
3124  "Invalid stream %"PRIu64" or size %u\n", num, size);
3125  return AVERROR_INVALIDDATA;
3126  } else if (size <= 3)
3127  return 0;
3128  st = track->stream;
3129  if (st->discard >= AVDISCARD_ALL)
3130  return res;
3131  av_assert1(block_duration != AV_NOPTS_VALUE);
3132 
3133  block_time = sign_extend(AV_RB16(data), 16);
3134  data += 2;
3135  flags = *data++;
3136  size -= 3;
3137  if (is_keyframe == -1)
3138  is_keyframe = flags & 0x80 ? AV_PKT_FLAG_KEY : 0;
3139 
3140  if (cluster_time != (uint64_t) -1 &&
3141  (block_time >= 0 || cluster_time >= -block_time)) {
3142  timecode = cluster_time + block_time - track->codec_delay_in_track_tb;
3143  if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE &&
3144  timecode < track->end_timecode)
3145  is_keyframe = 0; /* overlapping subtitles are not key frame */
3146  if (is_keyframe)
3147  av_add_index_entry(st, cluster_pos, timecode, 0, 0,
3149  }
3150 
3151  if (matroska->skip_to_keyframe &&
3152  track->type != MATROSKA_TRACK_TYPE_SUBTITLE) {
3153  if (timecode < matroska->skip_to_timecode)
3154  return res;
3155  if (is_keyframe)
3156  matroska->skip_to_keyframe = 0;
3157  else if (!st->skip_to_keyframe) {
3158  av_log(matroska->ctx, AV_LOG_ERROR, "File is broken, keyframes not correctly marked!\n");
3159  matroska->skip_to_keyframe = 0;
3160  }
3161  }
3162 
3163  res = matroska_parse_laces(matroska, &data, &size, (flags & 0x06) >> 1,
3164  &lace_size, &laces);
3165 
3166  if (res)
3167  goto end;
3168 
3169  if (track->audio.samplerate == 8000) {
3170  // If this is needed for more codecs, then add them here
3171  if (st->codecpar->codec_id == AV_CODEC_ID_AC3) {
3172  if (track->audio.samplerate != st->codecpar->sample_rate || !st->codecpar->frame_size)
3173  trust_default_duration = 0;
3174  }
3175  }
3176 
3177  if (!block_duration && trust_default_duration)
3178  block_duration = track->default_duration * laces / matroska->time_scale;
3179 
3180  if (cluster_time != (uint64_t)-1 && (block_time >= 0 || cluster_time >= -block_time))
3181  track->end_timecode =
3182  FFMAX(track->end_timecode, timecode + block_duration);
3183 
3184  for (n = 0; n < laces; n++) {
3185  int64_t lace_duration = block_duration*(n+1) / laces - block_duration*n / laces;
3186 
3187  if (lace_size[n] > size) {
3188  av_log(matroska->ctx, AV_LOG_ERROR, "Invalid packet size\n");
3189  break;
3190  }
3191 
3192  if ((st->codecpar->codec_id == AV_CODEC_ID_RA_288 ||
3196  st->codecpar->block_align && track->audio.sub_packet_size) {
3197  res = matroska_parse_rm_audio(matroska, track, st, data,
3198  lace_size[n],
3199  timecode, pos);
3200  if (res)
3201  goto end;
3202 
3203  } else if (st->codecpar->codec_id == AV_CODEC_ID_WEBVTT) {
3204  res = matroska_parse_webvtt(matroska, track, st,
3205  data, lace_size[n],
3206  timecode, lace_duration,
3207  pos);
3208  if (res)
3209  goto end;
3210  } else {
3211  res = matroska_parse_frame(matroska, track, st, data, lace_size[n],
3212  timecode, lace_duration, pos,
3213  !n ? is_keyframe : 0,
3214  additional, additional_id, additional_size,
3215  discard_padding);
3216  if (res)
3217  goto end;
3218  }
3219 
3220  if (timecode != AV_NOPTS_VALUE)
3221  timecode = lace_duration ? timecode + lace_duration : AV_NOPTS_VALUE;
3222  data += lace_size[n];
3223  size -= lace_size[n];
3224  }
3225 
3226 end:
3227  av_free(lace_size);
3228  return res;
3229 }
3230 
3232 {
3233  EbmlList *blocks_list;
3234  MatroskaBlock *blocks;
3235  int i, res;
3236  res = ebml_parse(matroska,
3237  matroska_cluster_incremental_parsing,
3238  &matroska->current_cluster);
3239  if (res == 1) {
3240  /* New Cluster */
3241  if (matroska->current_cluster_pos)
3242  ebml_level_end(matroska);
3243  ebml_free(matroska_cluster, &matroska->current_cluster);
3244  memset(&matroska->current_cluster, 0, sizeof(MatroskaCluster));
3245  matroska->current_cluster_num_blocks = 0;
3246  matroska->current_cluster_pos = avio_tell(matroska->ctx->pb);
3247  matroska->prev_pkt = NULL;
3248  /* sizeof the ID which was already read */
3249  if (matroska->current_id)
3250  matroska->current_cluster_pos -= 4;
3251  res = ebml_parse(matroska,
3252  matroska_clusters_incremental,
3253  &matroska->current_cluster);
3254  /* Try parsing the block again. */
3255  if (res == 1)
3256  res = ebml_parse(matroska,
3257  matroska_cluster_incremental_parsing,
3258  &matroska->current_cluster);
3259  }
3260 
3261  if (!res &&
3262  matroska->current_cluster_num_blocks <
3263  matroska->current_cluster.blocks.nb_elem) {
3264  blocks_list = &matroska->current_cluster.blocks;
3265  blocks = blocks_list->elem;
3266 
3267  matroska->current_cluster_num_blocks = blocks_list->nb_elem;
3268  i = blocks_list->nb_elem - 1;
3269  if (blocks[i].bin.size > 0 && blocks[i].bin.data) {
3270  int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1;
3271  uint8_t* additional = blocks[i].additional.size > 0 ?
3272  blocks[i].additional.data : NULL;
3273  if (!blocks[i].non_simple)
3274  blocks[i].duration = 0;
3275  res = matroska_parse_block(matroska, blocks[i].bin.data,
3276  blocks[i].bin.size, blocks[i].bin.pos,
3277  matroska->current_cluster.timecode,
3278  blocks[i].duration, is_keyframe,
3279  additional, blocks[i].additional_id,
3280  blocks[i].additional.size,
3281  matroska->current_cluster_pos,
3282  blocks[i].discard_padding);
3283  }
3284  }
3285 
3286  return res;
3287 }
3288 
3290 {
3291  MatroskaCluster cluster = { 0 };
3292  EbmlList *blocks_list;
3293  MatroskaBlock *blocks;
3294  int i, res;
3295  int64_t pos;
3296 
3297  if (!matroska->contains_ssa)
3298  return matroska_parse_cluster_incremental(matroska);
3299  pos = avio_tell(matroska->ctx->pb);
3300  matroska->prev_pkt = NULL;
3301  if (matroska->current_id)
3302  pos -= 4; /* sizeof the ID which was already read */
3303  res = ebml_parse(matroska, matroska_clusters, &cluster);
3304  blocks_list = &cluster.blocks;
3305  blocks = blocks_list->elem;
3306  for (i = 0; i < blocks_list->nb_elem; i++)
3307  if (blocks[i].bin.size > 0 && blocks[i].bin.data) {
3308  int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1;
3309  res = matroska_parse_block(matroska, blocks[i].bin.data,
3310  blocks[i].bin.size, blocks[i].bin.pos,
3311  cluster.timecode, blocks[i].duration,
3312  is_keyframe, NULL, 0, 0, pos,
3313  blocks[i].discard_padding);
3314  }
3315  ebml_free(matroska_cluster, &cluster);
3316  return res;
3317 }
3318 
3320 {
3321  MatroskaDemuxContext *matroska = s->priv_data;
3322 
3323  while (matroska_deliver_packet(matroska, pkt)) {
3324  int64_t pos = avio_tell(matroska->ctx->pb);
3325  if (matroska->done)
3326  return AVERROR_EOF;
3327  if (matroska_parse_cluster(matroska) < 0)
3328  matroska_resync(matroska, pos);
3329  }
3330 
3331  return 0;
3332 }
3333 
3334 static int matroska_read_seek(AVFormatContext *s, int stream_index,
3335  int64_t timestamp, int flags)
3336 {
3337  MatroskaDemuxContext *matroska = s->priv_data;
3338  MatroskaTrack *tracks = NULL;
3339  AVStream *st = s->streams[stream_index];
3340  int i, index, index_sub, index_min;
3341 
3342  /* Parse the CUES now since we need the index data to seek. */
3343  if (matroska->cues_parsing_deferred > 0) {
3344  matroska->cues_parsing_deferred = 0;
3345  matroska_parse_cues(matroska);
3346  }
3347 
3348  if (!st->nb_index_entries)
3349  goto err;
3350  timestamp = FFMAX(timestamp, st->index_entries[0].timestamp);
3351 
3352  if ((index = av_index_search_timestamp(st, timestamp, flags)) < 0 || index == st->nb_index_entries - 1) {
3353  avio_seek(s->pb, st->index_entries[st->nb_index_entries - 1].pos,
3354  SEEK_SET);
3355  matroska->current_id = 0;
3356  while ((index = av_index_search_timestamp(st, timestamp, flags)) < 0 || index == st->nb_index_entries - 1) {
3357  matroska_clear_queue(matroska);
3358  if (matroska_parse_cluster(matroska) < 0)
3359  break;
3360  }
3361  }
3362 
3363  matroska_clear_queue(matroska);
3364  if (index < 0 || (matroska->cues_parsing_deferred < 0 && index == st->nb_index_entries - 1))
3365  goto err;
3366 
3367  index_min = index;
3368  tracks = matroska->tracks.elem;
3369  for (i = 0; i < matroska->tracks.nb_elem; i++) {
3370  tracks[i].audio.pkt_cnt = 0;
3371  tracks[i].audio.sub_packet_cnt = 0;
3372  tracks[i].audio.buf_timecode = AV_NOPTS_VALUE;
3373  tracks[i].end_timecode = 0;
3374  if (tracks[i].type == MATROSKA_TRACK_TYPE_SUBTITLE &&
3375  tracks[i].stream &&
3376  tracks[i].stream->discard != AVDISCARD_ALL) {
3377  index_sub = av_index_search_timestamp(
3378  tracks[i].stream, st->index_entries[index].timestamp,
3380  while (index_sub >= 0 &&
3381  index_min > 0 &&
3382  tracks[i].stream->index_entries[index_sub].pos < st->index_entries[index_min].pos &&
3383  st->index_entries[index].timestamp - tracks[i].stream->index_entries[index_sub].timestamp < 30000000000 / matroska->time_scale)
3384  index_min--;
3385  }
3386  }
3387 
3388  avio_seek(s->pb, st->index_entries[index_min].pos, SEEK_SET);
3389  matroska->current_id = 0;
3390  if (flags & AVSEEK_FLAG_ANY) {
3391  st->skip_to_keyframe = 0;
3392  matroska->skip_to_timecode = timestamp;
3393  } else {
3394  st->skip_to_keyframe = 1;
3395  matroska->skip_to_timecode = st->index_entries[index].timestamp;
3396  }
3397  matroska->skip_to_keyframe = 1;
3398  matroska->done = 0;
3399  matroska->num_levels = 0;
3400  ff_update_cur_dts(s, st, st->index_entries[index].timestamp);
3401  return 0;
3402 err:
3403  // slightly hackish but allows proper fallback to
3404  // the generic seeking code.
3405  matroska_clear_queue(matroska);
3406  matroska->current_id = 0;
3407  st->skip_to_keyframe =
3408  matroska->skip_to_keyframe = 0;
3409  matroska->done = 0;
3410  matroska->num_levels = 0;
3411  return -1;
3412 }
3413 
3415 {
3416  MatroskaDemuxContext *matroska = s->priv_data;
3417  MatroskaTrack *tracks = matroska->tracks.elem;
3418  int n;
3419 
3420  matroska_clear_queue(matroska);
3421 
3422  for (n = 0; n < matroska->tracks.nb_elem; n++)
3423  if (tracks[n].type == MATROSKA_TRACK_TYPE_AUDIO)
3424  av_freep(&tracks[n].audio.buf);
3425  ebml_free(matroska_cluster, &matroska->current_cluster);
3426  ebml_free(matroska_segment, matroska);
3427 
3428  return 0;
3429 }
3430 
3431 typedef struct {
3432  int64_t start_time_ns;
3433  int64_t end_time_ns;
3434  int64_t start_offset;
3435  int64_t end_offset;
3436 } CueDesc;
3437 
3438 /* This function searches all the Cues and returns the CueDesc corresponding the
3439  * the timestamp ts. Returned CueDesc will be such that start_time_ns <= ts <
3440  * end_time_ns. All 4 fields will be set to -1 if ts >= file's duration.
3441  */
3442 static CueDesc get_cue_desc(AVFormatContext *s, int64_t ts, int64_t cues_start) {
3443  MatroskaDemuxContext *matroska = s->priv_data;
3444  CueDesc cue_desc;
3445  int i;
3446  int nb_index_entries = s->streams[0]->nb_index_entries;
3447  AVIndexEntry *index_entries = s->streams[0]->index_entries;
3448  if (ts >= matroska->duration * matroska->time_scale) return (CueDesc) {-1, -1, -1, -1};
3449  for (i = 1; i < nb_index_entries; i++) {
3450  if (index_entries[i - 1].timestamp * matroska->time_scale <= ts &&
3451  index_entries[i].timestamp * matroska->time_scale > ts) {
3452  break;
3453  }
3454  }
3455  --i;
3456  cue_desc.start_time_ns = index_entries[i].timestamp * matroska->time_scale;
3457  cue_desc.start_offset = index_entries[i].pos - matroska->segment_start;
3458  if (i != nb_index_entries - 1) {
3459  cue_desc.end_time_ns = index_entries[i + 1].timestamp * matroska->time_scale;
3460  cue_desc.end_offset = index_entries[i + 1].pos - matroska->segment_start;
3461  } else {
3462  cue_desc.end_time_ns = matroska->duration * matroska->time_scale;
3463  // FIXME: this needs special handling for files where Cues appear
3464  // before Clusters. the current logic assumes Cues appear after
3465  // Clusters.
3466  cue_desc.end_offset = cues_start - matroska->segment_start;
3467  }
3468  return cue_desc;
3469 }
3470 
3472 {
3473  MatroskaDemuxContext *matroska = s->priv_data;
3474  int64_t cluster_pos, before_pos;
3475  int index, rv = 1;
3476  if (s->streams[0]->nb_index_entries <= 0) return 0;
3477  // seek to the first cluster using cues.
3478  index = av_index_search_timestamp(s->streams[0], 0, 0);
3479  if (index < 0) return 0;
3480  cluster_pos = s->streams[0]->index_entries[index].pos;
3481  before_pos = avio_tell(s->pb);
3482  while (1) {
3483  int64_t cluster_id = 0, cluster_length = 0;
3484  AVPacket *pkt;
3485  avio_seek(s->pb, cluster_pos, SEEK_SET);
3486  // read cluster id and length
3487  ebml_read_num(matroska, matroska->ctx->pb, 4, &cluster_id);
3488  ebml_read_length(matroska, matroska->ctx->pb, &cluster_length);
3489  if (cluster_id != 0xF43B675) { // done with all clusters
3490  break;
3491  }
3492  avio_seek(s->pb, cluster_pos, SEEK_SET);
3493  matroska->current_id = 0;
3494  matroska_clear_queue(matroska);
3495  if (matroska_parse_cluster(matroska) < 0 ||
3496  matroska->num_packets <= 0) {
3497  break;
3498  }
3499  pkt = matroska->packets[0];
3500  cluster_pos += cluster_length + 12; // 12 is the offset of the cluster id and length.
3501  if (!(pkt->flags & AV_PKT_FLAG_KEY)) {
3502  rv = 0;
3503  break;
3504  }
3505  }
3506  avio_seek(s->pb, before_pos, SEEK_SET);
3507  return rv;
3508 }
3509 
3510 static int buffer_size_after_time_downloaded(int64_t time_ns, double search_sec, int64_t bps,
3511  double min_buffer, double* buffer,
3512  double* sec_to_download, AVFormatContext *s,
3513  int64_t cues_start)
3514 {
3515  double nano_seconds_per_second = 1000000000.0;
3516  double time_sec = time_ns / nano_seconds_per_second;
3517  int rv = 0;
3518  int64_t time_to_search_ns = (int64_t)(search_sec * nano_seconds_per_second);
3519  int64_t end_time_ns = time_ns + time_to_search_ns;
3520  double sec_downloaded = 0.0;
3521  CueDesc desc_curr = get_cue_desc(s, time_ns, cues_start);
3522  if (desc_curr.start_time_ns == -1)
3523  return -1;
3524  *sec_to_download = 0.0;
3525 
3526  // Check for non cue start time.
3527  if (time_ns > desc_curr.start_time_ns) {
3528  int64_t cue_nano = desc_curr.end_time_ns - time_ns;
3529  double percent = (double)(cue_nano) / (desc_curr.end_time_ns - desc_curr.start_time_ns);
3530  double cueBytes = (desc_curr.end_offset - desc_curr.start_offset) * percent;
3531  double timeToDownload = (cueBytes * 8.0) / bps;
3532 
3533  sec_downloaded += (cue_nano / nano_seconds_per_second) - timeToDownload;
3534  *sec_to_download += timeToDownload;
3535 
3536  // Check if the search ends within the first cue.
3537  if (desc_curr.end_time_ns >= end_time_ns) {
3538  double desc_end_time_sec = desc_curr.end_time_ns / nano_seconds_per_second;
3539  double percent_to_sub = search_sec / (desc_end_time_sec - time_sec);
3540  sec_downloaded = percent_to_sub * sec_downloaded;
3541  *sec_to_download = percent_to_sub * *sec_to_download;
3542  }
3543 
3544  if ((sec_downloaded + *buffer) <= min_buffer) {
3545  return 1;
3546  }
3547 
3548  // Get the next Cue.
3549  desc_curr = get_cue_desc(s, desc_curr.end_time_ns, cues_start);
3550  }
3551 
3552  while (desc_curr.start_time_ns != -1) {
3553  int64_t desc_bytes = desc_curr.end_offset - desc_curr.start_offset;
3554  int64_t desc_ns = desc_curr.end_time_ns - desc_curr.start_time_ns;
3555  double desc_sec = desc_ns / nano_seconds_per_second;
3556  double bits = (desc_bytes * 8.0);
3557  double time_to_download = bits / bps;
3558 
3559  sec_downloaded += desc_sec - time_to_download;
3560  *sec_to_download += time_to_download;
3561 
3562  if (desc_curr.end_time_ns >= end_time_ns) {
3563  double desc_end_time_sec = desc_curr.end_time_ns / nano_seconds_per_second;
3564  double percent_to_sub = search_sec / (desc_end_time_sec - time_sec);
3565  sec_downloaded = percent_to_sub * sec_downloaded;
3566  *sec_to_download = percent_to_sub * *sec_to_download;
3567 
3568  if ((sec_downloaded + *buffer) <= min_buffer)
3569  rv = 1;
3570  break;
3571  }
3572 
3573  if ((sec_downloaded + *buffer) <= min_buffer) {
3574  rv = 1;
3575  break;
3576  }
3577 
3578  desc_curr = get_cue_desc(s, desc_curr.end_time_ns, cues_start);
3579  }
3580  *buffer = *buffer + sec_downloaded;
3581  return rv;
3582 }
3583 
3584 /* This function computes the bandwidth of the WebM file with the help of
3585  * buffer_size_after_time_downloaded() function. Both of these functions are
3586  * adapted from WebM Tools project and are adapted to work with FFmpeg's
3587  * Matroska parsing mechanism.
3588  *
3589  * Returns the bandwidth of the file on success; -1 on error.
3590  * */
3591 static int64_t webm_dash_manifest_compute_bandwidth(AVFormatContext *s, int64_t cues_start)
3592 {
3593  MatroskaDemuxContext *matroska = s->priv_data;
3594  AVStream *st = s->streams[0];
3595  double bandwidth = 0.0;
3596  int i;
3597 
3598  for (i = 0; i < st->nb_index_entries; i++) {
3599  int64_t prebuffer_ns = 1000000000;
3600  int64_t time_ns = st->index_entries[i].timestamp * matroska->time_scale;
3601  double nano_seconds_per_second = 1000000000.0;
3602  int64_t prebuffered_ns = time_ns + prebuffer_ns;
3603  double prebuffer_bytes = 0.0;
3604  int64_t temp_prebuffer_ns = prebuffer_ns;
3605  int64_t pre_bytes, pre_ns;
3606  double pre_sec, prebuffer, bits_per_second;
3607  CueDesc desc_beg = get_cue_desc(s, time_ns, cues_start);
3608 
3609  // Start with the first Cue.
3610  CueDesc desc_end = desc_beg;
3611 
3612  // Figure out how much data we have downloaded for the prebuffer. This will
3613  // be used later to adjust the bits per sample to try.
3614  while (desc_end.start_time_ns != -1 && desc_end.end_time_ns < prebuffered_ns) {
3615  // Prebuffered the entire Cue.
3616  prebuffer_bytes += desc_end.end_offset - desc_end.start_offset;
3617  temp_prebuffer_ns -= desc_end.end_time_ns - desc_end.start_time_ns;
3618  desc_end = get_cue_desc(s, desc_end.end_time_ns, cues_start);
3619  }
3620  if (desc_end.start_time_ns == -1) {
3621  // The prebuffer is larger than the duration.
3622  if (matroska->duration * matroska->time_scale >= prebuffered_ns)
3623  return -1;
3624  bits_per_second = 0.0;
3625  } else {
3626  // The prebuffer ends in the last Cue. Estimate how much data was
3627  // prebuffered.
3628  pre_bytes = desc_end.end_offset - desc_end.start_offset;
3629  pre_ns = desc_end.end_time_ns - desc_end.start_time_ns;
3630  pre_sec = pre_ns / nano_seconds_per_second;
3631  prebuffer_bytes +=
3632  pre_bytes * ((temp_prebuffer_ns / nano_seconds_per_second) / pre_sec);
3633 
3634  prebuffer = prebuffer_ns / nano_seconds_per_second;
3635 
3636  // Set this to 0.0 in case our prebuffer buffers the entire video.
3637  bits_per_second = 0.0;
3638  do {
3639  int64_t desc_bytes = desc_end.end_offset - desc_beg.start_offset;
3640  int64_t desc_ns = desc_end.end_time_ns - desc_beg.start_time_ns;
3641  double desc_sec = desc_ns / nano_seconds_per_second;
3642  double calc_bits_per_second = (desc_bytes * 8) / desc_sec;
3643 
3644  // Drop the bps by the percentage of bytes buffered.
3645  double percent = (desc_bytes - prebuffer_bytes) / desc_bytes;
3646  double mod_bits_per_second = calc_bits_per_second * percent;
3647 
3648  if (prebuffer < desc_sec) {
3649  double search_sec =
3650  (double)(matroska->duration * matroska->time_scale) / nano_seconds_per_second;
3651 
3652  // Add 1 so the bits per second should be a little bit greater than file
3653  // datarate.
3654  int64_t bps = (int64_t)(mod_bits_per_second) + 1;
3655  const double min_buffer = 0.0;
3656  double buffer = prebuffer;
3657  double sec_to_download = 0.0;
3658 
3659  int rv = buffer_size_after_time_downloaded(prebuffered_ns, search_sec, bps,
3660  min_buffer, &buffer, &sec_to_download,
3661  s, cues_start);
3662  if (rv < 0) {
3663  return -1;
3664  } else if (rv == 0) {
3665  bits_per_second = (double)(bps);
3666  break;
3667  }
3668  }
3669 
3670  desc_end = get_cue_desc(s, desc_end.end_time_ns, cues_start);
3671  } while (desc_end.start_time_ns != -1);
3672  }
3673  if (bandwidth < bits_per_second) bandwidth = bits_per_second;
3674  }
3675  return (int64_t)bandwidth;
3676 }
3677 
3679 {
3680  MatroskaDemuxContext *matroska = s->priv_data;
3681  EbmlList *seekhead_list = &matroska->seekhead;
3682  MatroskaSeekhead *seekhead = seekhead_list->elem;
3683  char *buf;
3684  int64_t cues_start = -1, cues_end = -1, before_pos, bandwidth;
3685  int i;
3686 
3687  // determine cues start and end positions
3688  for (i = 0; i < seekhead_list->nb_elem; i++)
3689  if (seekhead[i].id == MATROSKA_ID_CUES)
3690  break;
3691 
3692  if (i >= seekhead_list->nb_elem) return -1;
3693 
3694  before_pos = avio_tell(matroska->ctx->pb);
3695  cues_start = seekhead[i].pos + matroska->segment_start;
3696  if (avio_seek(matroska->ctx->pb, cues_start, SEEK_SET) == cues_start) {
3697  // cues_end is computed as cues_start + cues_length + length of the
3698  // Cues element ID + EBML length of the Cues element. cues_end is
3699  // inclusive and the above sum is reduced by 1.
3700  uint64_t cues_length = 0, cues_id = 0, bytes_read = 0;
3701  bytes_read += ebml_read_num(matroska, matroska->ctx->pb, 4, &cues_id);
3702  bytes_read += ebml_read_length(matroska, matroska->ctx->pb, &cues_length);
3703  cues_end = cues_start + cues_length + bytes_read - 1;
3704  }
3705  avio_seek(matroska->ctx->pb, before_pos, SEEK_SET);
3706  if (cues_start == -1 || cues_end == -1) return -1;
3707 
3708  // parse the cues
3709  matroska_parse_cues(matroska);
3710 
3711  // cues start
3712  av_dict_set_int(&s->streams[0]->metadata, CUES_START, cues_start, 0);
3713 
3714  // cues end
3715  av_dict_set_int(&s->streams[0]->metadata, CUES_END, cues_end, 0);
3716 
3717  // bandwidth
3718  bandwidth = webm_dash_manifest_compute_bandwidth(s, cues_start);
3719  if (bandwidth < 0) return -1;
3720  av_dict_set_int(&s->streams[0]->metadata, BANDWIDTH, bandwidth, 0);
3721 
3722  // check if all clusters start with key frames
3724 
3725  // store cue point timestamps as a comma separated list for checking subsegment alignment in
3726  // the muxer. assumes that each timestamp cannot be more than 20 characters long.
3727  buf = av_malloc_array(s->streams[0]->nb_index_entries, 20 * sizeof(char));
3728  if (!buf) return -1;
3729  strcpy(buf, "");
3730  for (i = 0; i < s->streams[0]->nb_index_entries; i++) {
3731  snprintf(buf, (i + 1) * 20 * sizeof(char),
3732  "%s%" PRId64, buf, s->streams[0]->index_entries[i].timestamp);
3733  if (i != s->streams[0]->nb_index_entries - 1)
3734  strncat(buf, ",", sizeof(char));
3735  }
3736  av_dict_set(&s->streams[0]->metadata, CUE_TIMESTAMPS, buf, 0);
3737  av_free(buf);
3738 
3739  return 0;
3740 }
3741 
3743 {
3744  char *buf;
3745  int ret = matroska_read_header(s);
3746  MatroskaTrack *tracks;
3747  MatroskaDemuxContext *matroska = s->priv_data;
3748  if (ret) {
3749  av_log(s, AV_LOG_ERROR, "Failed to read file headers\n");
3750  return -1;
3751  }
3752 
3753  if (!matroska->is_live) {
3754  buf = av_asprintf("%g", matroska->duration);
3755  if (!buf) return AVERROR(ENOMEM);
3756  av_dict_set(&s->streams[0]->metadata, DURATION, buf, 0);
3757  av_free(buf);
3758 
3759  // initialization range
3760  // 5 is the offset of Cluster ID.
3762  }
3763 
3764  // basename of the file
3765  buf = strrchr(s->filename, '/');
3766  av_dict_set(&s->streams[0]->metadata, FILENAME, buf ? ++buf : s->filename, 0);
3767 
3768  // track number
3769  tracks = matroska->tracks.elem;
3770  av_dict_set_int(&s->streams[0]->metadata, TRACK_NUMBER, tracks[0].num, 0);
3771 
3772  // parse the cues and populate Cue related fields
3773  return matroska->is_live ? 0 : webm_dash_manifest_cues(s);
3774 }
3775 
3777 {
3778  return AVERROR_EOF;
3779 }
3780 
3781 #define OFFSET(x) offsetof(MatroskaDemuxContext, x)
3782 static const AVOption options[] = {
3783  { "live", "flag indicating that the input is a live file that only has the headers.", OFFSET(is_live), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, AV_OPT_FLAG_DECODING_PARAM },
3784  { NULL },
3785 };
3786 
3787 static const AVClass webm_dash_class = {
3788  .class_name = "WebM DASH Manifest demuxer",
3789  .item_name = av_default_item_name,
3790  .option = options,
3791  .version = LIBAVUTIL_VERSION_INT,
3792 };
3793 
3795  .name = "matroska,webm",
3796  .long_name = NULL_IF_CONFIG_SMALL("Matroska / WebM"),
3797  .extensions = "mkv,mk3d,mka,mks",
3798  .priv_data_size = sizeof(MatroskaDemuxContext),
3804  .mime_type = "audio/webm,audio/x-matroska,video/webm,video/x-matroska"
3805 };
3806 
3808  .name = "webm_dash_manifest",
3809  .long_name = NULL_IF_CONFIG_SMALL("WebM DASH Manifest"),
3810  .priv_data_size = sizeof(MatroskaDemuxContext),
3814  .priv_class = &webm_dash_class,
3815 };
#define MATROSKA_ID_SEEKPREROLL
Definition: matroska.h:95
MatroskaTrackVideoColor color
Definition: matroskadec.c:175
const char * s
Definition: matroskadec.c:93
uint64_t codec_delay_in_track_tb
Definition: matroskadec.c:222
#define AVSEEK_FLAG_BACKWARD
Definition: avformat.h:2366
#define AV_DISPOSITION_METADATA
Definition: avformat.h:860
#define NULL
Definition: coverity.c:32
#define MATROSKA_ID_BLOCKADDID
Definition: matroska.h:223
#define MATROSKA_ID_TRACKDEFAULTDURATION
Definition: matroska.h:104
enum AVFieldOrder field_order
Video only.
Definition: avcodec.h:4003
void avio_wl16(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:446
static int matroska_parse_rm_audio(MatroskaDemuxContext *matroska, MatroskaTrack *track, AVStream *st, uint8_t *data, int size, uint64_t timecode, int64_t pos)
Definition: matroskadec.c:2708
const char * s
Definition: avisynth_c.h:631
Bytestream IO Context.
Definition: avio.h:147
enum AVColorTransferCharacteristic color_trc
Definition: avcodec.h:4010
#define MATROSKA_ID_VIDEOFLAGINTERLACED
Definition: matroska.h:121
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
#define MATROSKA_ID_VIDEOCOLOR_GX
Definition: matroska.h:147
static const EbmlSyntax matroska_blockgroup[]
Definition: matroskadec.c:672
uint64_t seek_preroll
Definition: matroskadec.c:216
enum AVCodecID codec_id
Definition: ffmpeg_vaapi.c:149
static int mkv_field_order(int64_t field_order)
Definition: matroskadec.c:1758
const char *const ff_matroska_video_stereo_plane[MATROSKA_VIDEO_STEREO_PLANE_COUNT]
Definition: matroska.c:145
static const EbmlSyntax matroska_simpletag[]
Definition: matroskadec.c:603
static void matroska_convert_tags(AVFormatContext *s)
Definition: matroskadec.c:1475
#define MATROSKA_ID_DATEUTC
Definition: matroska.h:71
The optional first identifier line of a WebVTT cue.
Definition: avcodec.h:1492
uint64_t type
Definition: matroskadec.c:207
static const EbmlSyntax matroska_tracks[]
Definition: matroskadec.c:531
#define MATROSKA_ID_TRACKFLAGLACING
Definition: matroska.h:101
static int webm_dash_manifest_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: matroskadec.c:3776
#define MATROSKA_ID_TRACKENTRY
Definition: matroska.h:75
static int matroska_deliver_packet(MatroskaDemuxContext *matroska, AVPacket *pkt)
Definition: matroskadec.c:2544
#define MATROSKA_ID_VIDEODISPLAYHEIGHT
Definition: matroska.h:113
uint64_t version
Definition: matroskadec.c:110
AVOption.
Definition: opt.h:245
AVInputFormat ff_matroska_demuxer
Definition: matroskadec.c:3794
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
static int is_keyframe(NalUnitType naltype)
Definition: libx265.c:50
int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp, int size, int distance, int flags)
Add an index entry into a sorted list.
Definition: utils.c:1900
enum AVCodecID id
Definition: mxfenc.c:104
static const EbmlSyntax matroska_info[]
Definition: matroskadec.c:383
#define MATROSKA_ID_CUETRACKPOSITION
Definition: matroska.h:185
enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag)
Definition: utils.c:2946
#define MATROSKA_ID_CODECPRIVATE
Definition: matroska.h:89
const unsigned char ff_sipr_subpk_size[4]
Definition: rmsipr.c:25
#define MATROSKA_ID_TAGTARGETS_TYPE
Definition: matroska.h:203
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
static int ebml_level_end(MatroskaDemuxContext *matroska)
Definition: matroskadec.c:771
#define LIBAVUTIL_VERSION_INT
Definition: version.h:70
#define INITIALIZATION_RANGE
Definition: matroska.h:334
int64_t pos
byte position in stream, -1 if unknown
Definition: avcodec.h:1600
static int matroska_ebmlnum_sint(MatroskaDemuxContext *matroska, uint8_t *data, uint32_t size, int64_t *num)
Definition: matroskadec.c:992
static int webm_clusters_start_with_keyframe(AVFormatContext *s)
Definition: matroskadec.c:3471
else temp
Definition: vf_mcdeint.c:259
static const EbmlSyntax matroska_tagtargets[]
Definition: matroskadec.c:613
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:4427
int64_t pos
Definition: avformat.h:816
#define MATROSKA_ID_ENCODINGTYPE
Definition: matroska.h:166
#define MATROSKA_ID_AUDIOBITDEPTH
Definition: matroska.h:160
uint64_t chapteruid
Definition: matroskadec.c:273
static const EbmlSyntax matroska_track_video[]
Definition: matroskadec.c:426
#define AVSEEK_FLAG_ANY
seek to any frame, even non-keyframes
Definition: avformat.h:2368
static av_always_inline float av_int2float(uint32_t i)
Reinterpret a 32-bit integer as a float.
Definition: intfloat.h:40
#define MATROSKA_ID_TRACKFLAGDEFAULT
Definition: matroska.h:99
uint64_t additional_id
Definition: matroskadec.c:362
EbmlList tag
Definition: matroskadec.c:279
uint64_t uid
Definition: matroskadec.c:206
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition: libcdio.c:153
MatroskaCluster current_cluster
Definition: matroskadec.c:348
static int matroska_parse_frame(MatroskaDemuxContext *matroska, MatroskaTrack *track, AVStream *st, uint8_t *data, int pkt_size, uint64_t timecode, uint64_t lace_duration, int64_t pos, int is_keyframe, uint8_t *additional, uint64_t additional_id, int additional_size, int64_t discard_padding)
Definition: matroskadec.c:2981
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: avcodec.h:3922
AVRational white_point[2]
CIE 1931 xy chromaticity coords of white point.
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown)
Definition: avformat.h:943
#define MATROSKA_ID_TAGTARGETS_ATTACHUID
Definition: matroska.h:207
int num
numerator
Definition: rational.h:44
int index
stream index in AVFormatContext
Definition: avformat.h:877
#define MATROSKA_ID_CLUSTERPOSITION
Definition: matroska.h:218
const char * b
Definition: vf_curves.c:109
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:230
#define MATROSKA_ID_FILEDATA
Definition: matroska.h:239
AVIndexEntry * index_entries
Only used if the format does not support seeking natively.
Definition: avformat.h:1085
#define EBML_ID_DOCTYPEREADVERSION
Definition: matroska.h:42
#define MATROSKA_ID_BLOCKREFERENCE
Definition: matroska.h:230
uint64_t flag_forced
Definition: matroskadec.c:215
int av_log2(unsigned v)
Definition: intmath.c:26
uint64_t max_size
Definition: matroskadec.c:111
#define MATROSKA_ID_TRACKTYPE
Definition: matroska.h:80
#define MATROSKA_ID_TAGTARGETS_CHAPTERUID
Definition: matroska.h:206
uint64_t flag_default
Definition: matroskadec.c:214
#define MATROSKA_ID_VIDEOCOLOR_RX
Definition: matroska.h:145
void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
Same behaviour av_fast_malloc but the buffer has additional AV_INPUT_BUFFER_PADDING_SIZE at the end w...
Definition: utils.c:120
#define MATROSKA_ID_VIDEOASPECTRATIO
Definition: matroska.h:125
static const EbmlSyntax matroska_track_encodings[]
Definition: matroskadec.c:480
#define MATROSKA_ID_MUXINGAPP
Definition: matroska.h:70
#define MATROSKA_ID_AUDIOCHANNELS
Definition: matroska.h:161
char * name
Definition: matroskadec.c:262
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:304
int has_primaries
Flag indicating whether the display primaries (and white point) are set.
size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
Put a string representing the codec tag codec_tag in buf.
Definition: utils.c:3102
int version
Definition: avisynth_c.h:629
discard all
Definition: avcodec.h:784
MatroskaLevel levels[EBML_MAX_DEPTH]
Definition: matroskadec.c:309
static AVPacket pkt
#define MATROSKA_ID_CUECLUSTERPOSITION
Definition: matroska.h:189
#define MATROSKA_ID_VIDEOCOLOR_LUMINANCEMAX
Definition: matroska.h:153
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:736
MatroskaTrackAudio audio
Definition: matroskadec.c:218
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
Definition: bytestream.h:87
#define MATROSKA_ID_VIDEOCOLORCHROMASITINGHORZ
Definition: matroska.h:135
uint64_t duration
Definition: matroskadec.c:358
static AVRational av_make_q(int num, int den)
Create a rational.
Definition: rational.h:53
const struct EbmlSyntax * n
Definition: matroskadec.c:94
#define MATROSKA_ID_EDITIONFLAGDEFAULT
Definition: matroska.h:253
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
Definition: bytestream.h:87
#define MATROSKA_ID_CLUSTERTIMECODE
Definition: matroska.h:217
#define EBML_ID_DOCTYPE
Definition: matroska.h:40
int strict_std_compliance
Allow non-standard and experimental extension.
Definition: avformat.h:1607
#define MATROSKA_ID_ENCODINGENCALGO
Definition: matroska.h:173
#define MATROSKA_ID_CHAPTERTIMEEND
Definition: matroska.h:246
enum AVColorSpace color_space
Definition: avcodec.h:4011
static const EbmlSyntax matroska_track_plane[]
Definition: matroskadec.c:485
#define MATROSKA_ID_TRACKCONTENTENCODINGS
Definition: matroska.h:105
int frame_size
Audio only.
Definition: avcodec.h:4043
Mastering display metadata (based on SMPTE-2086:2014).
Definition: avcodec.h:1518
#define AV_LZO_OUTPUT_FULL
decoded data did not fit into output buffer
Definition: lzo.h:39
union EbmlSyntax::@192 def
AVChapter * avpriv_new_chapter(AVFormatContext *s, int id, AVRational time_base, int64_t start, int64_t end, const char *title)
Add a new chapter.
Definition: utils.c:4189
#define EBML_VERSION
Definition: matroska.h:30
#define MATROSKA_ID_FILEDESC
Definition: matroska.h:236
Format I/O context.
Definition: avformat.h:1325
#define EBML_ID_CRC32
Definition: matroska.h:46
uint64_t def
Definition: matroskadec.c:265
UID uid
Definition: mxfenc.c:1820
void ff_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp)
Update cur_dts of all streams based on the given timestamp and AVStream.
Definition: utils.c:1814
#define MATROSKA_ID_TRACKCONTENTENCODING
Definition: matroska.h:106
static const EbmlSyntax matroska_cluster[]
Definition: matroskadec.c:684
#define MATROSKA_ID_CODECDOWNLOADURL
Definition: matroska.h:92
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
#define AV_WB64(p, v)
Definition: intreadwrite.h:433
int64_t end_timecode
Definition: matroskadec.c:225
static int webm_dash_manifest_read_header(AVFormatContext *s)
Definition: matroskadec.c:3742
static int ebml_read_sint(AVIOContext *pb, int size, int64_t *num)
Definition: matroskadec.c:872
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
#define AVFMT_FLAG_IGNIDX
Ignore index.
Definition: avformat.h:1438
Public dictionary API.
int ffio_limit(AVIOContext *s, int size)
Definition: utils.c:197
static const EbmlSyntax matroska_chapters[]
Definition: matroskadec.c:578
static MatroskaLevel1Element * matroska_find_level1_elem(MatroskaDemuxContext *matroska, uint32_t id)
Definition: matroskadec.c:1088
uint64_t pixel_height
Definition: matroskadec.c:169
void avio_wl32(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:346
uint8_t bits
Definition: crc.c:296
static av_always_inline double av_int2double(uint64_t i)
Reinterpret a 64-bit integer as a double.
Definition: intfloat.h:60
uint8_t
#define MATROSKA_ID_VIDEOCOLOR_BX
Definition: matroska.h:149
#define MATROSKA_ID_CHAPLANG
Definition: matroska.h:249
#define av_malloc(s)
uint64_t stereo_mode
Definition: matroskadec.c:173
MatroskaTrackOperation operation
Definition: matroskadec.c:219
MatroskaTrackVideo video
Definition: matroskadec.c:217
#define MATROSKA_ID_EDITIONFLAGORDERED
Definition: matroska.h:254
int width
Video only.
Definition: avcodec.h:3988
static CueDesc get_cue_desc(AVFormatContext *s, int64_t ts, int64_t cues_start)
Definition: matroskadec.c:3442
static const AVProfile aac_profiles[]
void * elem
Definition: matroskadec.c:100
AVOptions.
#define MATROSKA_ID_TRACKLANGUAGE
Definition: matroska.h:97
MatroskaTrackCompression compression
Definition: matroskadec.c:130
uint8_t * data
Definition: matroskadec.c:105
static int webm_dash_manifest_cues(AVFormatContext *s)
Definition: matroskadec.c:3678
const AVCodecTag ff_codec_movvideo_tags[]
Definition: isom.c:72
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:751
#define AVPALETTE_SIZE
Definition: pixfmt.h:32
uint64_t time
Definition: matroskadec.c:257
int ff_mkv_stereo3d_conv(AVStream *st, MatroskaVideoStereoModeType stereo_mode)
Definition: matroska.c:151
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:90
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: avcodec.h:1598
#define MATROSKA_ID_VIDEOPIXELCROPT
Definition: matroska.h:117
static const EbmlSyntax matroska_track_video_color[]
Definition: matroskadec.c:408
#define TRACK_NUMBER
Definition: matroska.h:342
#define MATROSKA_ID_TIMECODESCALE
Definition: matroska.h:66
static int matroska_aac_sri(int samplerate)
Definition: matroskadec.c:1682
enum AVStreamParseType need_parsing
Definition: avformat.h:1074
#define MATROSKA_ID_VIDEOCOLORCBSUBVERT
Definition: matroska.h:134
#define MATROSKA_ID_SIMPLEBLOCK
Definition: matroska.h:225
#define MATROSKA_ID_TAGTARGETS_TYPEVALUE
Definition: matroska.h:204
#define MATROSKA_ID_EDITIONFLAGHIDDEN
Definition: matroska.h:252
#define AV_LZO_OUTPUT_PADDING
Definition: lzo.h:47
static const EbmlSyntax matroska_segment[]
Definition: matroskadec.c:644
AVStream * stream
Definition: matroskadec.c:239
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:4065
#define MATROSKA_ID_CODECNAME
Definition: matroska.h:90
char * language
Definition: matroskadec.c:211
#define MATROSKA_ID_BLOCKMORE
Definition: matroska.h:222
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
Definition: bytestream.h:87
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1393
int64_t duration
Definition: movenc.c:63
#define MATROSKA_ID_CUERELATIVEPOSITION
Definition: matroska.h:190
#define MATROSKA_ID_AUDIOOUTSAMPLINGFREQ
Definition: matroska.h:158
#define MATROSKA_ID_VIDEOCOLOR
Definition: matroska.h:127
int initial_padding
Audio only.
Definition: avcodec.h:4051
static const EbmlSyntax matroska_segments[]
Definition: matroskadec.c:656
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:39
int flags
Flags modifying the (de)muxer behaviour.
Definition: avformat.h:1436
uint8_t * data
Definition: avcodec.h:1580
uint64_t typevalue
Definition: matroskadec.c:271
uint64_t codec_delay
Definition: matroskadec.c:221
static int matroska_parse_cluster_incremental(MatroskaDemuxContext *matroska)
Definition: matroskadec.c:3231
static void inflate(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord)
Definition: vf_neighbor.c:129
#define MATROSKA_ID_VIDEODISPLAYWIDTH
Definition: matroska.h:112
#define MATROSKA_ID_EDITIONUID
Definition: matroska.h:251
int ff_vorbis_comment(AVFormatContext *ms, AVDictionary **m, const uint8_t *buf, int size, int parse_picture)
#define MATROSKA_ID_BLOCKADDITIONS
Definition: matroska.h:221
uint32_t tag
Definition: movenc.c:1367
static const EbmlSyntax matroska_index[]
Definition: matroskadec.c:598
int64_t start_time_ns
Definition: matroskadec.c:3432
#define AVERROR_EOF
End of file.
Definition: error.h:55
#define MATROSKA_ID_CODECDECODEALL
Definition: matroska.h:93
#define MATROSKA_ID_ENCODINGENCRYPTION
Definition: matroska.h:171
enum AVCodecID id
Definition: internal.h:51
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
#define MATROSKA_ID_CUES
Definition: matroska.h:58
#define EBML_MAX_DEPTH
Definition: matroska.h:322
static int mkv_parse_video_color(AVStream *st, const MatroskaTrack *track)
Definition: matroskadec.c:1803
ptrdiff_t size
Definition: opengl_enc.c:101
uint64_t avio_rb64(AVIOContext *s)
Definition: aviobuf.c:818
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:511
int has_luminance
Flag indicating whether the luminance (min_ and max_) have been set.
static const uint8_t header[24]
Definition: sdr2.c:67
#define MATROSKA_ID_TRACKNUMBER
Definition: matroska.h:78
#define MATROSKA_ID_VIDEOCOLOR_WHITEY
Definition: matroska.h:152
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition: aviobuf.c:204
#define MATROSKA_ID_SEGMENTUID
Definition: matroska.h:72
uint64_t channel_layout
Audio only.
Definition: avcodec.h:4024
#define av_log(a,...)
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:598
int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb, AVCodecParameters *par, int size, int big_endian)
Definition: riffdec.c:88
#define AV_DISPOSITION_CAPTIONS
To specify text track kind (different from subtitles default).
Definition: avformat.h:858
EbmlList sub
Definition: matroskadec.c:266
static int matroska_parse_seekhead_entry(MatroskaDemuxContext *matroska, uint64_t pos)
Definition: matroskadec.c:1540
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition: avcodec.h:3951
#define FF_COMPLIANCE_UNOFFICIAL
Allow unofficial extensions.
Definition: avcodec.h:2870
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1612
static int matroska_parse_cluster(MatroskaDemuxContext *matroska)
Definition: matroskadec.c:3289
static int ebml_parse_nest(MatroskaDemuxContext *matroska, EbmlSyntax *syntax, void *data)
Definition: matroskadec.c:1044
#define MATROSKA_ID_CUEBLOCKNUMBER
Definition: matroska.h:192
#define MATROSKA_ID_TRACKUID
Definition: matroska.h:79
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
uint64_t display_height
Definition: matroskadec.c:167
#define U(x)
Definition: vp56_arith.h:37
#define MATROSKA_ID_ENCODINGORDER
Definition: matroska.h:164
#define MATROSKA_ID_VIDEOSTEREOMODE
Definition: matroska.h:123
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition: avpacket.c:86
#define AVINDEX_KEYFRAME
Definition: avformat.h:823
#define FILENAME
Definition: matroska.h:337
EbmlType type
Definition: matroskadec.c:87
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:189
#define MATROSKA_ID_VIDEOCOLOR_BY
Definition: matroska.h:150
#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:1539
#define MATROSKA_ID_BLOCKDURATION
Definition: matroska.h:229
int64_t end_offset
Definition: matroskadec.c:3435
#define EBML_ID_EBMLREADVERSION
Definition: matroska.h:37
int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags)
Get the index for a specific timestamp.
Definition: utils.c:1999
#define MATROSKA_ID_VIDEOCOLORMAXCLL
Definition: matroska.h:141
MatroskaMasteringMeta mastering_meta
Definition: matroskadec.c:161
#define MATROSKA_ID_VIDEOCOLOR_WHITEX
Definition: matroska.h:151
static const uint16_t mask[17]
Definition: lzw.c:38
FLAC (Free Lossless Audio Codec) decoder/demuxer common functions.
static int ebml_read_length(MatroskaDemuxContext *matroska, AVIOContext *pb, uint64_t *number)
Read a EBML length value.
Definition: matroskadec.c:840
av_default_item_name
AVChapter * chapter
Definition: matroskadec.c:248
#define AVERROR(e)
Definition: error.h:43
int64_t timestamp
Timestamp in AVStream.time_base units, preferably the time from which on correctly decoded frames are...
Definition: avformat.h:817
#define MATROSKA_ID_CLUSTER
Definition: matroska.h:62
#define MATROSKA_ID_VIDEOCOLORCHROMASITINGVERT
Definition: matroska.h:136
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
enum AVColorPrimaries color_primaries
Definition: avcodec.h:4009
#define MATROSKA_ID_FILEMIMETYPE
Definition: matroska.h:238
static const EbmlSyntax matroska_track_encoding[]
Definition: matroskadec.c:471
static int matroska_ebmlnum_uint(MatroskaDemuxContext *matroska, uint8_t *data, uint32_t size, uint64_t *num)
Definition: matroskadec.c:981
const char * r
Definition: vf_curves.c:107
uint64_t display_width
Definition: matroskadec.c:166
#define MATROSKA_ID_WRITINGAPP
Definition: matroska.h:69
static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data, int size, int64_t pos, uint64_t cluster_time, uint64_t block_duration, int is_keyframe, uint8_t *additional, uint64_t additional_id, int additional_size, int64_t cluster_pos, int64_t discard_padding)
Definition: matroskadec.c:3098
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
EbmlBin additional
Definition: matroskadec.c:363
const char *const ff_matroska_video_stereo_mode[MATROSKA_VIDEO_STEREOMODE_TYPE_NB]
Definition: matroska.c:127
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values. ...
Definition: dict.c:202
preferred ID for decoding MPEG audio layer 1, 2 or 3
Definition: avcodec.h:515
enum AVMediaType codec_type
General type of the encoded data.
Definition: avcodec.h:3918
#define MATROSKA_ID_TAGDEFAULT_BUG
Definition: matroska.h:201
enum AVCodecID id
Definition: matroska.h:318
#define MATROSKA_ID_VIDEOPIXELCROPR
Definition: matroska.h:119
#define MATROSKA_ID_TRACKPLANEUID
Definition: matroska.h:86
GLsizei GLsizei * length
Definition: opengl_enc.c:115
static av_always_inline av_const double round(double x)
Definition: libm.h:444
#define MATROSKA_ID_ENCODINGCOMPSETTINGS
Definition: matroska.h:169
#define EBML_ID_EBMLMAXIDLENGTH
Definition: matroska.h:38
#define MATROSKA_ID_CHAPTERFLAGHIDDEN
Definition: matroska.h:256
static const EbmlSyntax matroska_index_entry[]
Definition: matroskadec.c:592
static const EbmlSyntax matroska_chapter_entry[]
Definition: matroskadec.c:557
static const uint8_t offset[127][2]
Definition: vf_spp.c:92
char * av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size)
Encode data to base64 and null-terminate.
Definition: base64.c:138
AVRational avg_frame_rate
Average framerate.
Definition: avformat.h:954
uint64_t timecode
Definition: matroskadec.c:293
#define FFMAX(a, b)
Definition: common.h:94
AVRational max_luminance
Max luminance of mastering display (cd/m^2).
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
Definition: avstring.c:83
#define fail()
Definition: checkasm.h:81
static struct tm * gmtime_r(const time_t *clock, struct tm *result)
Definition: time_internal.h:26
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1586
int extradata_size
Size of the extradata content in bytes.
Definition: avcodec.h:3940
Only parse headers, do not repack.
Definition: avformat.h:807
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:589
static void ebml_free(EbmlSyntax *syntax, void *data)
Definition: matroskadec.c:1215
const CodecMime ff_mkv_mime_tags[]
Definition: matroska.c:111
int nb_elem
Definition: matroskadec.c:99
#define MATROSKA_ID_TAG
Definition: matroska.h:195
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction.
Definition: rational.c:35
int buf_size
Size of buf except extra allocated bytes.
Definition: avformat.h:462
char * av_asprintf(const char *fmt,...)
Definition: avstring.c:113
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:461
char * lang
Definition: matroskadec.c:264
static const EbmlSyntax matroska_seekhead_entry[]
Definition: matroskadec.c:633
#define AV_DISPOSITION_FORCED
Track should be used during playback by default.
Definition: avformat.h:841
#define MATROSKA_ID_ENCODINGSIGHASHALGO
Definition: matroska.h:176
static const struct TransferCharacteristics transfer_characteristics[AVCOL_TRC_NB]
uint64_t skip_to_timecode
Definition: matroskadec.c:337
Definition: dct.c:52
int block_align
Audio only.
Definition: avcodec.h:4039
static int matroska_read_header(AVFormatContext *s)
Definition: matroskadec.c:2386
static void matroska_parse_cues(MatroskaDemuxContext *matroska)
Definition: matroskadec.c:1652
static const EbmlSyntax matroska_mastering_meta[]
Definition: matroskadec.c:394
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:243
static void matroska_execute_seekhead(MatroskaDemuxContext *matroska)
Definition: matroskadec.c:1585
#define MATROSKA_ID_VIDEOCOLOR_LUMINANCEMIN
Definition: matroska.h:154
#define dynarray_add(tab, nb_ptr, elem)
Definition: internal.h:168
uint64_t start
Definition: matroskadec.c:243
int ff_alloc_extradata(AVCodecParameters *par, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0...
Definition: utils.c:3107
#define EBML_ID_EBMLVERSION
Definition: matroska.h:36
char filename[1024]
input or output filename
Definition: avformat.h:1401
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
Definition: avassert.h:53
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
Definition: mathematics.c:129
#define AV_BASE64_SIZE(x)
Calculate the output size needed to base64-encode x bytes to a null-terminated string.
Definition: base64.h:66
#define AV_TIME_BASE
Internal time base represented as integer.
Definition: avutil.h:246
static const EbmlSyntax matroska_clusters[]
Definition: matroskadec.c:693
#define FFMIN(a, b)
Definition: common.h:96
#define MATROSKA_ID_TAGTARGETS
Definition: matroska.h:202
#define MATROSKA_ID_VIDEOCOLORBITSPERCHANNEL
Definition: matroska.h:130
const AVCodecTag ff_codec_bmp_tags[]
Definition: riff.c:32
AVPacket ** packets
Definition: matroskadec.c:329
#define MATROSKA_VIDEO_STEREO_PLANE_COUNT
Definition: matroska.h:324
uint8_t interlaced
Definition: mxfenc.c:1823
#define MATROSKA_ID_TAGNAME
Definition: matroska.h:197
AVRational min_luminance
Min luminance of mastering display (cd/m^2).
#define MATROSKA_ID_TRACKTIMECODESCALE
Definition: matroska.h:107
static int read_probe(AVProbeData *pd)
Definition: jvdec.c:55
static int ebml_parse_elem(MatroskaDemuxContext *matroska, EbmlSyntax *syntax, void *data)
Definition: matroskadec.c:1123
static int ebml_read_num(MatroskaDemuxContext *matroska, AVIOContext *pb, int max_size, uint64_t *number)
Definition: matroskadec.c:794
static const EbmlSyntax matroska_track_combine_planes[]
Definition: matroskadec.c:491
#define MATROSKA_ID_CHAPTERFLAGENABLED
Definition: matroska.h:257
uint64_t id_length
Definition: matroskadec.c:112
static MatroskaTrack * matroska_find_track_by_num(MatroskaDemuxContext *matroska, int num)
Definition: matroskadec.c:1290
#define CLUSTER_KEYFRAME
Definition: matroska.h:340
#define MATROSKA_ID_SIMPLETAG
Definition: matroska.h:196
uint64_t doctype_version
Definition: matroskadec.c:114
internal header for RIFF based (de)muxers do NOT include this in end user applications ...
#define MATROSKA_ID_TRACKMAXCACHE
Definition: matroska.h:103
#define DURATION
Definition: matroska.h:339
int data_offset
Definition: matroskadec.c:89
#define MATROSKA_ID_CHAPTERPHYSEQUIV
Definition: matroska.h:258
static int matroska_read_close(AVFormatContext *s)
Definition: matroskadec.c:3414
#define FLAC_STREAMINFO_SIZE
Definition: flac.h:34
EbmlBin codec_priv
Definition: matroskadec.c:210
static int ebml_read_ascii(AVIOContext *pb, int size, char **str)
Definition: matroskadec.c:914
static const EbmlSyntax ebml_syntax[]
Definition: matroskadec.c:378
static int matroska_decode_buffer(uint8_t **buf, int *buf_size, MatroskaTrack *track)
Definition: matroskadec.c:1304
#define MATROSKA_ID_CHAPTERATOM
Definition: matroska.h:244
#define OFFSET(x)
Definition: matroskadec.c:3781
int av_lzo1x_decode(void *out, int *outlen, const void *in, int *inlen)
Decodes LZO 1x compressed data.
Definition: lzo.c:134
#define AV_EF_EXPLODE
abort decoding on minor error detection
Definition: avcodec.h:2947
int n
Definition: avisynth_c.h:547
AVDictionary * metadata
Definition: avformat.h:945
uint8_t * av_stream_new_side_data(AVStream *stream, enum AVPacketSideDataType type, int size)
Allocate new information from stream.
Definition: utils.c:4954
static const EbmlSyntax matroska_chapter[]
Definition: matroskadec.c:569
enum AVColorRange color_range
Video only.
Definition: avcodec.h:4008
Opaque data information usually sparse.
Definition: avutil.h:197
#define MATROSKA_ID_VIDEOCOLORSPACE
Definition: matroska.h:126
#define MATROSKA_ID_CHAPTERS
Definition: matroska.h:63
static int matroska_probe(AVProbeData *p)
Definition: matroskadec.c:1248
#define EBML_ID_VOID
Definition: matroska.h:45
#define src
Definition: vp9dsp.c:530
static void mkv_stereo_mode_display_mul(int stereo_mode, int *h_width, int *h_height)
Definition: matroskadec.c:1778
static void matroska_convert_tag(AVFormatContext *s, EbmlList *list, AVDictionary **metadata, char *prefix)
Definition: matroskadec.c:1440
uint64_t max_block_additional_id
Definition: matroskadec.c:227
#define MATROSKA_ID_VIDEOCOLORCHROMASUBVERT
Definition: matroska.h:132
const uint8_t ff_log2_tab[256]
Definition: log2_tab.c:23
#define MATROSKA_ID_AUDIOSAMPLINGFREQ
Definition: matroska.h:157
#define FF_ARRAY_ELEMS(a)
#define AV_DISPOSITION_ATTACHED_PIC
The stream is stored in the file as an attached picture/"cover art" (e.g.
Definition: avformat.h:851
double f
Definition: matroskadec.c:92
#define MATROSKA_ID_TRACKMINCACHE
Definition: matroska.h:102
the normal 2^n-1 "JPEG" YUV ranges
Definition: pixfmt.h:457
static void matroska_metadata_creation_time(AVDictionary **metadata, int64_t date_utc)
Definition: matroskadec.c:1692
static int matroska_parse_flac(AVFormatContext *s, MatroskaTrack *track, int *offset)
Definition: matroskadec.c:1703
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:638
static int matroska_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: matroskadec.c:3334
Stream structure.
Definition: avformat.h:876
static int matroska_parse_wavpack(MatroskaTrack *track, uint8_t *src, uint8_t **pdst, int *size)
Definition: matroskadec.c:2785
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
#define MATROSKA_ID_TRACKPLANETYPE
Definition: matroska.h:87
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
static const EbmlSyntax matroska_tags[]
Definition: matroskadec.c:628
EbmlList encodings
Definition: matroskadec.c:220
#define CUES_END
Definition: matroska.h:336
char * codec_id
Definition: matroskadec.c:209
#define AV_DISPOSITION_DEFAULT
Definition: avformat.h:829
static const EbmlSyntax matroska_track_operation[]
Definition: matroskadec.c:496
static const EbmlSyntax matroska_cluster_incremental[]
Definition: matroskadec.c:716
int64_t current_cluster_pos
Definition: matroskadec.c:347
#define MATROSKA_ID_VIDEOPIXELCROPB
Definition: matroska.h:116
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
#define MATROSKA_ID_VIDEOCOLORMATRIXCOEFF
Definition: matroska.h:129
static int matroska_parse_tracks(AVFormatContext *s)
Definition: matroskadec.c:1893
#define AV_DISPOSITION_DESCRIPTIONS
Definition: avformat.h:859
int ff_get_qtpalette(int codec_id, AVIOContext *pb, uint32_t *palette)
Retrieve the palette (or "color table" in QuickTime terms), either from the video sample description...
Definition: qtpalette.c:31
#define MATROSKA_ID_TRACKFLAGFORCED
Definition: matroska.h:100
#define MATROSKA_ID_TAGS
Definition: matroska.h:59
#define MATROSKA_ID_VIDEOCOLORPRIMARIES
Definition: matroska.h:140
const AVCodecTag ff_codec_movaudio_tags[]
Definition: isom.c:295
static int ebml_read_master(MatroskaDemuxContext *matroska, uint64_t length)
Definition: matroskadec.c:959
#define MATROSKA_ID_TAGDEFAULT
Definition: matroska.h:200
#define BANDWIDTH
Definition: matroska.h:338
#define MATROSKA_ID_SEEKID
Definition: matroska.h:213
char * av_strdup(const char *s)
Duplicate the string s.
Definition: mem.c:267
static const EbmlSyntax matroska_track_encoding_compression[]
Definition: matroskadec.c:455
AVIOContext * pb
I/O context.
Definition: avformat.h:1367
static const EbmlSyntax matroska_track[]
Definition: matroskadec.c:501
#define MATROSKA_ID_ENCODINGCOMPALGO
Definition: matroska.h:168
#define MATROSKA_ID_BLOCK
Definition: matroska.h:228
#define MATROSKA_ID_INFO
Definition: matroska.h:56
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:563
#define MATROSKA_ID_TAGTARGETS_TRACKUID
Definition: matroska.h:205
static const EbmlSyntax ebml_header[]
Definition: matroskadec.c:367
#define CUE_TIMESTAMPS
Definition: matroska.h:341
#define MATROSKA_ID_TAGLANG
Definition: matroska.h:199
uint64_t pixel_width
Definition: matroskadec.c:168
#define MATROSKA_ID_TRACKCOMBINEPLANES
Definition: matroska.h:84
static const AVClass webm_dash_class
Definition: matroskadec.c:3787
int64_t start_offset
Definition: matroskadec.c:3434
#define MATROSKA_ID_TRACKFLAGENABLED
Definition: matroska.h:98
#define MATROSKA_ID_TRACKS
Definition: matroska.h:57
void * buf
Definition: avisynth_c.h:553
#define MATROSKA_ID_TRACKPLANE
Definition: matroska.h:85
Data found in BlockAdditional element of matroska container.
Definition: avcodec.h:1487
#define MATROSKA_ID_VIDEOCOLORCHROMASUBHORZ
Definition: matroska.h:131
GLint GLenum type
Definition: opengl_enc.c:105
#define MATROSKA_ID_TRACKNAME
Definition: matroska.h:96
uint64_t start
Definition: matroskadec.c:288
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:69
int nb_index_entries
Definition: avformat.h:1087
#define MATROSKA_ID_SEEKENTRY
Definition: matroska.h:210
Describe the class of an AVClass context structure.
Definition: log.h:67
EbmlList pos
Definition: matroskadec.c:258
uint64_t u
Definition: matroskadec.c:91
#define MATROSKA_ID_CHAPCOUNTRY
Definition: matroska.h:250
#define AV_WB32(p, v)
Definition: intreadwrite.h:419
#define MATROSKA_ID_EDITIONENTRY
Definition: matroska.h:243
int index
Definition: gxfenc.c:89
static const EbmlSyntax matroska_blockadditions[]
Definition: matroskadec.c:667
#define MATROSKA_ID_BLOCKGROUP
Definition: matroska.h:220
#define MATROSKA_ID_VIDEOPIXELHEIGHT
Definition: matroska.h:115
rational number numerator/denominator
Definition: rational.h:43
#define isnan(x)
Definition: libm.h:340
Copyright (c) 2016 Neil Birkbeck neil.birkbeck@gmail.com
#define MATROSKA_ID_CUEDURATION
Definition: matroska.h:191
AVStream * stream
Definition: matroskadec.c:224
static int matroska_parse_laces(MatroskaDemuxContext *matroska, uint8_t **buf, int *buf_size, int type, uint32_t **lace_buf, int *laces)
Definition: matroskadec.c:2599
#define MATROSKA_ID_CUETIME
Definition: matroska.h:184
#define AV_OPT_FLAG_DECODING_PARAM
a generic parameter which can be set by the user for demuxing or decoding
Definition: opt.h:276
#define MATROSKA_ID_ENCODINGSIGALGO
Definition: matroska.h:175
static int matroska_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: matroskadec.c:3319
Recommmends skipping the specified number of samples.
Definition: avcodec.h:1452
static int get_qt_codec(MatroskaTrack *track, uint32_t *fourcc, enum AVCodecID *codec_id)
Definition: matroskadec.c:1866
static int ebml_parse(MatroskaDemuxContext *matroska, EbmlSyntax *syntax, void *data)
Definition: matroskadec.c:1028
static av_always_inline void flac_parse_block_header(const uint8_t *block_header, int *last, int *type, int *size)
Parse the metadata block parameters from the header.
Definition: flac.h:143
#define MATROSKA_ID_ENCODINGSIGKEYID
Definition: matroska.h:177
#define MATROSKA_ID_VIDEOCOLORTRANSFERCHARACTERISTICS
Definition: matroska.h:138
#define MATROSKA_ID_TITLE
Definition: matroska.h:68
#define snprintf
Definition: snprintf.h:34
#define AVPROBE_SCORE_EXTENSION
score for file extension
Definition: avformat.h:469
AVFormatContext * ctx
Definition: matroskadec.c:305
#define MATROSKA_ID_TRACKVIDEO
Definition: matroska.h:81
int64_t discard_padding
Definition: matroskadec.c:364
int size
Definition: matroskadec.c:104
static const EbmlSyntax matroska_attachments[]
Definition: matroskadec.c:545
int error
contains the error code or 0 if no error happened
Definition: avio.h:228
static const EbmlSyntax matroska_clusters_incremental[]
Definition: matroskadec.c:725
This structure contains the data a format has to probe a file.
Definition: avformat.h:459
#define MATROSKA_ID_VIDEOCOLORMASTERINGMETA
Definition: matroska.h:144
static int ebml_parse_id(MatroskaDemuxContext *matroska, EbmlSyntax *syntax, uint32_t id, void *data)
Definition: matroskadec.c:1011
int list_elem_size
Definition: matroskadec.c:88
size_t av_strlcat(char *dst, const char *src, size_t size)
Append the string src to the string dst, but to a total length of no more than size - 1 bytes...
Definition: avstring.c:93
static const EbmlSyntax matroska_cluster_incremental_parsing[]
Definition: matroskadec.c:702
AVRational display_primaries[3][2]
CIE 1931 xy chromaticity coords of color primaries (r, g, b order).
mfxU16 profile
Definition: qsvenc.c:42
uint64_t field_order
Definition: matroskadec.c:172
#define AVPALETTE_COUNT
Definition: pixfmt.h:33
int seek_preroll
Audio only.
Definition: avcodec.h:4062
#define MATROSKA_ID_VIDEOFRAMERATE
Definition: matroska.h:111
int64_t end_time_ns
Definition: matroskadec.c:3433
static av_const int sign_extend(int val, unsigned bits)
Definition: mathops.h:139
#define MATROSKA_ID_ATTACHMENTS
Definition: matroska.h:61
static const EbmlSyntax matroska_chapter_display[]
Definition: matroskadec.c:550
#define MATROSKA_ID_TRACKOPERATION
Definition: matroska.h:83
int64_t pos
Definition: matroskadec.c:106
static const EbmlSyntax matroska_blockmore[]
Definition: matroskadec.c:661
#define MATROSKA_ID_CHAPTERDISPLAY
Definition: matroska.h:247
static int flags
Definition: cpu.c:47
static const EbmlSyntax matroska_track_audio[]
Definition: matroskadec.c:447
MatroskaLevel1Element level1_elems[64]
Definition: matroskadec.c:343
uint8_t level
Definition: svq3.c:193
#define MATROSKA_ID_FILENAME
Definition: matroska.h:237
#define MATROSKA_ID_BLOCKADDITIONAL
Definition: matroska.h:224
const int avpriv_mpeg4audio_sample_rates[16]
Definition: mpeg4audio.c:57
const AVMetadataConv ff_mkv_metadata_conv[]
Definition: matroska.c:121
#define MATROSKA_ID_CODECID
Definition: matroska.h:88
#define MATROSKA_ID_VIDEOFIELDORDER
Definition: matroska.h:122
int sample_rate
Audio only.
Definition: avcodec.h:4032
#define MATROSKA_ID_VIDEOALPHAMODE
Definition: matroska.h:124
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:471
full parsing and repack
Definition: avformat.h:806
int64_t reference
Definition: matroskadec.c:359
void ff_rm_reorder_sipr_data(uint8_t *buf, int sub_packet_h, int framesize)
Perform 4-bit block reordering for SIPR data.
Definition: rmsipr.c:41
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_RB64
Definition: bytestream.h:87
Main libavformat public API header.
uint64_t buf_timecode
Definition: matroskadec.c:191
#define MATROSKA_ID_ENCODINGENCAESSETTINGS
Definition: matroska.h:172
uint64_t num
Definition: matroskadec.c:205
attribute_deprecated int64_t convergence_duration
Definition: avcodec.h:1609
#define MATROSKA_ID_CUETRACK
Definition: matroska.h:188
EbmlType
Definition: matroskadec.c:70
#define MATROSKA_ID_SEEKPOSITION
Definition: matroska.h:214
static int matroska_resync(MatroskaDemuxContext *matroska, int64_t last_pos)
Definition: matroskadec.c:738
#define MATROSKA_ID_CODECDELAY
Definition: matroska.h:94
#define FF_DISABLE_DEPRECATION_WARNINGS
Definition: internal.h:80
#define MATROSKA_ID_CHAPTERTIMESTART
Definition: matroska.h:245
double time_scale
Definition: matroskadec.c:212
#define MATROSKA_ID_VIDEOCOLORRANGE
Definition: matroska.h:137
if(ret< 0)
Definition: vf_mcdeint.c:282
int ffio_init_context(AVIOContext *s, unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int(*read_packet)(void *opaque, uint8_t *buf, int buf_size), int(*write_packet)(void *opaque, uint8_t *buf, int buf_size), int64_t(*seek)(void *opaque, int64_t offset, int whence))
Definition: aviobuf.c:81
void * av_realloc(void *ptr, size_t size)
Allocate or reallocate a block of memory.
Definition: mem.c:145
char * string
Definition: matroskadec.c:263
static const EbmlSyntax matroska_seekhead[]
Definition: matroskadec.c:639
static double c[64]
int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, int flags)
Convenience wrapper for av_dict_set that converts the value to a string and stores it...
Definition: dict.c:146
int error_recognition
Error recognition; higher values will detect more errors but may misdetect some more or less valid pa...
Definition: avformat.h:1566
int disposition
AV_DISPOSITION_* bit field.
Definition: avformat.h:934
#define AV_WL16(p, v)
Definition: intreadwrite.h:412
char * doctype
Definition: matroskadec.c:113
static unsigned bit_depth(uint64_t mask)
Definition: af_astats.c:142
void * av_realloc_array(void *ptr, size_t nmemb, size_t size)
Definition: mem.c:208
void av_init_packet(AVPacket *pkt)
Initialize optional fields of a packet with default values.
Definition: avpacket.c:33
int den
denominator
Definition: rational.h:45
#define MATROSKA_ID_ENCODINGSIGNATURE
Definition: matroska.h:178
#define MATROSKA_ID_SEGMENT
Definition: matroska.h:53
uint32_t id
Definition: matroskadec.c:86
unsigned bps
Definition: movenc.c:1368
MatroskaTagTarget target
Definition: matroskadec.c:278
void ff_metadata_conv(AVDictionary **pm, const AVMetadataConv *d_conv, const AVMetadataConv *s_conv)
Definition: metadata.c:26
The optional settings (rendering instructions) that immediately follow the timestamp specifier of a W...
Definition: avcodec.h:1498
#define MKBETAG(a, b, c, d)
Definition: common.h:343
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
Definition: avcodec.h:731
#define MATROSKA_ID_SEEKHEAD
Definition: matroska.h:60
static int matroska_parse_webvtt(MatroskaDemuxContext *matroska, MatroskaTrack *track, AVStream *st, uint8_t *data, int data_len, uint64_t timecode, uint64_t duration, int64_t pos)
Definition: matroskadec.c:2865
#define EBML_ID_HEADER
Definition: matroska.h:33
int skip_to_keyframe
Indicates that everything up to the next keyframe should be discarded.
Definition: avformat.h:1125
#define MATROSKA_ID_ENCODINGCOMPRESSION
Definition: matroska.h:167
#define MATROSKA_ID_CLUSTERPREVSIZE
Definition: matroska.h:219
#define av_free(p)
char * value
Definition: dict.h:87
int eof_reached
true if eof reached
Definition: avio.h:222
#define FF_ENABLE_DEPRECATION_WARNINGS
Definition: internal.h:81
#define MATROSKA_ID_POINTENTRY
Definition: matroska.h:181
int len
#define MATROSKA_ID_FILEUID
Definition: matroska.h:240
static uint8_t tmp[8]
Definition: des.c:38
#define MATROSKA_ID_VIDEOPIXELCROPL
Definition: matroska.h:118
static const EbmlSyntax matroska_index_pos[]
Definition: matroskadec.c:583
void * priv_data
Format private data.
Definition: avformat.h:1353
uint64_t non_simple
Definition: matroskadec.c:360
#define MATROSKA_ID_CHAPTERUID
Definition: matroska.h:255
static const EbmlSyntax matroska_attachment[]
Definition: matroskadec.c:536
static int ebml_read_binary(AVIOContext *pb, int length, EbmlBin *bin)
Definition: matroskadec.c:937
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition: avcodec.h:3964
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: avcodec.h:3936
#define MATROSKA_ID_VIDEOCOLORMAXFALL
Definition: matroska.h:142
#define MATROSKA_ID_VIDEODISPLAYUNIT
Definition: matroska.h:120
int channels
Audio only.
Definition: avcodec.h:4028
static int ebml_read_uint(AVIOContext *pb, int size, uint64_t *num)
Definition: matroskadec.c:853
#define MATROSKA_ID_TRACKMAXBLKADDID
Definition: matroska.h:108
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed...
Definition: avcodec.h:1579
#define EBML_ID_EBMLMAXSIZELENGTH
Definition: matroska.h:39
int64_t duration
Duration of the stream, in AV_TIME_BASE fractional seconds.
Definition: avformat.h:1420
MatroskaTrackEncryption encryption
Definition: matroskadec.c:131
#define MATROSKA_ID_CHAPSTRING
Definition: matroska.h:248
#define MATROSKA_ID_VIDEOCOLORCBSUBHORZ
Definition: matroska.h:133
#define av_freep(p)
void INT64 start
Definition: avisynth_c.h:553
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:660
#define MATROSKA_ID_TAGSTRING
Definition: matroska.h:198
static const AVOption options[]
Definition: matroskadec.c:3782
const CodecMime ff_mkv_image_mime_tags[]
Definition: matroska.c:102
AVCodecParameters * codecpar
Definition: avformat.h:1006
#define av_malloc_array(a, b)
int avio_feof(AVIOContext *s)
feof() equivalent for AVIOContext.
Definition: aviobuf.c:328
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition: avcodec.h:3926
static int buffer_size_after_time_downloaded(int64_t time_ns, double search_sec, int64_t bps, double min_buffer, double *buffer, double *sec_to_download, AVFormatContext *s, int64_t cues_start)
Definition: matroskadec.c:3510
uint64_t transfer_characteristics
Definition: matroskadec.c:157
static int ebml_read_float(AVIOContext *pb, int size, double *num)
Definition: matroskadec.c:896
#define MATROSKA_ID_DURATION
Definition: matroska.h:67
uint64_t length
Definition: matroskadec.c:289
static int matroska_aac_profile(char *codec_id)
Definition: matroskadec.c:1671
uint8_t * av_packet_new_side_data(AVPacket *pkt, enum AVPacketSideDataType type, int size)
Allocate new information of a packet.
Definition: avpacket.c:313
int stream_index
Definition: avcodec.h:1582
static const EbmlSyntax matroska_track_encoding_encryption[]
Definition: matroskadec.c:461
#define EBML_ID_DOCTYPEVERSION
Definition: matroska.h:41
static void matroska_clear_queue(MatroskaDemuxContext *matroska)
Definition: matroskadec.c:2585
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avformat.h:913
#define CUES_START
Definition: matroska.h:335
#define MKTAG(a, b, c, d)
Definition: common.h:342
enum AVDiscard discard
Selects which packets can be discarded at will and do not need to be demuxed.
Definition: avformat.h:936
AVRational r_frame_rate
Real base framerate of the stream.
Definition: avformat.h:1101
#define MATROSKA_ID_ATTACHEDFILE
Definition: matroska.h:235
#define MATROSKA_ID_VIDEOCOLOR_GY
Definition: matroska.h:148
EbmlList blocks
Definition: matroskadec.c:294
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:87
This structure stores compressed data.
Definition: avcodec.h:1557
unsigned int fourcc
#define MATROSKA_ID_CODECSTATE
Definition: matroska.h:231
uint64_t default_duration
Definition: matroskadec.c:213
static const EbmlSyntax matroska_tag[]
Definition: matroskadec.c:622
AVInputFormat ff_webm_dash_manifest_demuxer
Definition: matroskadec.c:3807
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:252
#define MATROSKA_ID_VIDEOCOLOR_RY
Definition: matroska.h:146
#define MATROSKA_ID_CODECINFOURL
Definition: matroska.h:91
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1573
#define MATROSKA_ID_VIDEOPIXELWIDTH
Definition: matroska.h:114
static void matroska_add_index_entries(MatroskaDemuxContext *matroska)
Definition: matroskadec.c:1619
AVPacket attached_pic
For streams with AV_DISPOSITION_ATTACHED_PIC disposition, this packet will contain the attached pictu...
Definition: avformat.h:963
#define MATROSKA_ID_TRACKAUDIO
Definition: matroska.h:82
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:240
GLuint buffer
Definition: opengl_enc.c:102
#define av_unused
Definition: attributes.h:126
#define MATROSKA_ID_ENCODINGSCOPE
Definition: matroska.h:165
const CodecTags ff_mkv_codec_tags[]
Definition: matroska.c:29
#define MATROSKA_ID_ENCODINGENCKEYID
Definition: matroska.h:174
#define AV_WL32(p, v)
Definition: intreadwrite.h:426
#define MATROSKA_ID_DISCARDPADDING
Definition: matroska.h:232
const char * name
Definition: opengl_enc.c:103
static int is_ebml_id_valid(uint32_t id)
Definition: matroskadec.c:1075
uint32_t palette[AVPALETTE_COUNT]
Definition: matroskadec.c:229
static int64_t webm_dash_manifest_compute_bandwidth(AVFormatContext *s, int64_t cues_start)
Definition: matroskadec.c:3591
static const char *const matroska_doctypes[]
Definition: matroskadec.c:734
uint64_t attachuid
Definition: matroskadec.c:274