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