Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / 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 #if CONFIG_BZLIB
36 #include <bzlib.h>
37 #endif
38 #if CONFIG_ZLIB
39 #include <zlib.h>
40 #endif
41
42 #include "libavutil/avstring.h"
43 #include "libavutil/base64.h"
44 #include "libavutil/dict.h"
45 #include "libavutil/intfloat.h"
46 #include "libavutil/intreadwrite.h"
47 #include "libavutil/lzo.h"
48 #include "libavutil/mathematics.h"
49
50 #include "libavcodec/bytestream.h"
51 #include "libavcodec/flac.h"
52 #include "libavcodec/mpeg4audio.h"
53
54 #include "avformat.h"
55 #include "avio_internal.h"
56 #include "internal.h"
57 #include "isom.h"
58 #include "matroska.h"
59 #include "oggdec.h"
60 /* For ff_codec_get_id(). */
61 #include "riff.h"
62 #if CONFIG_SIPR_DECODER
63 #include "rmsipr.h"
64 #endif
65
66 static int matroska_read_close(AVFormatContext *s);
67
68 typedef enum {
69     EBML_NONE,
70     EBML_UINT,
71     EBML_FLOAT,
72     EBML_STR,
73     EBML_UTF8,
74     EBML_BIN,
75     EBML_NEST,
76     EBML_PASS,
77     EBML_STOP,
78     EBML_SINT,
79     EBML_TYPE_COUNT
80 } EbmlType;
81
82 typedef const struct EbmlSyntax {
83     uint32_t id;
84     EbmlType type;
85     int list_elem_size;
86     int data_offset;
87     union {
88         uint64_t    u;
89         double      f;
90         const char *s;
91         const struct EbmlSyntax *n;
92     } def;
93 } EbmlSyntax;
94
95 typedef struct {
96     int nb_elem;
97     void *elem;
98 } EbmlList;
99
100 typedef struct {
101     int      size;
102     uint8_t *data;
103     int64_t  pos;
104 } EbmlBin;
105
106 typedef struct {
107     uint64_t version;
108     uint64_t max_size;
109     uint64_t id_length;
110     char    *doctype;
111     uint64_t doctype_version;
112 } Ebml;
113
114 typedef struct {
115     uint64_t algo;
116     EbmlBin  settings;
117 } MatroskaTrackCompression;
118
119 typedef struct {
120     uint64_t algo;
121     EbmlBin  key_id;
122 } MatroskaTrackEncryption;
123
124 typedef struct {
125     uint64_t scope;
126     uint64_t type;
127     MatroskaTrackCompression compression;
128     MatroskaTrackEncryption encryption;
129 } MatroskaTrackEncoding;
130
131 typedef struct {
132     double   frame_rate;
133     uint64_t display_width;
134     uint64_t display_height;
135     uint64_t pixel_width;
136     uint64_t pixel_height;
137     EbmlBin color_space;
138     uint64_t stereo_mode;
139     uint64_t alpha_mode;
140 } MatroskaTrackVideo;
141
142 typedef struct {
143     double   samplerate;
144     double   out_samplerate;
145     uint64_t bitdepth;
146     uint64_t channels;
147
148     /* real audio header (extracted from extradata) */
149     int      coded_framesize;
150     int      sub_packet_h;
151     int      frame_size;
152     int      sub_packet_size;
153     int      sub_packet_cnt;
154     int      pkt_cnt;
155     uint64_t buf_timecode;
156     uint8_t *buf;
157 } MatroskaTrackAudio;
158
159 typedef struct {
160     uint64_t uid;
161     uint64_t type;
162 } MatroskaTrackPlane;
163
164 typedef struct {
165     EbmlList combine_planes;
166 } MatroskaTrackOperation;
167
168 typedef struct {
169     uint64_t num;
170     uint64_t uid;
171     uint64_t type;
172     char    *name;
173     char    *codec_id;
174     EbmlBin  codec_priv;
175     char    *language;
176     double time_scale;
177     uint64_t default_duration;
178     uint64_t flag_default;
179     uint64_t flag_forced;
180     uint64_t seek_preroll;
181     MatroskaTrackVideo video;
182     MatroskaTrackAudio audio;
183     MatroskaTrackOperation operation;
184     EbmlList encodings;
185     uint64_t codec_delay;
186
187     AVStream *stream;
188     int64_t end_timecode;
189     int ms_compat;
190     uint64_t max_block_additional_id;
191 } MatroskaTrack;
192
193 typedef struct {
194     uint64_t uid;
195     char *filename;
196     char *mime;
197     EbmlBin bin;
198
199     AVStream *stream;
200 } MatroskaAttachment;
201
202 typedef struct {
203     uint64_t start;
204     uint64_t end;
205     uint64_t uid;
206     char    *title;
207
208     AVChapter *chapter;
209 } MatroskaChapter;
210
211 typedef struct {
212     uint64_t track;
213     uint64_t pos;
214 } MatroskaIndexPos;
215
216 typedef struct {
217     uint64_t time;
218     EbmlList pos;
219 } MatroskaIndex;
220
221 typedef struct {
222     char *name;
223     char *string;
224     char *lang;
225     uint64_t def;
226     EbmlList sub;
227 } MatroskaTag;
228
229 typedef struct {
230     char    *type;
231     uint64_t typevalue;
232     uint64_t trackuid;
233     uint64_t chapteruid;
234     uint64_t attachuid;
235 } MatroskaTagTarget;
236
237 typedef struct {
238     MatroskaTagTarget target;
239     EbmlList tag;
240 } MatroskaTags;
241
242 typedef struct {
243     uint64_t id;
244     uint64_t pos;
245 } MatroskaSeekhead;
246
247 typedef struct {
248     uint64_t start;
249     uint64_t length;
250 } MatroskaLevel;
251
252 typedef struct {
253     uint64_t timecode;
254     EbmlList blocks;
255 } MatroskaCluster;
256
257 typedef struct {
258     AVFormatContext *ctx;
259
260     /* EBML stuff */
261     int num_levels;
262     MatroskaLevel levels[EBML_MAX_DEPTH];
263     int level_up;
264     uint32_t current_id;
265
266     uint64_t time_scale;
267     double   duration;
268     char    *title;
269     char    *muxingapp;
270     EbmlBin date_utc;
271     EbmlList tracks;
272     EbmlList attachments;
273     EbmlList chapters;
274     EbmlList index;
275     EbmlList tags;
276     EbmlList seekhead;
277
278     /* byte position of the segment inside the stream */
279     int64_t segment_start;
280
281     /* the packet queue */
282     AVPacket **packets;
283     int num_packets;
284     AVPacket *prev_pkt;
285
286     int done;
287
288     /* What to skip before effectively reading a packet. */
289     int skip_to_keyframe;
290     uint64_t skip_to_timecode;
291
292     /* File has a CUES element, but we defer parsing until it is needed. */
293     int cues_parsing_deferred;
294
295     int current_cluster_num_blocks;
296     int64_t current_cluster_pos;
297     MatroskaCluster current_cluster;
298
299     /* File has SSA subtitles which prevent incremental cluster parsing. */
300     int contains_ssa;
301 } MatroskaDemuxContext;
302
303 typedef struct {
304     uint64_t duration;
305     int64_t  reference;
306     uint64_t non_simple;
307     EbmlBin  bin;
308     uint64_t additional_id;
309     EbmlBin  additional;
310     int64_t discard_padding;
311 } MatroskaBlock;
312
313 static EbmlSyntax ebml_header[] = {
314     { EBML_ID_EBMLREADVERSION,    EBML_UINT, 0, offsetof(Ebml, version),         { .u = EBML_VERSION } },
315     { EBML_ID_EBMLMAXSIZELENGTH,  EBML_UINT, 0, offsetof(Ebml, max_size),        { .u = 8 } },
316     { EBML_ID_EBMLMAXIDLENGTH,    EBML_UINT, 0, offsetof(Ebml, id_length),       { .u = 4 } },
317     { EBML_ID_DOCTYPE,            EBML_STR,  0, offsetof(Ebml, doctype),         { .s = "(none)" } },
318     { EBML_ID_DOCTYPEREADVERSION, EBML_UINT, 0, offsetof(Ebml, doctype_version), { .u = 1 } },
319     { EBML_ID_EBMLVERSION,        EBML_NONE },
320     { EBML_ID_DOCTYPEVERSION,     EBML_NONE },
321     { 0 }
322 };
323
324 static EbmlSyntax ebml_syntax[] = {
325     { EBML_ID_HEADER, EBML_NEST, 0, 0, { .n = ebml_header } },
326     { 0 }
327 };
328
329 static EbmlSyntax matroska_info[] = {
330     { MATROSKA_ID_TIMECODESCALE, EBML_UINT,  0, offsetof(MatroskaDemuxContext, time_scale), { .u = 1000000 } },
331     { MATROSKA_ID_DURATION,      EBML_FLOAT, 0, offsetof(MatroskaDemuxContext, duration) },
332     { MATROSKA_ID_TITLE,         EBML_UTF8,  0, offsetof(MatroskaDemuxContext, title) },
333     { MATROSKA_ID_WRITINGAPP,    EBML_NONE },
334     { MATROSKA_ID_MUXINGAPP,     EBML_UTF8, 0, offsetof(MatroskaDemuxContext, muxingapp) },
335     { MATROSKA_ID_DATEUTC,       EBML_BIN,  0, offsetof(MatroskaDemuxContext, date_utc) },
336     { MATROSKA_ID_SEGMENTUID,    EBML_NONE },
337     { 0 }
338 };
339
340 static EbmlSyntax matroska_track_video[] = {
341     { MATROSKA_ID_VIDEOFRAMERATE,      EBML_FLOAT, 0, offsetof(MatroskaTrackVideo, frame_rate) },
342     { MATROSKA_ID_VIDEODISPLAYWIDTH,   EBML_UINT,  0, offsetof(MatroskaTrackVideo, display_width), { .u=-1 } },
343     { MATROSKA_ID_VIDEODISPLAYHEIGHT,  EBML_UINT,  0, offsetof(MatroskaTrackVideo, display_height), { .u=-1 } },
344     { MATROSKA_ID_VIDEOPIXELWIDTH,     EBML_UINT,  0, offsetof(MatroskaTrackVideo, pixel_width) },
345     { MATROSKA_ID_VIDEOPIXELHEIGHT,    EBML_UINT,  0, offsetof(MatroskaTrackVideo, pixel_height) },
346     { MATROSKA_ID_VIDEOCOLORSPACE,     EBML_BIN,   0, offsetof(MatroskaTrackVideo, color_space) },
347     { MATROSKA_ID_VIDEOALPHAMODE,      EBML_UINT,  0, offsetof(MatroskaTrackVideo, alpha_mode) },
348     { MATROSKA_ID_VIDEOPIXELCROPB,     EBML_NONE },
349     { MATROSKA_ID_VIDEOPIXELCROPT,     EBML_NONE },
350     { MATROSKA_ID_VIDEOPIXELCROPL,     EBML_NONE },
351     { MATROSKA_ID_VIDEOPIXELCROPR,     EBML_NONE },
352     { MATROSKA_ID_VIDEODISPLAYUNIT,    EBML_NONE },
353     { MATROSKA_ID_VIDEOFLAGINTERLACED, EBML_NONE },
354     { MATROSKA_ID_VIDEOSTEREOMODE,     EBML_UINT,  0, offsetof(MatroskaTrackVideo, stereo_mode), { .u = MATROSKA_VIDEO_STEREOMODE_TYPE_NB } },
355     { MATROSKA_ID_VIDEOASPECTRATIO,    EBML_NONE },
356     { 0 }
357 };
358
359 static EbmlSyntax matroska_track_audio[] = {
360     { MATROSKA_ID_AUDIOSAMPLINGFREQ,    EBML_FLOAT, 0, offsetof(MatroskaTrackAudio, samplerate), { .f = 8000.0 } },
361     { MATROSKA_ID_AUDIOOUTSAMPLINGFREQ, EBML_FLOAT, 0, offsetof(MatroskaTrackAudio, out_samplerate) },
362     { MATROSKA_ID_AUDIOBITDEPTH,        EBML_UINT,  0, offsetof(MatroskaTrackAudio, bitdepth) },
363     { MATROSKA_ID_AUDIOCHANNELS,        EBML_UINT,  0, offsetof(MatroskaTrackAudio, channels),   { .u = 1 } },
364     { 0 }
365 };
366
367 static EbmlSyntax matroska_track_encoding_compression[] = {
368     { MATROSKA_ID_ENCODINGCOMPALGO,     EBML_UINT, 0, offsetof(MatroskaTrackCompression, algo), { .u = 0 } },
369     { MATROSKA_ID_ENCODINGCOMPSETTINGS, EBML_BIN,  0, offsetof(MatroskaTrackCompression, settings) },
370     { 0 }
371 };
372
373 static EbmlSyntax matroska_track_encoding_encryption[] = {
374     { MATROSKA_ID_ENCODINGENCALGO,        EBML_UINT, 0, offsetof(MatroskaTrackEncryption,algo), {.u = 0} },
375     { MATROSKA_ID_ENCODINGENCKEYID,       EBML_BIN, 0, offsetof(MatroskaTrackEncryption,key_id) },
376     { MATROSKA_ID_ENCODINGENCAESSETTINGS, EBML_NONE },
377     { MATROSKA_ID_ENCODINGSIGALGO,        EBML_NONE },
378     { MATROSKA_ID_ENCODINGSIGHASHALGO,    EBML_NONE },
379     { MATROSKA_ID_ENCODINGSIGKEYID,       EBML_NONE },
380     { MATROSKA_ID_ENCODINGSIGNATURE,      EBML_NONE },
381     { 0 }
382 };
383 static EbmlSyntax matroska_track_encoding[] = {
384     { MATROSKA_ID_ENCODINGSCOPE,       EBML_UINT, 0, offsetof(MatroskaTrackEncoding, scope),       { .u = 1 } },
385     { MATROSKA_ID_ENCODINGTYPE,        EBML_UINT, 0, offsetof(MatroskaTrackEncoding, type),        { .u = 0 } },
386     { MATROSKA_ID_ENCODINGCOMPRESSION, EBML_NEST, 0, offsetof(MatroskaTrackEncoding, compression), { .n = matroska_track_encoding_compression } },
387     { MATROSKA_ID_ENCODINGENCRYPTION,  EBML_NEST, 0, offsetof(MatroskaTrackEncoding, encryption),  { .n = matroska_track_encoding_encryption } },
388     { MATROSKA_ID_ENCODINGORDER,       EBML_NONE },
389     { 0 }
390 };
391
392 static EbmlSyntax matroska_track_encodings[] = {
393     { MATROSKA_ID_TRACKCONTENTENCODING, EBML_NEST, sizeof(MatroskaTrackEncoding), offsetof(MatroskaTrack, encodings), { .n = matroska_track_encoding } },
394     { 0 }
395 };
396
397 static EbmlSyntax matroska_track_plane[] = {
398     { MATROSKA_ID_TRACKPLANEUID,  EBML_UINT, 0, offsetof(MatroskaTrackPlane,uid) },
399     { MATROSKA_ID_TRACKPLANETYPE, EBML_UINT, 0, offsetof(MatroskaTrackPlane,type) },
400     { 0 }
401 };
402
403 static EbmlSyntax matroska_track_combine_planes[] = {
404     { MATROSKA_ID_TRACKPLANE, EBML_NEST, sizeof(MatroskaTrackPlane), offsetof(MatroskaTrackOperation,combine_planes), {.n = matroska_track_plane} },
405     { 0 }
406 };
407
408 static EbmlSyntax matroska_track_operation[] = {
409     { MATROSKA_ID_TRACKCOMBINEPLANES, EBML_NEST, 0, 0, {.n = matroska_track_combine_planes} },
410     { 0 }
411 };
412
413 static EbmlSyntax matroska_track[] = {
414     { MATROSKA_ID_TRACKNUMBER,           EBML_UINT,  0, offsetof(MatroskaTrack, num) },
415     { MATROSKA_ID_TRACKNAME,             EBML_UTF8,  0, offsetof(MatroskaTrack, name) },
416     { MATROSKA_ID_TRACKUID,              EBML_UINT,  0, offsetof(MatroskaTrack, uid) },
417     { MATROSKA_ID_TRACKTYPE,             EBML_UINT,  0, offsetof(MatroskaTrack, type) },
418     { MATROSKA_ID_CODECID,               EBML_STR,   0, offsetof(MatroskaTrack, codec_id) },
419     { MATROSKA_ID_CODECPRIVATE,          EBML_BIN,   0, offsetof(MatroskaTrack, codec_priv) },
420     { MATROSKA_ID_CODECDELAY,            EBML_UINT,  0, offsetof(MatroskaTrack, codec_delay) },
421     { MATROSKA_ID_TRACKLANGUAGE,         EBML_UTF8,  0, offsetof(MatroskaTrack, language),     { .s = "eng" } },
422     { MATROSKA_ID_TRACKDEFAULTDURATION,  EBML_UINT,  0, offsetof(MatroskaTrack, default_duration) },
423     { MATROSKA_ID_TRACKTIMECODESCALE,    EBML_FLOAT, 0, offsetof(MatroskaTrack, time_scale),   { .f = 1.0 } },
424     { MATROSKA_ID_TRACKFLAGDEFAULT,      EBML_UINT,  0, offsetof(MatroskaTrack, flag_default), { .u = 1 } },
425     { MATROSKA_ID_TRACKFLAGFORCED,       EBML_UINT,  0, offsetof(MatroskaTrack, flag_forced),  { .u = 0 } },
426     { MATROSKA_ID_TRACKVIDEO,            EBML_NEST,  0, offsetof(MatroskaTrack, video),        { .n = matroska_track_video } },
427     { MATROSKA_ID_TRACKAUDIO,            EBML_NEST,  0, offsetof(MatroskaTrack, audio),        { .n = matroska_track_audio } },
428     { MATROSKA_ID_TRACKOPERATION,        EBML_NEST,  0, offsetof(MatroskaTrack, operation),    { .n = matroska_track_operation } },
429     { MATROSKA_ID_TRACKCONTENTENCODINGS, EBML_NEST,  0, 0,                                     { .n = matroska_track_encodings } },
430     { MATROSKA_ID_TRACKMAXBLKADDID,      EBML_UINT,  0, offsetof(MatroskaTrack, max_block_additional_id) },
431     { MATROSKA_ID_SEEKPREROLL,           EBML_UINT,  0, offsetof(MatroskaTrack, seek_preroll) },
432     { MATROSKA_ID_TRACKFLAGENABLED,      EBML_NONE },
433     { MATROSKA_ID_TRACKFLAGLACING,       EBML_NONE },
434     { MATROSKA_ID_CODECNAME,             EBML_NONE },
435     { MATROSKA_ID_CODECDECODEALL,        EBML_NONE },
436     { MATROSKA_ID_CODECINFOURL,          EBML_NONE },
437     { MATROSKA_ID_CODECDOWNLOADURL,      EBML_NONE },
438     { MATROSKA_ID_TRACKMINCACHE,         EBML_NONE },
439     { MATROSKA_ID_TRACKMAXCACHE,         EBML_NONE },
440     { 0 }
441 };
442
443 static EbmlSyntax matroska_tracks[] = {
444     { MATROSKA_ID_TRACKENTRY, EBML_NEST, sizeof(MatroskaTrack), offsetof(MatroskaDemuxContext, tracks), { .n = matroska_track } },
445     { 0 }
446 };
447
448 static EbmlSyntax matroska_attachment[] = {
449     { MATROSKA_ID_FILEUID,      EBML_UINT, 0, offsetof(MatroskaAttachment, uid) },
450     { MATROSKA_ID_FILENAME,     EBML_UTF8, 0, offsetof(MatroskaAttachment, filename) },
451     { MATROSKA_ID_FILEMIMETYPE, EBML_STR,  0, offsetof(MatroskaAttachment, mime) },
452     { MATROSKA_ID_FILEDATA,     EBML_BIN,  0, offsetof(MatroskaAttachment, bin) },
453     { MATROSKA_ID_FILEDESC,     EBML_NONE },
454     { 0 }
455 };
456
457 static EbmlSyntax matroska_attachments[] = {
458     { MATROSKA_ID_ATTACHEDFILE, EBML_NEST, sizeof(MatroskaAttachment), offsetof(MatroskaDemuxContext, attachments), { .n = matroska_attachment } },
459     { 0 }
460 };
461
462 static EbmlSyntax matroska_chapter_display[] = {
463     { MATROSKA_ID_CHAPSTRING, EBML_UTF8, 0, offsetof(MatroskaChapter, title) },
464     { MATROSKA_ID_CHAPLANG,   EBML_NONE },
465     { 0 }
466 };
467
468 static EbmlSyntax matroska_chapter_entry[] = {
469     { MATROSKA_ID_CHAPTERTIMESTART,   EBML_UINT, 0, offsetof(MatroskaChapter, start), { .u = AV_NOPTS_VALUE } },
470     { MATROSKA_ID_CHAPTERTIMEEND,     EBML_UINT, 0, offsetof(MatroskaChapter, end),   { .u = AV_NOPTS_VALUE } },
471     { MATROSKA_ID_CHAPTERUID,         EBML_UINT, 0, offsetof(MatroskaChapter, uid) },
472     { MATROSKA_ID_CHAPTERDISPLAY,     EBML_NEST, 0,                        0,         { .n = matroska_chapter_display } },
473     { MATROSKA_ID_CHAPTERFLAGHIDDEN,  EBML_NONE },
474     { MATROSKA_ID_CHAPTERFLAGENABLED, EBML_NONE },
475     { MATROSKA_ID_CHAPTERPHYSEQUIV,   EBML_NONE },
476     { MATROSKA_ID_CHAPTERATOM,        EBML_NONE },
477     { 0 }
478 };
479
480 static EbmlSyntax matroska_chapter[] = {
481     { MATROSKA_ID_CHAPTERATOM,        EBML_NEST, sizeof(MatroskaChapter), offsetof(MatroskaDemuxContext, chapters), { .n = matroska_chapter_entry } },
482     { MATROSKA_ID_EDITIONUID,         EBML_NONE },
483     { MATROSKA_ID_EDITIONFLAGHIDDEN,  EBML_NONE },
484     { MATROSKA_ID_EDITIONFLAGDEFAULT, EBML_NONE },
485     { MATROSKA_ID_EDITIONFLAGORDERED, EBML_NONE },
486     { 0 }
487 };
488
489 static EbmlSyntax matroska_chapters[] = {
490     { MATROSKA_ID_EDITIONENTRY, EBML_NEST, 0, 0, { .n = matroska_chapter } },
491     { 0 }
492 };
493
494 static EbmlSyntax matroska_index_pos[] = {
495     { MATROSKA_ID_CUETRACK,           EBML_UINT, 0, offsetof(MatroskaIndexPos, track) },
496     { MATROSKA_ID_CUECLUSTERPOSITION, EBML_UINT, 0, offsetof(MatroskaIndexPos, pos) },
497     { MATROSKA_ID_CUERELATIVEPOSITION,EBML_NONE },
498     { MATROSKA_ID_CUEDURATION,        EBML_NONE },
499     { MATROSKA_ID_CUEBLOCKNUMBER,     EBML_NONE },
500     { 0 }
501 };
502
503 static EbmlSyntax matroska_index_entry[] = {
504     { MATROSKA_ID_CUETIME,          EBML_UINT, 0,                        offsetof(MatroskaIndex, time) },
505     { MATROSKA_ID_CUETRACKPOSITION, EBML_NEST, sizeof(MatroskaIndexPos), offsetof(MatroskaIndex, pos), { .n = matroska_index_pos } },
506     { 0 }
507 };
508
509 static EbmlSyntax matroska_index[] = {
510     { MATROSKA_ID_POINTENTRY, EBML_NEST, sizeof(MatroskaIndex), offsetof(MatroskaDemuxContext, index), { .n = matroska_index_entry } },
511     { 0 }
512 };
513
514 static EbmlSyntax matroska_simpletag[] = {
515     { MATROSKA_ID_TAGNAME,        EBML_UTF8, 0,                   offsetof(MatroskaTag, name) },
516     { MATROSKA_ID_TAGSTRING,      EBML_UTF8, 0,                   offsetof(MatroskaTag, string) },
517     { MATROSKA_ID_TAGLANG,        EBML_STR,  0,                   offsetof(MatroskaTag, lang), { .s = "und" } },
518     { MATROSKA_ID_TAGDEFAULT,     EBML_UINT, 0,                   offsetof(MatroskaTag, def) },
519     { MATROSKA_ID_TAGDEFAULT_BUG, EBML_UINT, 0,                   offsetof(MatroskaTag, def) },
520     { MATROSKA_ID_SIMPLETAG,      EBML_NEST, sizeof(MatroskaTag), offsetof(MatroskaTag, sub),  { .n = matroska_simpletag } },
521     { 0 }
522 };
523
524 static EbmlSyntax matroska_tagtargets[] = {
525     { MATROSKA_ID_TAGTARGETS_TYPE,       EBML_STR,  0, offsetof(MatroskaTagTarget, type) },
526     { MATROSKA_ID_TAGTARGETS_TYPEVALUE,  EBML_UINT, 0, offsetof(MatroskaTagTarget, typevalue), { .u = 50 } },
527     { MATROSKA_ID_TAGTARGETS_TRACKUID,   EBML_UINT, 0, offsetof(MatroskaTagTarget, trackuid) },
528     { MATROSKA_ID_TAGTARGETS_CHAPTERUID, EBML_UINT, 0, offsetof(MatroskaTagTarget, chapteruid) },
529     { MATROSKA_ID_TAGTARGETS_ATTACHUID,  EBML_UINT, 0, offsetof(MatroskaTagTarget, attachuid) },
530     { 0 }
531 };
532
533 static EbmlSyntax matroska_tag[] = {
534     { MATROSKA_ID_SIMPLETAG,  EBML_NEST, sizeof(MatroskaTag), offsetof(MatroskaTags, tag),    { .n = matroska_simpletag } },
535     { MATROSKA_ID_TAGTARGETS, EBML_NEST, 0,                   offsetof(MatroskaTags, target), { .n = matroska_tagtargets } },
536     { 0 }
537 };
538
539 static EbmlSyntax matroska_tags[] = {
540     { MATROSKA_ID_TAG, EBML_NEST, sizeof(MatroskaTags), offsetof(MatroskaDemuxContext, tags), { .n = matroska_tag } },
541     { 0 }
542 };
543
544 static EbmlSyntax matroska_seekhead_entry[] = {
545     { MATROSKA_ID_SEEKID,       EBML_UINT, 0, offsetof(MatroskaSeekhead, id) },
546     { MATROSKA_ID_SEEKPOSITION, EBML_UINT, 0, offsetof(MatroskaSeekhead, pos), { .u = -1 } },
547     { 0 }
548 };
549
550 static EbmlSyntax matroska_seekhead[] = {
551     { MATROSKA_ID_SEEKENTRY, EBML_NEST, sizeof(MatroskaSeekhead), offsetof(MatroskaDemuxContext, seekhead), { .n = matroska_seekhead_entry } },
552     { 0 }
553 };
554
555 static EbmlSyntax matroska_segment[] = {
556     { MATROSKA_ID_INFO,        EBML_NEST, 0, 0, { .n = matroska_info } },
557     { MATROSKA_ID_TRACKS,      EBML_NEST, 0, 0, { .n = matroska_tracks } },
558     { MATROSKA_ID_ATTACHMENTS, EBML_NEST, 0, 0, { .n = matroska_attachments } },
559     { MATROSKA_ID_CHAPTERS,    EBML_NEST, 0, 0, { .n = matroska_chapters } },
560     { MATROSKA_ID_CUES,        EBML_NEST, 0, 0, { .n = matroska_index } },
561     { MATROSKA_ID_TAGS,        EBML_NEST, 0, 0, { .n = matroska_tags } },
562     { MATROSKA_ID_SEEKHEAD,    EBML_NEST, 0, 0, { .n = matroska_seekhead } },
563     { MATROSKA_ID_CLUSTER,     EBML_STOP },
564     { 0 }
565 };
566
567 static EbmlSyntax matroska_segments[] = {
568     { MATROSKA_ID_SEGMENT, EBML_NEST, 0, 0, { .n = matroska_segment } },
569     { 0 }
570 };
571
572 static EbmlSyntax matroska_blockmore[] = {
573     { MATROSKA_ID_BLOCKADDID,      EBML_UINT, 0, offsetof(MatroskaBlock,additional_id) },
574     { MATROSKA_ID_BLOCKADDITIONAL, EBML_BIN,  0, offsetof(MatroskaBlock,additional) },
575     { 0 }
576 };
577
578 static EbmlSyntax matroska_blockadditions[] = {
579     { MATROSKA_ID_BLOCKMORE, EBML_NEST, 0, 0, {.n = matroska_blockmore} },
580     { 0 }
581 };
582
583 static EbmlSyntax matroska_blockgroup[] = {
584     { MATROSKA_ID_BLOCK,          EBML_BIN,  0, offsetof(MatroskaBlock, bin) },
585     { MATROSKA_ID_BLOCKADDITIONS, EBML_NEST, 0, 0, { .n = matroska_blockadditions} },
586     { MATROSKA_ID_SIMPLEBLOCK,    EBML_BIN,  0, offsetof(MatroskaBlock, bin) },
587     { MATROSKA_ID_BLOCKDURATION,  EBML_UINT, 0, offsetof(MatroskaBlock, duration) },
588     { MATROSKA_ID_DISCARDPADDING, EBML_SINT, 0, offsetof(MatroskaBlock, discard_padding) },
589     { MATROSKA_ID_BLOCKREFERENCE, EBML_SINT, 0, offsetof(MatroskaBlock, reference) },
590     { MATROSKA_ID_CODECSTATE,     EBML_NONE },
591     {                          1, EBML_UINT, 0, offsetof(MatroskaBlock, non_simple), { .u = 1 } },
592     { 0 }
593 };
594
595 static EbmlSyntax matroska_cluster[] = {
596     { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0,                     offsetof(MatroskaCluster, timecode) },
597     { MATROSKA_ID_BLOCKGROUP,      EBML_NEST, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } },
598     { MATROSKA_ID_SIMPLEBLOCK,     EBML_PASS, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } },
599     { MATROSKA_ID_CLUSTERPOSITION, EBML_NONE },
600     { MATROSKA_ID_CLUSTERPREVSIZE, EBML_NONE },
601     { 0 }
602 };
603
604 static EbmlSyntax matroska_clusters[] = {
605     { MATROSKA_ID_CLUSTER,  EBML_NEST, 0, 0, { .n = matroska_cluster } },
606     { MATROSKA_ID_INFO,     EBML_NONE },
607     { MATROSKA_ID_CUES,     EBML_NONE },
608     { MATROSKA_ID_TAGS,     EBML_NONE },
609     { MATROSKA_ID_SEEKHEAD, EBML_NONE },
610     { 0 }
611 };
612
613 static EbmlSyntax matroska_cluster_incremental_parsing[] = {
614     { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0,                     offsetof(MatroskaCluster, timecode) },
615     { MATROSKA_ID_BLOCKGROUP,      EBML_NEST, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } },
616     { MATROSKA_ID_SIMPLEBLOCK,     EBML_PASS, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } },
617     { MATROSKA_ID_CLUSTERPOSITION, EBML_NONE },
618     { MATROSKA_ID_CLUSTERPREVSIZE, EBML_NONE },
619     { MATROSKA_ID_INFO,            EBML_NONE },
620     { MATROSKA_ID_CUES,            EBML_NONE },
621     { MATROSKA_ID_TAGS,            EBML_NONE },
622     { MATROSKA_ID_SEEKHEAD,        EBML_NONE },
623     { MATROSKA_ID_CLUSTER,         EBML_STOP },
624     { 0 }
625 };
626
627 static EbmlSyntax matroska_cluster_incremental[] = {
628     { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, offsetof(MatroskaCluster, timecode) },
629     { MATROSKA_ID_BLOCKGROUP,      EBML_STOP },
630     { MATROSKA_ID_SIMPLEBLOCK,     EBML_STOP },
631     { MATROSKA_ID_CLUSTERPOSITION, EBML_NONE },
632     { MATROSKA_ID_CLUSTERPREVSIZE, EBML_NONE },
633     { 0 }
634 };
635
636 static EbmlSyntax matroska_clusters_incremental[] = {
637     { MATROSKA_ID_CLUSTER,  EBML_NEST, 0, 0, { .n = matroska_cluster_incremental } },
638     { MATROSKA_ID_INFO,     EBML_NONE },
639     { MATROSKA_ID_CUES,     EBML_NONE },
640     { MATROSKA_ID_TAGS,     EBML_NONE },
641     { MATROSKA_ID_SEEKHEAD, EBML_NONE },
642     { 0 }
643 };
644
645 static const char *const matroska_doctypes[] = { "matroska", "webm" };
646
647 static int matroska_resync(MatroskaDemuxContext *matroska, int64_t last_pos)
648 {
649     AVIOContext *pb = matroska->ctx->pb;
650     uint32_t id;
651     matroska->current_id = 0;
652     matroska->num_levels = 0;
653
654     /* seek to next position to resync from */
655     if (avio_seek(pb, last_pos + 1, SEEK_SET) < 0)
656         goto eof;
657
658     id = avio_rb32(pb);
659
660     // try to find a toplevel element
661     while (!avio_feof(pb)) {
662         if (id == MATROSKA_ID_INFO     || id == MATROSKA_ID_TRACKS      ||
663             id == MATROSKA_ID_CUES     || id == MATROSKA_ID_TAGS        ||
664             id == MATROSKA_ID_SEEKHEAD || id == MATROSKA_ID_ATTACHMENTS ||
665             id == MATROSKA_ID_CLUSTER  || id == MATROSKA_ID_CHAPTERS) {
666             matroska->current_id = id;
667             return 0;
668         }
669         id = (id << 8) | avio_r8(pb);
670     }
671
672 eof:
673     matroska->done = 1;
674     return AVERROR_EOF;
675 }
676
677 /*
678  * Return: Whether we reached the end of a level in the hierarchy or not.
679  */
680 static int ebml_level_end(MatroskaDemuxContext *matroska)
681 {
682     AVIOContext *pb = matroska->ctx->pb;
683     int64_t pos = avio_tell(pb);
684
685     if (matroska->num_levels > 0) {
686         MatroskaLevel *level = &matroska->levels[matroska->num_levels - 1];
687         if (pos - level->start >= level->length || matroska->current_id) {
688             matroska->num_levels--;
689             return 1;
690         }
691     }
692     return 0;
693 }
694
695 /*
696  * Read: an "EBML number", which is defined as a variable-length
697  * array of bytes. The first byte indicates the length by giving a
698  * number of 0-bits followed by a one. The position of the first
699  * "one" bit inside the first byte indicates the length of this
700  * number.
701  * Returns: number of bytes read, < 0 on error
702  */
703 static int ebml_read_num(MatroskaDemuxContext *matroska, AVIOContext *pb,
704                          int max_size, uint64_t *number)
705 {
706     int read = 1, n = 1;
707     uint64_t total = 0;
708
709     /* The first byte tells us the length in bytes - avio_r8() can normally
710      * return 0, but since that's not a valid first ebmlID byte, we can
711      * use it safely here to catch EOS. */
712     if (!(total = avio_r8(pb))) {
713         /* we might encounter EOS here */
714         if (!avio_feof(pb)) {
715             int64_t pos = avio_tell(pb);
716             av_log(matroska->ctx, AV_LOG_ERROR,
717                    "Read error at pos. %"PRIu64" (0x%"PRIx64")\n",
718                    pos, pos);
719             return pb->error ? pb->error : AVERROR(EIO);
720         }
721         return AVERROR_EOF;
722     }
723
724     /* get the length of the EBML number */
725     read = 8 - ff_log2_tab[total];
726     if (read > max_size) {
727         int64_t pos = avio_tell(pb) - 1;
728         av_log(matroska->ctx, AV_LOG_ERROR,
729                "Invalid EBML number size tag 0x%02x at pos %"PRIu64" (0x%"PRIx64")\n",
730                (uint8_t) total, pos, pos);
731         return AVERROR_INVALIDDATA;
732     }
733
734     /* read out length */
735     total ^= 1 << ff_log2_tab[total];
736     while (n++ < read)
737         total = (total << 8) | avio_r8(pb);
738
739     *number = total;
740
741     return read;
742 }
743
744 /**
745  * Read a EBML length value.
746  * This needs special handling for the "unknown length" case which has multiple
747  * encodings.
748  */
749 static int ebml_read_length(MatroskaDemuxContext *matroska, AVIOContext *pb,
750                             uint64_t *number)
751 {
752     int res = ebml_read_num(matroska, pb, 8, number);
753     if (res > 0 && *number + 1 == 1ULL << (7 * res))
754         *number = 0xffffffffffffffULL;
755     return res;
756 }
757
758 /*
759  * Read the next element as an unsigned int.
760  * 0 is success, < 0 is failure.
761  */
762 static int ebml_read_uint(AVIOContext *pb, int size, uint64_t *num)
763 {
764     int n = 0;
765
766     if (size > 8)
767         return AVERROR_INVALIDDATA;
768
769     /* big-endian ordering; build up number */
770     *num = 0;
771     while (n++ < size)
772         *num = (*num << 8) | avio_r8(pb);
773
774     return 0;
775 }
776
777 /*
778  * Read the next element as a signed int.
779  * 0 is success, < 0 is failure.
780  */
781 static int ebml_read_sint(AVIOContext *pb, int size, int64_t *num)
782 {
783     int n = 1;
784
785     if (size > 8)
786         return AVERROR_INVALIDDATA;
787
788     if (size == 0) {
789         *num = 0;
790     } else {
791         *num = sign_extend(avio_r8(pb), 8);
792
793         /* big-endian ordering; build up number */
794         while (n++ < size)
795             *num = (*num << 8) | avio_r8(pb);
796     }
797
798     return 0;
799 }
800
801 /*
802  * Read the next element as a float.
803  * 0 is success, < 0 is failure.
804  */
805 static int ebml_read_float(AVIOContext *pb, int size, double *num)
806 {
807     if (size == 0)
808         *num = 0;
809     else if (size == 4)
810         *num = av_int2float(avio_rb32(pb));
811     else if (size == 8)
812         *num = av_int2double(avio_rb64(pb));
813     else
814         return AVERROR_INVALIDDATA;
815
816     return 0;
817 }
818
819 /*
820  * Read the next element as an ASCII string.
821  * 0 is success, < 0 is failure.
822  */
823 static int ebml_read_ascii(AVIOContext *pb, int size, char **str)
824 {
825     char *res;
826
827     /* EBML strings are usually not 0-terminated, so we allocate one
828      * byte more, read the string and NULL-terminate it ourselves. */
829     if (!(res = av_malloc(size + 1)))
830         return AVERROR(ENOMEM);
831     if (avio_read(pb, (uint8_t *) res, size) != size) {
832         av_free(res);
833         return AVERROR(EIO);
834     }
835     (res)[size] = '\0';
836     av_free(*str);
837     *str = res;
838
839     return 0;
840 }
841
842 /*
843  * Read the next element as binary data.
844  * 0 is success, < 0 is failure.
845  */
846 static int ebml_read_binary(AVIOContext *pb, int length, EbmlBin *bin)
847 {
848     av_fast_padded_malloc(&bin->data, &bin->size, length);
849     if (!bin->data)
850         return AVERROR(ENOMEM);
851
852     bin->size = length;
853     bin->pos  = avio_tell(pb);
854     if (avio_read(pb, bin->data, length) != length) {
855         av_freep(&bin->data);
856         bin->size = 0;
857         return AVERROR(EIO);
858     }
859
860     return 0;
861 }
862
863 /*
864  * Read the next element, but only the header. The contents
865  * are supposed to be sub-elements which can be read separately.
866  * 0 is success, < 0 is failure.
867  */
868 static int ebml_read_master(MatroskaDemuxContext *matroska, uint64_t length)
869 {
870     AVIOContext *pb = matroska->ctx->pb;
871     MatroskaLevel *level;
872
873     if (matroska->num_levels >= EBML_MAX_DEPTH) {
874         av_log(matroska->ctx, AV_LOG_ERROR,
875                "File moves beyond max. allowed depth (%d)\n", EBML_MAX_DEPTH);
876         return AVERROR(ENOSYS);
877     }
878
879     level         = &matroska->levels[matroska->num_levels++];
880     level->start  = avio_tell(pb);
881     level->length = length;
882
883     return 0;
884 }
885
886 /*
887  * Read signed/unsigned "EBML" numbers.
888  * Return: number of bytes processed, < 0 on error
889  */
890 static int matroska_ebmlnum_uint(MatroskaDemuxContext *matroska,
891                                  uint8_t *data, uint32_t size, uint64_t *num)
892 {
893     AVIOContext pb;
894     ffio_init_context(&pb, data, size, 0, NULL, NULL, NULL, NULL);
895     return ebml_read_num(matroska, &pb, FFMIN(size, 8), num);
896 }
897
898 /*
899  * Same as above, but signed.
900  */
901 static int matroska_ebmlnum_sint(MatroskaDemuxContext *matroska,
902                                  uint8_t *data, uint32_t size, int64_t *num)
903 {
904     uint64_t unum;
905     int res;
906
907     /* read as unsigned number first */
908     if ((res = matroska_ebmlnum_uint(matroska, data, size, &unum)) < 0)
909         return res;
910
911     /* make signed (weird way) */
912     *num = unum - ((1LL << (7 * res - 1)) - 1);
913
914     return res;
915 }
916
917 static int ebml_parse_elem(MatroskaDemuxContext *matroska,
918                            EbmlSyntax *syntax, void *data);
919
920 static int ebml_parse_id(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
921                          uint32_t id, void *data)
922 {
923     int i;
924     for (i = 0; syntax[i].id; i++)
925         if (id == syntax[i].id)
926             break;
927     if (!syntax[i].id && id == MATROSKA_ID_CLUSTER &&
928         matroska->num_levels > 0                   &&
929         matroska->levels[matroska->num_levels - 1].length == 0xffffffffffffff)
930         return 0;  // we reached the end of an unknown size cluster
931     if (!syntax[i].id && id != EBML_ID_VOID && id != EBML_ID_CRC32) {
932         av_log(matroska->ctx, AV_LOG_INFO, "Unknown entry 0x%"PRIX32"\n", id);
933         if (matroska->ctx->error_recognition & AV_EF_EXPLODE)
934             return AVERROR_INVALIDDATA;
935     }
936     return ebml_parse_elem(matroska, &syntax[i], data);
937 }
938
939 static int ebml_parse(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
940                       void *data)
941 {
942     if (!matroska->current_id) {
943         uint64_t id;
944         int res = ebml_read_num(matroska, matroska->ctx->pb, 4, &id);
945         if (res < 0)
946             return res;
947         matroska->current_id = id | 1 << 7 * res;
948     }
949     return ebml_parse_id(matroska, syntax, matroska->current_id, data);
950 }
951
952 static int ebml_parse_nest(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
953                            void *data)
954 {
955     int i, res = 0;
956
957     for (i = 0; syntax[i].id; i++)
958         switch (syntax[i].type) {
959         case EBML_UINT:
960             *(uint64_t *) ((char *) data + syntax[i].data_offset) = syntax[i].def.u;
961             break;
962         case EBML_FLOAT:
963             *(double *) ((char *) data + syntax[i].data_offset) = syntax[i].def.f;
964             break;
965         case EBML_STR:
966         case EBML_UTF8:
967             // the default may be NULL
968             if (syntax[i].def.s) {
969                 uint8_t **dst = (uint8_t **) ((uint8_t *) data + syntax[i].data_offset);
970                 *dst = av_strdup(syntax[i].def.s);
971                 if (!*dst)
972                     return AVERROR(ENOMEM);
973             }
974             break;
975         }
976
977     while (!res && !ebml_level_end(matroska))
978         res = ebml_parse(matroska, syntax, data);
979
980     return res;
981 }
982
983 static int ebml_parse_elem(MatroskaDemuxContext *matroska,
984                            EbmlSyntax *syntax, void *data)
985 {
986     static const uint64_t max_lengths[EBML_TYPE_COUNT] = {
987         [EBML_UINT]  = 8,
988         [EBML_FLOAT] = 8,
989         // max. 16 MB for strings
990         [EBML_STR]   = 0x1000000,
991         [EBML_UTF8]  = 0x1000000,
992         // max. 256 MB for binary data
993         [EBML_BIN]   = 0x10000000,
994         // no limits for anything else
995     };
996     AVIOContext *pb = matroska->ctx->pb;
997     uint32_t id = syntax->id;
998     uint64_t length;
999     int res;
1000     void *newelem;
1001
1002     data = (char *) data + syntax->data_offset;
1003     if (syntax->list_elem_size) {
1004         EbmlList *list = data;
1005         newelem = av_realloc_array(list->elem, list->nb_elem + 1, syntax->list_elem_size);
1006         if (!newelem)
1007             return AVERROR(ENOMEM);
1008         list->elem = newelem;
1009         data = (char *) list->elem + list->nb_elem * syntax->list_elem_size;
1010         memset(data, 0, syntax->list_elem_size);
1011         list->nb_elem++;
1012     }
1013
1014     if (syntax->type != EBML_PASS && syntax->type != EBML_STOP) {
1015         matroska->current_id = 0;
1016         if ((res = ebml_read_length(matroska, pb, &length)) < 0)
1017             return res;
1018         if (max_lengths[syntax->type] && length > max_lengths[syntax->type]) {
1019             av_log(matroska->ctx, AV_LOG_ERROR,
1020                    "Invalid length 0x%"PRIx64" > 0x%"PRIx64" for syntax element %i\n",
1021                    length, max_lengths[syntax->type], syntax->type);
1022             return AVERROR_INVALIDDATA;
1023         }
1024     }
1025
1026     switch (syntax->type) {
1027     case EBML_UINT:
1028         res = ebml_read_uint(pb, length, data);
1029         break;
1030     case EBML_SINT:
1031         res = ebml_read_sint(pb, length, data);
1032         break;
1033     case EBML_FLOAT:
1034         res = ebml_read_float(pb, length, data);
1035         break;
1036     case EBML_STR:
1037     case EBML_UTF8:
1038         res = ebml_read_ascii(pb, length, data);
1039         break;
1040     case EBML_BIN:
1041         res = ebml_read_binary(pb, length, data);
1042         break;
1043     case EBML_NEST:
1044         if ((res = ebml_read_master(matroska, length)) < 0)
1045             return res;
1046         if (id == MATROSKA_ID_SEGMENT)
1047             matroska->segment_start = avio_tell(matroska->ctx->pb);
1048         return ebml_parse_nest(matroska, syntax->def.n, data);
1049     case EBML_PASS:
1050         return ebml_parse_id(matroska, syntax->def.n, id, data);
1051     case EBML_STOP:
1052         return 1;
1053     default:
1054         if (ffio_limit(pb, length) != length)
1055             return AVERROR(EIO);
1056         return avio_skip(pb, length) < 0 ? AVERROR(EIO) : 0;
1057     }
1058     if (res == AVERROR_INVALIDDATA)
1059         av_log(matroska->ctx, AV_LOG_ERROR, "Invalid element\n");
1060     else if (res == AVERROR(EIO))
1061         av_log(matroska->ctx, AV_LOG_ERROR, "Read error\n");
1062     return res;
1063 }
1064
1065 static void ebml_free(EbmlSyntax *syntax, void *data)
1066 {
1067     int i, j;
1068     for (i = 0; syntax[i].id; i++) {
1069         void *data_off = (char *) data + syntax[i].data_offset;
1070         switch (syntax[i].type) {
1071         case EBML_STR:
1072         case EBML_UTF8:
1073             av_freep(data_off);
1074             break;
1075         case EBML_BIN:
1076             av_freep(&((EbmlBin *) data_off)->data);
1077             break;
1078         case EBML_NEST:
1079             if (syntax[i].list_elem_size) {
1080                 EbmlList *list = data_off;
1081                 char *ptr = list->elem;
1082                 for (j = 0; j < list->nb_elem;
1083                      j++, ptr += syntax[i].list_elem_size)
1084                     ebml_free(syntax[i].def.n, ptr);
1085                 av_free(list->elem);
1086             } else
1087                 ebml_free(syntax[i].def.n, data_off);
1088         default:
1089             break;
1090         }
1091     }
1092 }
1093
1094 /*
1095  * Autodetecting...
1096  */
1097 static int matroska_probe(AVProbeData *p)
1098 {
1099     uint64_t total = 0;
1100     int len_mask = 0x80, size = 1, n = 1, i;
1101
1102     /* EBML header? */
1103     if (AV_RB32(p->buf) != EBML_ID_HEADER)
1104         return 0;
1105
1106     /* length of header */
1107     total = p->buf[4];
1108     while (size <= 8 && !(total & len_mask)) {
1109         size++;
1110         len_mask >>= 1;
1111     }
1112     if (size > 8)
1113         return 0;
1114     total &= (len_mask - 1);
1115     while (n < size)
1116         total = (total << 8) | p->buf[4 + n++];
1117
1118     /* Does the probe data contain the whole header? */
1119     if (p->buf_size < 4 + size + total)
1120         return 0;
1121
1122     /* The header should contain a known document type. For now,
1123      * we don't parse the whole header but simply check for the
1124      * availability of that array of characters inside the header.
1125      * Not fully fool-proof, but good enough. */
1126     for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++) {
1127         int probelen = strlen(matroska_doctypes[i]);
1128         if (total < probelen)
1129             continue;
1130         for (n = 4 + size; n <= 4 + size + total - probelen; n++)
1131             if (!memcmp(p->buf + n, matroska_doctypes[i], probelen))
1132                 return AVPROBE_SCORE_MAX;
1133     }
1134
1135     // probably valid EBML header but no recognized doctype
1136     return AVPROBE_SCORE_EXTENSION;
1137 }
1138
1139 static MatroskaTrack *matroska_find_track_by_num(MatroskaDemuxContext *matroska,
1140                                                  int num)
1141 {
1142     MatroskaTrack *tracks = matroska->tracks.elem;
1143     int i;
1144
1145     for (i = 0; i < matroska->tracks.nb_elem; i++)
1146         if (tracks[i].num == num)
1147             return &tracks[i];
1148
1149     av_log(matroska->ctx, AV_LOG_ERROR, "Invalid track number %d\n", num);
1150     return NULL;
1151 }
1152
1153 static int matroska_decode_buffer(uint8_t **buf, int *buf_size,
1154                                   MatroskaTrack *track)
1155 {
1156     MatroskaTrackEncoding *encodings = track->encodings.elem;
1157     uint8_t *data = *buf;
1158     int isize = *buf_size;
1159     uint8_t *pkt_data = NULL;
1160     uint8_t av_unused *newpktdata;
1161     int pkt_size = isize;
1162     int result = 0;
1163     int olen;
1164
1165     if (pkt_size >= 10000000U)
1166         return AVERROR_INVALIDDATA;
1167
1168     switch (encodings[0].compression.algo) {
1169     case MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP:
1170     {
1171         int header_size = encodings[0].compression.settings.size;
1172         uint8_t *header = encodings[0].compression.settings.data;
1173
1174         if (header_size && !header) {
1175             av_log(NULL, AV_LOG_ERROR, "Compression size but no data in headerstrip\n");
1176             return -1;
1177         }
1178
1179         if (!header_size)
1180             return 0;
1181
1182         pkt_size = isize + header_size;
1183         pkt_data = av_malloc(pkt_size);
1184         if (!pkt_data)
1185             return AVERROR(ENOMEM);
1186
1187         memcpy(pkt_data, header, header_size);
1188         memcpy(pkt_data + header_size, data, isize);
1189         break;
1190     }
1191 #if CONFIG_LZO
1192     case MATROSKA_TRACK_ENCODING_COMP_LZO:
1193         do {
1194             olen       = pkt_size *= 3;
1195             newpktdata = av_realloc(pkt_data, pkt_size + AV_LZO_OUTPUT_PADDING);
1196             if (!newpktdata) {
1197                 result = AVERROR(ENOMEM);
1198                 goto failed;
1199             }
1200             pkt_data = newpktdata;
1201             result   = av_lzo1x_decode(pkt_data, &olen, data, &isize);
1202         } while (result == AV_LZO_OUTPUT_FULL && pkt_size < 10000000);
1203         if (result) {
1204             result = AVERROR_INVALIDDATA;
1205             goto failed;
1206         }
1207         pkt_size -= olen;
1208         break;
1209 #endif
1210 #if CONFIG_ZLIB
1211     case MATROSKA_TRACK_ENCODING_COMP_ZLIB:
1212     {
1213         z_stream zstream = { 0 };
1214         if (inflateInit(&zstream) != Z_OK)
1215             return -1;
1216         zstream.next_in  = data;
1217         zstream.avail_in = isize;
1218         do {
1219             pkt_size  *= 3;
1220             newpktdata = av_realloc(pkt_data, pkt_size);
1221             if (!newpktdata) {
1222                 inflateEnd(&zstream);
1223                 goto failed;
1224             }
1225             pkt_data          = newpktdata;
1226             zstream.avail_out = pkt_size - zstream.total_out;
1227             zstream.next_out  = pkt_data + zstream.total_out;
1228             if (pkt_data) {
1229                 result = inflate(&zstream, Z_NO_FLUSH);
1230             } else
1231                 result = Z_MEM_ERROR;
1232         } while (result == Z_OK && pkt_size < 10000000);
1233         pkt_size = zstream.total_out;
1234         inflateEnd(&zstream);
1235         if (result != Z_STREAM_END) {
1236             if (result == Z_MEM_ERROR)
1237                 result = AVERROR(ENOMEM);
1238             else
1239                 result = AVERROR_INVALIDDATA;
1240             goto failed;
1241         }
1242         break;
1243     }
1244 #endif
1245 #if CONFIG_BZLIB
1246     case MATROSKA_TRACK_ENCODING_COMP_BZLIB:
1247     {
1248         bz_stream bzstream = { 0 };
1249         if (BZ2_bzDecompressInit(&bzstream, 0, 0) != BZ_OK)
1250             return -1;
1251         bzstream.next_in  = data;
1252         bzstream.avail_in = isize;
1253         do {
1254             pkt_size  *= 3;
1255             newpktdata = av_realloc(pkt_data, pkt_size);
1256             if (!newpktdata) {
1257                 BZ2_bzDecompressEnd(&bzstream);
1258                 goto failed;
1259             }
1260             pkt_data           = newpktdata;
1261             bzstream.avail_out = pkt_size - bzstream.total_out_lo32;
1262             bzstream.next_out  = pkt_data + bzstream.total_out_lo32;
1263             if (pkt_data) {
1264                 result = BZ2_bzDecompress(&bzstream);
1265             } else
1266                 result = BZ_MEM_ERROR;
1267         } while (result == BZ_OK && pkt_size < 10000000);
1268         pkt_size = bzstream.total_out_lo32;
1269         BZ2_bzDecompressEnd(&bzstream);
1270         if (result != BZ_STREAM_END) {
1271             if (result == BZ_MEM_ERROR)
1272                 result = AVERROR(ENOMEM);
1273             else
1274                 result = AVERROR_INVALIDDATA;
1275             goto failed;
1276         }
1277         break;
1278     }
1279 #endif
1280     default:
1281         return AVERROR_INVALIDDATA;
1282     }
1283
1284     *buf      = pkt_data;
1285     *buf_size = pkt_size;
1286     return 0;
1287
1288 failed:
1289     av_free(pkt_data);
1290     return result;
1291 }
1292
1293 static void matroska_convert_tag(AVFormatContext *s, EbmlList *list,
1294                                  AVDictionary **metadata, char *prefix)
1295 {
1296     MatroskaTag *tags = list->elem;
1297     char key[1024];
1298     int i;
1299
1300     for (i = 0; i < list->nb_elem; i++) {
1301         const char *lang = tags[i].lang &&
1302                            strcmp(tags[i].lang, "und") ? tags[i].lang : NULL;
1303
1304         if (!tags[i].name) {
1305             av_log(s, AV_LOG_WARNING, "Skipping invalid tag with no TagName.\n");
1306             continue;
1307         }
1308         if (prefix)
1309             snprintf(key, sizeof(key), "%s/%s", prefix, tags[i].name);
1310         else
1311             av_strlcpy(key, tags[i].name, sizeof(key));
1312         if (tags[i].def || !lang) {
1313             av_dict_set(metadata, key, tags[i].string, 0);
1314             if (tags[i].sub.nb_elem)
1315                 matroska_convert_tag(s, &tags[i].sub, metadata, key);
1316         }
1317         if (lang) {
1318             av_strlcat(key, "-", sizeof(key));
1319             av_strlcat(key, lang, sizeof(key));
1320             av_dict_set(metadata, key, tags[i].string, 0);
1321             if (tags[i].sub.nb_elem)
1322                 matroska_convert_tag(s, &tags[i].sub, metadata, key);
1323         }
1324     }
1325     ff_metadata_conv(metadata, NULL, ff_mkv_metadata_conv);
1326 }
1327
1328 static void matroska_convert_tags(AVFormatContext *s)
1329 {
1330     MatroskaDemuxContext *matroska = s->priv_data;
1331     MatroskaTags *tags = matroska->tags.elem;
1332     int i, j;
1333
1334     for (i = 0; i < matroska->tags.nb_elem; i++) {
1335         if (tags[i].target.attachuid) {
1336             MatroskaAttachment *attachment = matroska->attachments.elem;
1337             for (j = 0; j < matroska->attachments.nb_elem; j++)
1338                 if (attachment[j].uid == tags[i].target.attachuid &&
1339                     attachment[j].stream)
1340                     matroska_convert_tag(s, &tags[i].tag,
1341                                          &attachment[j].stream->metadata, NULL);
1342         } else if (tags[i].target.chapteruid) {
1343             MatroskaChapter *chapter = matroska->chapters.elem;
1344             for (j = 0; j < matroska->chapters.nb_elem; j++)
1345                 if (chapter[j].uid == tags[i].target.chapteruid &&
1346                     chapter[j].chapter)
1347                     matroska_convert_tag(s, &tags[i].tag,
1348                                          &chapter[j].chapter->metadata, NULL);
1349         } else if (tags[i].target.trackuid) {
1350             MatroskaTrack *track = matroska->tracks.elem;
1351             for (j = 0; j < matroska->tracks.nb_elem; j++)
1352                 if (track[j].uid == tags[i].target.trackuid && track[j].stream)
1353                     matroska_convert_tag(s, &tags[i].tag,
1354                                          &track[j].stream->metadata, NULL);
1355         } else {
1356             matroska_convert_tag(s, &tags[i].tag, &s->metadata,
1357                                  tags[i].target.type);
1358         }
1359     }
1360 }
1361
1362 static int matroska_parse_seekhead_entry(MatroskaDemuxContext *matroska,
1363                                          int idx)
1364 {
1365     EbmlList *seekhead_list = &matroska->seekhead;
1366     uint32_t level_up       = matroska->level_up;
1367     uint32_t saved_id       = matroska->current_id;
1368     MatroskaSeekhead *seekhead = seekhead_list->elem;
1369     int64_t before_pos = avio_tell(matroska->ctx->pb);
1370     MatroskaLevel level;
1371     int64_t offset;
1372     int ret = 0;
1373
1374     if (idx >= seekhead_list->nb_elem            ||
1375         seekhead[idx].id == MATROSKA_ID_SEEKHEAD ||
1376         seekhead[idx].id == MATROSKA_ID_CLUSTER)
1377         return 0;
1378
1379     /* seek */
1380     offset = seekhead[idx].pos + matroska->segment_start;
1381     if (avio_seek(matroska->ctx->pb, offset, SEEK_SET) == offset) {
1382         /* We don't want to lose our seekhead level, so we add
1383          * a dummy. This is a crude hack. */
1384         if (matroska->num_levels == EBML_MAX_DEPTH) {
1385             av_log(matroska->ctx, AV_LOG_INFO,
1386                    "Max EBML element depth (%d) reached, "
1387                    "cannot parse further.\n", EBML_MAX_DEPTH);
1388             ret = AVERROR_INVALIDDATA;
1389         } else {
1390             level.start  = 0;
1391             level.length = (uint64_t) -1;
1392             matroska->levels[matroska->num_levels] = level;
1393             matroska->num_levels++;
1394             matroska->current_id                   = 0;
1395
1396             ret = ebml_parse(matroska, matroska_segment, matroska);
1397
1398             /* remove dummy level */
1399             while (matroska->num_levels) {
1400                 uint64_t length = matroska->levels[--matroska->num_levels].length;
1401                 if (length == (uint64_t) -1)
1402                     break;
1403             }
1404         }
1405     }
1406     /* seek back */
1407     avio_seek(matroska->ctx->pb, before_pos, SEEK_SET);
1408     matroska->level_up   = level_up;
1409     matroska->current_id = saved_id;
1410
1411     return ret;
1412 }
1413
1414 static void matroska_execute_seekhead(MatroskaDemuxContext *matroska)
1415 {
1416     EbmlList *seekhead_list = &matroska->seekhead;
1417     int64_t before_pos = avio_tell(matroska->ctx->pb);
1418     int i;
1419
1420     // we should not do any seeking in the streaming case
1421     if (!matroska->ctx->pb->seekable ||
1422         (matroska->ctx->flags & AVFMT_FLAG_IGNIDX))
1423         return;
1424
1425     for (i = 0; i < seekhead_list->nb_elem; i++) {
1426         MatroskaSeekhead *seekhead = seekhead_list->elem;
1427         if (seekhead[i].pos <= before_pos)
1428             continue;
1429
1430         // defer cues parsing until we actually need cue data.
1431         if (seekhead[i].id == MATROSKA_ID_CUES) {
1432             matroska->cues_parsing_deferred = 1;
1433             continue;
1434         }
1435
1436         if (matroska_parse_seekhead_entry(matroska, i) < 0) {
1437             // mark index as broken
1438             matroska->cues_parsing_deferred = -1;
1439             break;
1440         }
1441     }
1442 }
1443
1444 static void matroska_add_index_entries(MatroskaDemuxContext *matroska)
1445 {
1446     EbmlList *index_list;
1447     MatroskaIndex *index;
1448     int index_scale = 1;
1449     int i, j;
1450
1451     index_list = &matroska->index;
1452     index      = index_list->elem;
1453     if (index_list->nb_elem &&
1454         index[0].time > 1E14 / matroska->time_scale) {
1455         av_log(matroska->ctx, AV_LOG_WARNING, "Working around broken index.\n");
1456         index_scale = matroska->time_scale;
1457     }
1458     for (i = 0; i < index_list->nb_elem; i++) {
1459         EbmlList *pos_list    = &index[i].pos;
1460         MatroskaIndexPos *pos = pos_list->elem;
1461         for (j = 0; j < pos_list->nb_elem; j++) {
1462             MatroskaTrack *track = matroska_find_track_by_num(matroska,
1463                                                               pos[j].track);
1464             if (track && track->stream)
1465                 av_add_index_entry(track->stream,
1466                                    pos[j].pos + matroska->segment_start,
1467                                    index[i].time / index_scale, 0, 0,
1468                                    AVINDEX_KEYFRAME);
1469         }
1470     }
1471 }
1472
1473 static void matroska_parse_cues(MatroskaDemuxContext *matroska) {
1474     EbmlList *seekhead_list = &matroska->seekhead;
1475     MatroskaSeekhead *seekhead = seekhead_list->elem;
1476     int i;
1477
1478     for (i = 0; i < seekhead_list->nb_elem; i++)
1479         if (seekhead[i].id == MATROSKA_ID_CUES)
1480             break;
1481     av_assert1(i <= seekhead_list->nb_elem);
1482
1483     if (matroska_parse_seekhead_entry(matroska, i) < 0)
1484        matroska->cues_parsing_deferred = -1;
1485     matroska_add_index_entries(matroska);
1486 }
1487
1488 static int matroska_aac_profile(char *codec_id)
1489 {
1490     static const char *const aac_profiles[] = { "MAIN", "LC", "SSR" };
1491     int profile;
1492
1493     for (profile = 0; profile < FF_ARRAY_ELEMS(aac_profiles); profile++)
1494         if (strstr(codec_id, aac_profiles[profile]))
1495             break;
1496     return profile + 1;
1497 }
1498
1499 static int matroska_aac_sri(int samplerate)
1500 {
1501     int sri;
1502
1503     for (sri = 0; sri < FF_ARRAY_ELEMS(avpriv_mpeg4audio_sample_rates); sri++)
1504         if (avpriv_mpeg4audio_sample_rates[sri] == samplerate)
1505             break;
1506     return sri;
1507 }
1508
1509 static void matroska_metadata_creation_time(AVDictionary **metadata, int64_t date_utc)
1510 {
1511     char buffer[32];
1512     /* Convert to seconds and adjust by number of seconds between 2001-01-01 and Epoch */
1513     time_t creation_time = date_utc / 1000000000 + 978307200;
1514     struct tm *ptm = gmtime(&creation_time);
1515     if (!ptm) return;
1516     strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", ptm);
1517     av_dict_set(metadata, "creation_time", buffer, 0);
1518 }
1519
1520 static int matroska_parse_flac(AVFormatContext *s,
1521                                MatroskaTrack *track,
1522                                int *offset)
1523 {
1524     AVStream *st = track->stream;
1525     uint8_t *p = track->codec_priv.data;
1526     int size   = track->codec_priv.size;
1527
1528     if (size < 8 + FLAC_STREAMINFO_SIZE || p[4] & 0x7f) {
1529         av_log(s, AV_LOG_WARNING, "Invalid FLAC private data\n");
1530         track->codec_priv.size = 0;
1531         return 0;
1532     }
1533     *offset = 8;
1534     track->codec_priv.size = 8 + FLAC_STREAMINFO_SIZE;
1535
1536     p    += track->codec_priv.size;
1537     size -= track->codec_priv.size;
1538
1539     /* parse the remaining metadata blocks if present */
1540     while (size >= 4) {
1541         int block_last, block_type, block_size;
1542
1543         flac_parse_block_header(p, &block_last, &block_type, &block_size);
1544
1545         p    += 4;
1546         size -= 4;
1547         if (block_size > size)
1548             return 0;
1549
1550         /* check for the channel mask */
1551         if (block_type == FLAC_METADATA_TYPE_VORBIS_COMMENT) {
1552             AVDictionary *dict = NULL;
1553             AVDictionaryEntry *chmask;
1554
1555             ff_vorbis_comment(s, &dict, p, block_size, 0);
1556             chmask = av_dict_get(dict, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", NULL, 0);
1557             if (chmask) {
1558                 uint64_t mask = strtol(chmask->value, NULL, 0);
1559                 if (!mask || mask & ~0x3ffffULL) {
1560                     av_log(s, AV_LOG_WARNING,
1561                            "Invalid value of WAVEFORMATEXTENSIBLE_CHANNEL_MASK\n");
1562                 } else
1563                     st->codec->channel_layout = mask;
1564             }
1565             av_dict_free(&dict);
1566         }
1567
1568         p    += block_size;
1569         size -= block_size;
1570     }
1571
1572     return 0;
1573 }
1574
1575 static int matroska_parse_tracks(AVFormatContext *s)
1576 {
1577     MatroskaDemuxContext *matroska = s->priv_data;
1578     MatroskaTrack *tracks = matroska->tracks.elem;
1579     AVStream *st;
1580     int i, j, ret;
1581     int k;
1582
1583     for (i = 0; i < matroska->tracks.nb_elem; i++) {
1584         MatroskaTrack *track = &tracks[i];
1585         enum AVCodecID codec_id = AV_CODEC_ID_NONE;
1586         EbmlList *encodings_list = &track->encodings;
1587         MatroskaTrackEncoding *encodings = encodings_list->elem;
1588         uint8_t *extradata = NULL;
1589         int extradata_size = 0;
1590         int extradata_offset = 0;
1591         uint32_t fourcc = 0;
1592         AVIOContext b;
1593         char* key_id_base64 = NULL;
1594         int bit_depth = -1;
1595
1596         /* Apply some sanity checks. */
1597         if (track->type != MATROSKA_TRACK_TYPE_VIDEO &&
1598             track->type != MATROSKA_TRACK_TYPE_AUDIO &&
1599             track->type != MATROSKA_TRACK_TYPE_SUBTITLE &&
1600             track->type != MATROSKA_TRACK_TYPE_METADATA) {
1601             av_log(matroska->ctx, AV_LOG_INFO,
1602                    "Unknown or unsupported track type %"PRIu64"\n",
1603                    track->type);
1604             continue;
1605         }
1606         if (!track->codec_id)
1607             continue;
1608
1609         if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
1610             if (!track->default_duration && track->video.frame_rate > 0)
1611                 track->default_duration = 1000000000 / track->video.frame_rate;
1612             if (track->video.display_width == -1)
1613                 track->video.display_width = track->video.pixel_width;
1614             if (track->video.display_height == -1)
1615                 track->video.display_height = track->video.pixel_height;
1616             if (track->video.color_space.size == 4)
1617                 fourcc = AV_RL32(track->video.color_space.data);
1618         } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
1619             if (!track->audio.out_samplerate)
1620                 track->audio.out_samplerate = track->audio.samplerate;
1621         }
1622         if (encodings_list->nb_elem > 1) {
1623             av_log(matroska->ctx, AV_LOG_ERROR,
1624                    "Multiple combined encodings not supported");
1625         } else if (encodings_list->nb_elem == 1) {
1626             if (encodings[0].type) {
1627                 if (encodings[0].encryption.key_id.size > 0) {
1628                     /* Save the encryption key id to be stored later as a
1629                        metadata tag. */
1630                     const int b64_size = AV_BASE64_SIZE(encodings[0].encryption.key_id.size);
1631                     key_id_base64 = av_malloc(b64_size);
1632                     if (key_id_base64 == NULL)
1633                         return AVERROR(ENOMEM);
1634
1635                     av_base64_encode(key_id_base64, b64_size,
1636                                      encodings[0].encryption.key_id.data,
1637                                      encodings[0].encryption.key_id.size);
1638                 } else {
1639                     encodings[0].scope = 0;
1640                     av_log(matroska->ctx, AV_LOG_ERROR,
1641                            "Unsupported encoding type");
1642                 }
1643             } else if (
1644 #if CONFIG_ZLIB
1645                  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_ZLIB  &&
1646 #endif
1647 #if CONFIG_BZLIB
1648                  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_BZLIB &&
1649 #endif
1650 #if CONFIG_LZO
1651                  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_LZO   &&
1652 #endif
1653                  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP) {
1654                 encodings[0].scope = 0;
1655                 av_log(matroska->ctx, AV_LOG_ERROR,
1656                        "Unsupported encoding type");
1657             } else if (track->codec_priv.size && encodings[0].scope & 2) {
1658                 uint8_t *codec_priv = track->codec_priv.data;
1659                 int ret = matroska_decode_buffer(&track->codec_priv.data,
1660                                                  &track->codec_priv.size,
1661                                                  track);
1662                 if (ret < 0) {
1663                     track->codec_priv.data = NULL;
1664                     track->codec_priv.size = 0;
1665                     av_log(matroska->ctx, AV_LOG_ERROR,
1666                            "Failed to decode codec private data\n");
1667                 }
1668
1669                 if (codec_priv != track->codec_priv.data)
1670                     av_free(codec_priv);
1671             }
1672         }
1673
1674         for (j = 0; ff_mkv_codec_tags[j].id != AV_CODEC_ID_NONE; j++) {
1675             if (!strncmp(ff_mkv_codec_tags[j].str, track->codec_id,
1676                          strlen(ff_mkv_codec_tags[j].str))) {
1677                 codec_id = ff_mkv_codec_tags[j].id;
1678                 break;
1679             }
1680         }
1681
1682         st = track->stream = avformat_new_stream(s, NULL);
1683         if (!st) {
1684             av_free(key_id_base64);
1685             return AVERROR(ENOMEM);
1686         }
1687
1688         if (key_id_base64) {
1689             /* export encryption key id as base64 metadata tag */
1690             av_dict_set(&st->metadata, "enc_key_id", key_id_base64, 0);
1691             av_freep(&key_id_base64);
1692         }
1693
1694         if (!strcmp(track->codec_id, "V_MS/VFW/FOURCC") &&
1695              track->codec_priv.size >= 40               &&
1696             track->codec_priv.data) {
1697             track->ms_compat    = 1;
1698             bit_depth           = AV_RL16(track->codec_priv.data + 14);
1699             fourcc              = AV_RL32(track->codec_priv.data + 16);
1700             codec_id            = ff_codec_get_id(ff_codec_bmp_tags,
1701                                                   fourcc);
1702             if (!codec_id)
1703                 codec_id        = ff_codec_get_id(ff_codec_movvideo_tags,
1704                                                   fourcc);
1705             extradata_offset    = 40;
1706         } else if (!strcmp(track->codec_id, "A_MS/ACM") &&
1707                    track->codec_priv.size >= 14         &&
1708                    track->codec_priv.data) {
1709             int ret;
1710             ffio_init_context(&b, track->codec_priv.data,
1711                               track->codec_priv.size,
1712                               0, NULL, NULL, NULL, NULL);
1713             ret = ff_get_wav_header(&b, st->codec, track->codec_priv.size);
1714             if (ret < 0)
1715                 return ret;
1716             codec_id         = st->codec->codec_id;
1717             extradata_offset = FFMIN(track->codec_priv.size, 18);
1718         } else if (!strcmp(track->codec_id, "A_QUICKTIME")
1719                    && (track->codec_priv.size >= 86)
1720                    && (track->codec_priv.data)) {
1721             fourcc = AV_RL32(track->codec_priv.data + 4);
1722             codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc);
1723             if (ff_codec_get_id(ff_codec_movaudio_tags, AV_RL32(track->codec_priv.data))) {
1724                 fourcc = AV_RL32(track->codec_priv.data);
1725                 codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc);
1726             }
1727         } else if (!strcmp(track->codec_id, "V_QUICKTIME") &&
1728                    (track->codec_priv.size >= 21)          &&
1729                    (track->codec_priv.data)) {
1730             fourcc   = AV_RL32(track->codec_priv.data + 4);
1731             codec_id = ff_codec_get_id(ff_codec_movvideo_tags, fourcc);
1732             if (ff_codec_get_id(ff_codec_movvideo_tags, AV_RL32(track->codec_priv.data))) {
1733                 fourcc   = AV_RL32(track->codec_priv.data);
1734                 codec_id = ff_codec_get_id(ff_codec_movvideo_tags, fourcc);
1735             }
1736             if (codec_id == AV_CODEC_ID_NONE && AV_RL32(track->codec_priv.data+4) == AV_RL32("SMI "))
1737                 codec_id = AV_CODEC_ID_SVQ3;
1738         } else if (codec_id == AV_CODEC_ID_PCM_S16BE) {
1739             switch (track->audio.bitdepth) {
1740             case  8:
1741                 codec_id = AV_CODEC_ID_PCM_U8;
1742                 break;
1743             case 24:
1744                 codec_id = AV_CODEC_ID_PCM_S24BE;
1745                 break;
1746             case 32:
1747                 codec_id = AV_CODEC_ID_PCM_S32BE;
1748                 break;
1749             }
1750         } else if (codec_id == AV_CODEC_ID_PCM_S16LE) {
1751             switch (track->audio.bitdepth) {
1752             case  8:
1753                 codec_id = AV_CODEC_ID_PCM_U8;
1754                 break;
1755             case 24:
1756                 codec_id = AV_CODEC_ID_PCM_S24LE;
1757                 break;
1758             case 32:
1759                 codec_id = AV_CODEC_ID_PCM_S32LE;
1760                 break;
1761             }
1762         } else if (codec_id == AV_CODEC_ID_PCM_F32LE &&
1763                    track->audio.bitdepth == 64) {
1764             codec_id = AV_CODEC_ID_PCM_F64LE;
1765         } else if (codec_id == AV_CODEC_ID_AAC && !track->codec_priv.size) {
1766             int profile = matroska_aac_profile(track->codec_id);
1767             int sri     = matroska_aac_sri(track->audio.samplerate);
1768             extradata   = av_mallocz(5 + FF_INPUT_BUFFER_PADDING_SIZE);
1769             if (!extradata)
1770                 return AVERROR(ENOMEM);
1771             extradata[0] = (profile << 3) | ((sri & 0x0E) >> 1);
1772             extradata[1] = ((sri & 0x01) << 7) | (track->audio.channels << 3);
1773             if (strstr(track->codec_id, "SBR")) {
1774                 sri            = matroska_aac_sri(track->audio.out_samplerate);
1775                 extradata[2]   = 0x56;
1776                 extradata[3]   = 0xE5;
1777                 extradata[4]   = 0x80 | (sri << 3);
1778                 extradata_size = 5;
1779             } else
1780                 extradata_size = 2;
1781         } else if (codec_id == AV_CODEC_ID_ALAC && track->codec_priv.size && track->codec_priv.size < INT_MAX - 12 - FF_INPUT_BUFFER_PADDING_SIZE) {
1782             /* Only ALAC's magic cookie is stored in Matroska's track headers.
1783              * Create the "atom size", "tag", and "tag version" fields the
1784              * decoder expects manually. */
1785             extradata_size = 12 + track->codec_priv.size;
1786             extradata      = av_mallocz(extradata_size +
1787                                         FF_INPUT_BUFFER_PADDING_SIZE);
1788             if (!extradata)
1789                 return AVERROR(ENOMEM);
1790             AV_WB32(extradata, extradata_size);
1791             memcpy(&extradata[4], "alac", 4);
1792             AV_WB32(&extradata[8], 0);
1793             memcpy(&extradata[12], track->codec_priv.data,
1794                    track->codec_priv.size);
1795         } else if (codec_id == AV_CODEC_ID_TTA) {
1796             extradata_size = 30;
1797             extradata      = av_mallocz(extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
1798             if (!extradata)
1799                 return AVERROR(ENOMEM);
1800             ffio_init_context(&b, extradata, extradata_size, 1,
1801                               NULL, NULL, NULL, NULL);
1802             avio_write(&b, "TTA1", 4);
1803             avio_wl16(&b, 1);
1804             avio_wl16(&b, track->audio.channels);
1805             avio_wl16(&b, track->audio.bitdepth);
1806             if (track->audio.out_samplerate < 0 || track->audio.out_samplerate > INT_MAX)
1807                 return AVERROR_INVALIDDATA;
1808             avio_wl32(&b, track->audio.out_samplerate);
1809             avio_wl32(&b, av_rescale((matroska->duration * matroska->time_scale),
1810                                      track->audio.out_samplerate,
1811                                      AV_TIME_BASE * 1000));
1812         } else if (codec_id == AV_CODEC_ID_RV10 ||
1813                    codec_id == AV_CODEC_ID_RV20 ||
1814                    codec_id == AV_CODEC_ID_RV30 ||
1815                    codec_id == AV_CODEC_ID_RV40) {
1816             extradata_offset = 26;
1817         } else if (codec_id == AV_CODEC_ID_RA_144) {
1818             track->audio.out_samplerate = 8000;
1819             track->audio.channels       = 1;
1820         } else if ((codec_id == AV_CODEC_ID_RA_288 ||
1821                     codec_id == AV_CODEC_ID_COOK   ||
1822                     codec_id == AV_CODEC_ID_ATRAC3 ||
1823                     codec_id == AV_CODEC_ID_SIPR)
1824                       && track->codec_priv.data) {
1825 #if CONFIG_RA_288_DECODER || CONFIG_COOK_DECODER || CONFIG_ATRAC3_DECODER || CONFIG_SIPR_DECODER
1826             int flavor;
1827
1828             ffio_init_context(&b, track->codec_priv.data,
1829                               track->codec_priv.size,
1830                               0, NULL, NULL, NULL, NULL);
1831             avio_skip(&b, 22);
1832             flavor                       = avio_rb16(&b);
1833             track->audio.coded_framesize = avio_rb32(&b);
1834             avio_skip(&b, 12);
1835             track->audio.sub_packet_h    = avio_rb16(&b);
1836             track->audio.frame_size      = avio_rb16(&b);
1837             track->audio.sub_packet_size = avio_rb16(&b);
1838             if (flavor                        < 0 ||
1839                 track->audio.coded_framesize <= 0 ||
1840                 track->audio.sub_packet_h    <= 0 ||
1841                 track->audio.frame_size      <= 0 ||
1842                 track->audio.sub_packet_size <= 0)
1843                 return AVERROR_INVALIDDATA;
1844             track->audio.buf = av_malloc_array(track->audio.sub_packet_h,
1845                                                track->audio.frame_size);
1846             if (!track->audio.buf)
1847                 return AVERROR(ENOMEM);
1848             if (codec_id == AV_CODEC_ID_RA_288) {
1849                 st->codec->block_align = track->audio.coded_framesize;
1850                 track->codec_priv.size = 0;
1851             } else {
1852                 if (codec_id == AV_CODEC_ID_SIPR && flavor < 4) {
1853                     static const int sipr_bit_rate[4] = { 6504, 8496, 5000, 16000 };
1854                     track->audio.sub_packet_size = ff_sipr_subpk_size[flavor];
1855                     st->codec->bit_rate          = sipr_bit_rate[flavor];
1856                 }
1857                 st->codec->block_align = track->audio.sub_packet_size;
1858                 extradata_offset       = 78;
1859             }
1860 #else
1861             /* Returning without closing would cause leaks with some files */
1862             matroska_read_close(s);
1863             return AVERROR_INVALIDDATA;
1864 #endif
1865         } else if (codec_id == AV_CODEC_ID_FLAC && track->codec_priv.size) {
1866             ret = matroska_parse_flac(s, track, &extradata_offset);
1867             if (ret < 0)
1868                 return ret;
1869         } else if (codec_id == AV_CODEC_ID_PRORES && track->codec_priv.size == 4) {
1870             fourcc = AV_RL32(track->codec_priv.data);
1871         }
1872         track->codec_priv.size -= extradata_offset;
1873
1874         if (codec_id == AV_CODEC_ID_NONE)
1875             av_log(matroska->ctx, AV_LOG_INFO,
1876                    "Unknown/unsupported AVCodecID %s.\n", track->codec_id);
1877
1878         if (track->time_scale < 0.01)
1879             track->time_scale = 1.0;
1880         avpriv_set_pts_info(st, 64, matroska->time_scale * track->time_scale,
1881                             1000 * 1000 * 1000);    /* 64 bit pts in ns */
1882
1883         /* convert the delay from ns to the track timebase */
1884         track->codec_delay = av_rescale_q(track->codec_delay,
1885                                           (AVRational){ 1, 1000000000 },
1886                                           st->time_base);
1887
1888         st->codec->codec_id = codec_id;
1889
1890         if (strcmp(track->language, "und"))
1891             av_dict_set(&st->metadata, "language", track->language, 0);
1892         av_dict_set(&st->metadata, "title", track->name, 0);
1893
1894         if (track->flag_default)
1895             st->disposition |= AV_DISPOSITION_DEFAULT;
1896         if (track->flag_forced)
1897             st->disposition |= AV_DISPOSITION_FORCED;
1898
1899         if (!st->codec->extradata) {
1900             if (extradata) {
1901                 st->codec->extradata      = extradata;
1902                 st->codec->extradata_size = extradata_size;
1903             } else if (track->codec_priv.data && track->codec_priv.size > 0) {
1904                 if (ff_alloc_extradata(st->codec, track->codec_priv.size))
1905                     return AVERROR(ENOMEM);
1906                 memcpy(st->codec->extradata,
1907                        track->codec_priv.data + extradata_offset,
1908                        track->codec_priv.size);
1909             }
1910         }
1911
1912         if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
1913             MatroskaTrackPlane *planes = track->operation.combine_planes.elem;
1914
1915             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
1916             st->codec->codec_tag  = fourcc;
1917             if (bit_depth >= 0)
1918                 st->codec->bits_per_coded_sample = bit_depth;
1919             st->codec->width      = track->video.pixel_width;
1920             st->codec->height     = track->video.pixel_height;
1921             av_reduce(&st->sample_aspect_ratio.num,
1922                       &st->sample_aspect_ratio.den,
1923                       st->codec->height * track->video.display_width,
1924                       st->codec->width  * track->video.display_height,
1925                       255);
1926             if (st->codec->codec_id != AV_CODEC_ID_HEVC)
1927                 st->need_parsing = AVSTREAM_PARSE_HEADERS;
1928
1929             if (track->default_duration) {
1930                 av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
1931                           1000000000, track->default_duration, 30000);
1932 #if FF_API_R_FRAME_RATE
1933                 if (st->avg_frame_rate.num < st->avg_frame_rate.den * 1000L)
1934                     st->r_frame_rate = st->avg_frame_rate;
1935 #endif
1936             }
1937
1938             /* export stereo mode flag as metadata tag */
1939             if (track->video.stereo_mode && track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB)
1940                 av_dict_set(&st->metadata, "stereo_mode", ff_matroska_video_stereo_mode[track->video.stereo_mode], 0);
1941
1942             /* export alpha mode flag as metadata tag  */
1943             if (track->video.alpha_mode)
1944                 av_dict_set(&st->metadata, "alpha_mode", "1", 0);
1945
1946             /* if we have virtual track, mark the real tracks */
1947             for (j=0; j < track->operation.combine_planes.nb_elem; j++) {
1948                 char buf[32];
1949                 if (planes[j].type >= MATROSKA_VIDEO_STEREO_PLANE_COUNT)
1950                     continue;
1951                 snprintf(buf, sizeof(buf), "%s_%d",
1952                          ff_matroska_video_stereo_plane[planes[j].type], i);
1953                 for (k=0; k < matroska->tracks.nb_elem; k++)
1954                     if (planes[j].uid == tracks[k].uid) {
1955                         av_dict_set(&s->streams[k]->metadata,
1956                                     "stereo_mode", buf, 0);
1957                         break;
1958                     }
1959             }
1960             // add stream level stereo3d side data if it is a supported format
1961             if (track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB &&
1962                 track->video.stereo_mode != 10 && track->video.stereo_mode != 12) {
1963                 int ret = ff_mkv_stereo3d_conv(st, track->video.stereo_mode);
1964                 if (ret < 0)
1965                     return ret;
1966             }
1967         } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
1968             st->codec->codec_type  = AVMEDIA_TYPE_AUDIO;
1969             st->codec->sample_rate = track->audio.out_samplerate;
1970             st->codec->channels    = track->audio.channels;
1971             if (!st->codec->bits_per_coded_sample)
1972                 st->codec->bits_per_coded_sample = track->audio.bitdepth;
1973             if (st->codec->codec_id != AV_CODEC_ID_AAC)
1974                 st->need_parsing = AVSTREAM_PARSE_HEADERS;
1975             if (track->codec_delay > 0) {
1976                 st->codec->delay = av_rescale_q(track->codec_delay,
1977                                                 st->time_base,
1978                                                 (AVRational){1, st->codec->sample_rate});
1979             }
1980             if (track->seek_preroll > 0) {
1981                 av_codec_set_seek_preroll(st->codec,
1982                                           av_rescale_q(track->seek_preroll,
1983                                                        (AVRational){1, 1000000000},
1984                                                        (AVRational){1, st->codec->sample_rate}));
1985             }
1986         } else if (codec_id == AV_CODEC_ID_WEBVTT) {
1987             st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
1988
1989             if (!strcmp(track->codec_id, "D_WEBVTT/CAPTIONS")) {
1990                 st->disposition |= AV_DISPOSITION_CAPTIONS;
1991             } else if (!strcmp(track->codec_id, "D_WEBVTT/DESCRIPTIONS")) {
1992                 st->disposition |= AV_DISPOSITION_DESCRIPTIONS;
1993             } else if (!strcmp(track->codec_id, "D_WEBVTT/METADATA")) {
1994                 st->disposition |= AV_DISPOSITION_METADATA;
1995             }
1996         } else if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE) {
1997             st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
1998             if (st->codec->codec_id == AV_CODEC_ID_ASS)
1999                 matroska->contains_ssa = 1;
2000         }
2001     }
2002
2003     return 0;
2004 }
2005
2006 static int matroska_read_header(AVFormatContext *s)
2007 {
2008     MatroskaDemuxContext *matroska = s->priv_data;
2009     EbmlList *attachments_list = &matroska->attachments;
2010     EbmlList *chapters_list    = &matroska->chapters;
2011     MatroskaAttachment *attachments;
2012     MatroskaChapter *chapters;
2013     uint64_t max_start = 0;
2014     int64_t pos;
2015     Ebml ebml = { 0 };
2016     int i, j, res;
2017
2018     matroska->ctx = s;
2019
2020     /* First read the EBML header. */
2021     if (ebml_parse(matroska, ebml_syntax, &ebml) ||
2022         ebml.version         > EBML_VERSION      ||
2023         ebml.max_size        > sizeof(uint64_t)  ||
2024         ebml.id_length       > sizeof(uint32_t)  ||
2025         ebml.doctype_version > 3                 ||
2026         !ebml.doctype) {
2027         av_log(matroska->ctx, AV_LOG_ERROR,
2028                "EBML header using unsupported features\n"
2029                "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n",
2030                ebml.version, ebml.doctype, ebml.doctype_version);
2031         ebml_free(ebml_syntax, &ebml);
2032         return AVERROR_PATCHWELCOME;
2033     } else if (ebml.doctype_version == 3) {
2034         av_log(matroska->ctx, AV_LOG_WARNING,
2035                "EBML header using unsupported features\n"
2036                "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n",
2037                ebml.version, ebml.doctype, ebml.doctype_version);
2038     }
2039     for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++)
2040         if (!strcmp(ebml.doctype, matroska_doctypes[i]))
2041             break;
2042     if (i >= FF_ARRAY_ELEMS(matroska_doctypes)) {
2043         av_log(s, AV_LOG_WARNING, "Unknown EBML doctype '%s'\n", ebml.doctype);
2044         if (matroska->ctx->error_recognition & AV_EF_EXPLODE) {
2045             ebml_free(ebml_syntax, &ebml);
2046             return AVERROR_INVALIDDATA;
2047         }
2048     }
2049     ebml_free(ebml_syntax, &ebml);
2050
2051     /* The next thing is a segment. */
2052     pos = avio_tell(matroska->ctx->pb);
2053     res = ebml_parse(matroska, matroska_segments, matroska);
2054     // try resyncing until we find a EBML_STOP type element.
2055     while (res != 1) {
2056         res = matroska_resync(matroska, pos);
2057         if (res < 0)
2058             return res;
2059         pos = avio_tell(matroska->ctx->pb);
2060         res = ebml_parse(matroska, matroska_segment, matroska);
2061     }
2062     matroska_execute_seekhead(matroska);
2063
2064     if (!matroska->time_scale)
2065         matroska->time_scale = 1000000;
2066     if (matroska->duration)
2067         matroska->ctx->duration = matroska->duration * matroska->time_scale *
2068                                   1000 / AV_TIME_BASE;
2069     av_dict_set(&s->metadata, "title", matroska->title, 0);
2070     av_dict_set(&s->metadata, "encoder", matroska->muxingapp, 0);
2071
2072     if (matroska->date_utc.size == 8)
2073         matroska_metadata_creation_time(&s->metadata, AV_RB64(matroska->date_utc.data));
2074
2075     res = matroska_parse_tracks(s);
2076     if (res < 0)
2077         return res;
2078
2079     attachments = attachments_list->elem;
2080     for (j = 0; j < attachments_list->nb_elem; j++) {
2081         if (!(attachments[j].filename && attachments[j].mime &&
2082               attachments[j].bin.data && attachments[j].bin.size > 0)) {
2083             av_log(matroska->ctx, AV_LOG_ERROR, "incomplete attachment\n");
2084         } else {
2085             AVStream *st = avformat_new_stream(s, NULL);
2086             if (!st)
2087                 break;
2088             av_dict_set(&st->metadata, "filename", attachments[j].filename, 0);
2089             av_dict_set(&st->metadata, "mimetype", attachments[j].mime, 0);
2090             st->codec->codec_id   = AV_CODEC_ID_NONE;
2091             st->codec->codec_type = AVMEDIA_TYPE_ATTACHMENT;
2092             if (ff_alloc_extradata(st->codec, attachments[j].bin.size))
2093                 break;
2094             memcpy(st->codec->extradata, attachments[j].bin.data,
2095                    attachments[j].bin.size);
2096
2097             for (i = 0; ff_mkv_mime_tags[i].id != AV_CODEC_ID_NONE; i++) {
2098                 if (!strncmp(ff_mkv_mime_tags[i].str, attachments[j].mime,
2099                              strlen(ff_mkv_mime_tags[i].str))) {
2100                     st->codec->codec_id = ff_mkv_mime_tags[i].id;
2101                     break;
2102                 }
2103             }
2104             attachments[j].stream = st;
2105         }
2106     }
2107
2108     chapters = chapters_list->elem;
2109     for (i = 0; i < chapters_list->nb_elem; i++)
2110         if (chapters[i].start != AV_NOPTS_VALUE && chapters[i].uid &&
2111             (max_start == 0 || chapters[i].start > max_start)) {
2112             chapters[i].chapter =
2113                 avpriv_new_chapter(s, chapters[i].uid,
2114                                    (AVRational) { 1, 1000000000 },
2115                                    chapters[i].start, chapters[i].end,
2116                                    chapters[i].title);
2117             if (chapters[i].chapter) {
2118                 av_dict_set(&chapters[i].chapter->metadata,
2119                             "title", chapters[i].title, 0);
2120             }
2121             max_start = chapters[i].start;
2122         }
2123
2124     matroska_add_index_entries(matroska);
2125
2126     matroska_convert_tags(s);
2127
2128     return 0;
2129 }
2130
2131 /*
2132  * Put one packet in an application-supplied AVPacket struct.
2133  * Returns 0 on success or -1 on failure.
2134  */
2135 static int matroska_deliver_packet(MatroskaDemuxContext *matroska,
2136                                    AVPacket *pkt)
2137 {
2138     if (matroska->num_packets > 0) {
2139         memcpy(pkt, matroska->packets[0], sizeof(AVPacket));
2140         av_free(matroska->packets[0]);
2141         if (matroska->num_packets > 1) {
2142             void *newpackets;
2143             memmove(&matroska->packets[0], &matroska->packets[1],
2144                     (matroska->num_packets - 1) * sizeof(AVPacket *));
2145             newpackets = av_realloc(matroska->packets,
2146                                     (matroska->num_packets - 1) *
2147                                     sizeof(AVPacket *));
2148             if (newpackets)
2149                 matroska->packets = newpackets;
2150         } else {
2151             av_freep(&matroska->packets);
2152             matroska->prev_pkt = NULL;
2153         }
2154         matroska->num_packets--;
2155         return 0;
2156     }
2157
2158     return -1;
2159 }
2160
2161 /*
2162  * Free all packets in our internal queue.
2163  */
2164 static void matroska_clear_queue(MatroskaDemuxContext *matroska)
2165 {
2166     matroska->prev_pkt = NULL;
2167     if (matroska->packets) {
2168         int n;
2169         for (n = 0; n < matroska->num_packets; n++) {
2170             av_free_packet(matroska->packets[n]);
2171             av_free(matroska->packets[n]);
2172         }
2173         av_freep(&matroska->packets);
2174         matroska->num_packets = 0;
2175     }
2176 }
2177
2178 static int matroska_parse_laces(MatroskaDemuxContext *matroska, uint8_t **buf,
2179                                 int *buf_size, int type,
2180                                 uint32_t **lace_buf, int *laces)
2181 {
2182     int res = 0, n, size = *buf_size;
2183     uint8_t *data = *buf;
2184     uint32_t *lace_size;
2185
2186     if (!type) {
2187         *laces    = 1;
2188         *lace_buf = av_mallocz(sizeof(int));
2189         if (!*lace_buf)
2190             return AVERROR(ENOMEM);
2191
2192         *lace_buf[0] = size;
2193         return 0;
2194     }
2195
2196     av_assert0(size > 0);
2197     *laces    = *data + 1;
2198     data     += 1;
2199     size     -= 1;
2200     lace_size = av_mallocz(*laces * sizeof(int));
2201     if (!lace_size)
2202         return AVERROR(ENOMEM);
2203
2204     switch (type) {
2205     case 0x1: /* Xiph lacing */
2206     {
2207         uint8_t temp;
2208         uint32_t total = 0;
2209         for (n = 0; res == 0 && n < *laces - 1; n++) {
2210             while (1) {
2211                 if (size <= total) {
2212                     res = AVERROR_INVALIDDATA;
2213                     break;
2214                 }
2215                 temp          = *data;
2216                 total        += temp;
2217                 lace_size[n] += temp;
2218                 data         += 1;
2219                 size         -= 1;
2220                 if (temp != 0xff)
2221                     break;
2222             }
2223         }
2224         if (size <= total) {
2225             res = AVERROR_INVALIDDATA;
2226             break;
2227         }
2228
2229         lace_size[n] = size - total;
2230         break;
2231     }
2232
2233     case 0x2: /* fixed-size lacing */
2234         if (size % (*laces)) {
2235             res = AVERROR_INVALIDDATA;
2236             break;
2237         }
2238         for (n = 0; n < *laces; n++)
2239             lace_size[n] = size / *laces;
2240         break;
2241
2242     case 0x3: /* EBML lacing */
2243     {
2244         uint64_t num;
2245         uint64_t total;
2246         n = matroska_ebmlnum_uint(matroska, data, size, &num);
2247         if (n < 0 || num > INT_MAX) {
2248             av_log(matroska->ctx, AV_LOG_INFO,
2249                    "EBML block data error\n");
2250             res = n<0 ? n : AVERROR_INVALIDDATA;
2251             break;
2252         }
2253         data += n;
2254         size -= n;
2255         total = lace_size[0] = num;
2256         for (n = 1; res == 0 && n < *laces - 1; n++) {
2257             int64_t snum;
2258             int r;
2259             r = matroska_ebmlnum_sint(matroska, data, size, &snum);
2260             if (r < 0 || lace_size[n - 1] + snum > (uint64_t)INT_MAX) {
2261                 av_log(matroska->ctx, AV_LOG_INFO,
2262                        "EBML block data error\n");
2263                 res = r<0 ? r : AVERROR_INVALIDDATA;
2264                 break;
2265             }
2266             data        += r;
2267             size        -= r;
2268             lace_size[n] = lace_size[n - 1] + snum;
2269             total       += lace_size[n];
2270         }
2271         if (size <= total) {
2272             res = AVERROR_INVALIDDATA;
2273             break;
2274         }
2275         lace_size[*laces - 1] = size - total;
2276         break;
2277     }
2278     }
2279
2280     *buf      = data;
2281     *lace_buf = lace_size;
2282     *buf_size = size;
2283
2284     return res;
2285 }
2286
2287 static int matroska_parse_rm_audio(MatroskaDemuxContext *matroska,
2288                                    MatroskaTrack *track, AVStream *st,
2289                                    uint8_t *data, int size, uint64_t timecode,
2290                                    int64_t pos)
2291 {
2292     int a = st->codec->block_align;
2293     int sps = track->audio.sub_packet_size;
2294     int cfs = track->audio.coded_framesize;
2295     int h   = track->audio.sub_packet_h;
2296     int y   = track->audio.sub_packet_cnt;
2297     int w   = track->audio.frame_size;
2298     int x;
2299
2300     if (!track->audio.pkt_cnt) {
2301         if (track->audio.sub_packet_cnt == 0)
2302             track->audio.buf_timecode = timecode;
2303         if (st->codec->codec_id == AV_CODEC_ID_RA_288) {
2304             if (size < cfs * h / 2) {
2305                 av_log(matroska->ctx, AV_LOG_ERROR,
2306                        "Corrupt int4 RM-style audio packet size\n");
2307                 return AVERROR_INVALIDDATA;
2308             }
2309             for (x = 0; x < h / 2; x++)
2310                 memcpy(track->audio.buf + x * 2 * w + y * cfs,
2311                        data + x * cfs, cfs);
2312         } else if (st->codec->codec_id == AV_CODEC_ID_SIPR) {
2313             if (size < w) {
2314                 av_log(matroska->ctx, AV_LOG_ERROR,
2315                        "Corrupt sipr RM-style audio packet size\n");
2316                 return AVERROR_INVALIDDATA;
2317             }
2318             memcpy(track->audio.buf + y * w, data, w);
2319         } else {
2320             if (size < sps * w / sps || h<=0 || w%sps) {
2321                 av_log(matroska->ctx, AV_LOG_ERROR,
2322                        "Corrupt generic RM-style audio packet size\n");
2323                 return AVERROR_INVALIDDATA;
2324             }
2325             for (x = 0; x < w / sps; x++)
2326                 memcpy(track->audio.buf +
2327                        sps * (h * x + ((h + 1) / 2) * (y & 1) + (y >> 1)),
2328                        data + x * sps, sps);
2329         }
2330
2331         if (++track->audio.sub_packet_cnt >= h) {
2332             if (st->codec->codec_id == AV_CODEC_ID_SIPR) {
2333 #if CONFIG_SIPR_DECODER
2334                 ff_rm_reorder_sipr_data(track->audio.buf, h, w);
2335 #else
2336                 return AVERROR_INVALIDDATA;
2337 #endif
2338             }
2339             track->audio.sub_packet_cnt = 0;
2340             track->audio.pkt_cnt        = h * w / a;
2341         }
2342     }
2343
2344     while (track->audio.pkt_cnt) {
2345         AVPacket *pkt = NULL;
2346         if (!(pkt = av_mallocz(sizeof(AVPacket))) || av_new_packet(pkt, a) < 0) {
2347             av_free(pkt);
2348             return AVERROR(ENOMEM);
2349         }
2350         memcpy(pkt->data,
2351                track->audio.buf + a * (h * w / a - track->audio.pkt_cnt--),
2352                a);
2353         pkt->pts                  = track->audio.buf_timecode;
2354         track->audio.buf_timecode = AV_NOPTS_VALUE;
2355         pkt->pos                  = pos;
2356         pkt->stream_index         = st->index;
2357         dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
2358     }
2359
2360     return 0;
2361 }
2362
2363 /* reconstruct full wavpack blocks from mangled matroska ones */
2364 static int matroska_parse_wavpack(MatroskaTrack *track, uint8_t *src,
2365                                   uint8_t **pdst, int *size)
2366 {
2367     uint8_t *dst = NULL;
2368     int dstlen   = 0;
2369     int srclen   = *size;
2370     uint32_t samples;
2371     uint16_t ver;
2372     int ret, offset = 0;
2373
2374     if (srclen < 12 || track->stream->codec->extradata_size < 2)
2375         return AVERROR_INVALIDDATA;
2376
2377     ver = AV_RL16(track->stream->codec->extradata);
2378
2379     samples = AV_RL32(src);
2380     src    += 4;
2381     srclen -= 4;
2382
2383     while (srclen >= 8) {
2384         int multiblock;
2385         uint32_t blocksize;
2386         uint8_t *tmp;
2387
2388         uint32_t flags = AV_RL32(src);
2389         uint32_t crc   = AV_RL32(src + 4);
2390         src    += 8;
2391         srclen -= 8;
2392
2393         multiblock = (flags & 0x1800) != 0x1800;
2394         if (multiblock) {
2395             if (srclen < 4) {
2396                 ret = AVERROR_INVALIDDATA;
2397                 goto fail;
2398             }
2399             blocksize = AV_RL32(src);
2400             src      += 4;
2401             srclen   -= 4;
2402         } else
2403             blocksize = srclen;
2404
2405         if (blocksize > srclen) {
2406             ret = AVERROR_INVALIDDATA;
2407             goto fail;
2408         }
2409
2410         tmp = av_realloc(dst, dstlen + blocksize + 32);
2411         if (!tmp) {
2412             ret = AVERROR(ENOMEM);
2413             goto fail;
2414         }
2415         dst     = tmp;
2416         dstlen += blocksize + 32;
2417
2418         AV_WL32(dst + offset, MKTAG('w', 'v', 'p', 'k'));   // tag
2419         AV_WL32(dst + offset +  4, blocksize + 24);         // blocksize - 8
2420         AV_WL16(dst + offset +  8, ver);                    // version
2421         AV_WL16(dst + offset + 10, 0);                      // track/index_no
2422         AV_WL32(dst + offset + 12, 0);                      // total samples
2423         AV_WL32(dst + offset + 16, 0);                      // block index
2424         AV_WL32(dst + offset + 20, samples);                // number of samples
2425         AV_WL32(dst + offset + 24, flags);                  // flags
2426         AV_WL32(dst + offset + 28, crc);                    // crc
2427         memcpy(dst + offset + 32, src, blocksize);          // block data
2428
2429         src    += blocksize;
2430         srclen -= blocksize;
2431         offset += blocksize + 32;
2432     }
2433
2434     *pdst = dst;
2435     *size = dstlen;
2436
2437     return 0;
2438
2439 fail:
2440     av_freep(&dst);
2441     return ret;
2442 }
2443
2444 static int matroska_parse_webvtt(MatroskaDemuxContext *matroska,
2445                                  MatroskaTrack *track,
2446                                  AVStream *st,
2447                                  uint8_t *data, int data_len,
2448                                  uint64_t timecode,
2449                                  uint64_t duration,
2450                                  int64_t pos)
2451 {
2452     AVPacket *pkt;
2453     uint8_t *id, *settings, *text, *buf;
2454     int id_len, settings_len, text_len;
2455     uint8_t *p, *q;
2456     int err;
2457
2458     if (data_len <= 0)
2459         return AVERROR_INVALIDDATA;
2460
2461     p = data;
2462     q = data + data_len;
2463
2464     id = p;
2465     id_len = -1;
2466     while (p < q) {
2467         if (*p == '\r' || *p == '\n') {
2468             id_len = p - id;
2469             if (*p == '\r')
2470                 p++;
2471             break;
2472         }
2473         p++;
2474     }
2475
2476     if (p >= q || *p != '\n')
2477         return AVERROR_INVALIDDATA;
2478     p++;
2479
2480     settings = p;
2481     settings_len = -1;
2482     while (p < q) {
2483         if (*p == '\r' || *p == '\n') {
2484             settings_len = p - settings;
2485             if (*p == '\r')
2486                 p++;
2487             break;
2488         }
2489         p++;
2490     }
2491
2492     if (p >= q || *p != '\n')
2493         return AVERROR_INVALIDDATA;
2494     p++;
2495
2496     text = p;
2497     text_len = q - p;
2498     while (text_len > 0) {
2499         const int len = text_len - 1;
2500         const uint8_t c = p[len];
2501         if (c != '\r' && c != '\n')
2502             break;
2503         text_len = len;
2504     }
2505
2506     if (text_len <= 0)
2507         return AVERROR_INVALIDDATA;
2508
2509     pkt = av_mallocz(sizeof(*pkt));
2510     err = av_new_packet(pkt, text_len);
2511     if (err < 0) {
2512         av_free(pkt);
2513         return AVERROR(err);
2514     }
2515
2516     memcpy(pkt->data, text, text_len);
2517
2518     if (id_len > 0) {
2519         buf = av_packet_new_side_data(pkt,
2520                                       AV_PKT_DATA_WEBVTT_IDENTIFIER,
2521                                       id_len);
2522         if (!buf) {
2523             av_free(pkt);
2524             return AVERROR(ENOMEM);
2525         }
2526         memcpy(buf, id, id_len);
2527     }
2528
2529     if (settings_len > 0) {
2530         buf = av_packet_new_side_data(pkt,
2531                                       AV_PKT_DATA_WEBVTT_SETTINGS,
2532                                       settings_len);
2533         if (!buf) {
2534             av_free(pkt);
2535             return AVERROR(ENOMEM);
2536         }
2537         memcpy(buf, settings, settings_len);
2538     }
2539
2540     // Do we need this for subtitles?
2541     // pkt->flags = AV_PKT_FLAG_KEY;
2542
2543     pkt->stream_index = st->index;
2544     pkt->pts = timecode;
2545
2546     // Do we need this for subtitles?
2547     // pkt->dts = timecode;
2548
2549     pkt->duration = duration;
2550     pkt->pos = pos;
2551
2552     dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
2553     matroska->prev_pkt = pkt;
2554
2555     return 0;
2556 }
2557
2558 static int matroska_parse_frame(MatroskaDemuxContext *matroska,
2559                                 MatroskaTrack *track, AVStream *st,
2560                                 uint8_t *data, int pkt_size,
2561                                 uint64_t timecode, uint64_t lace_duration,
2562                                 int64_t pos, int is_keyframe,
2563                                 uint8_t *additional, uint64_t additional_id, int additional_size,
2564                                 int64_t discard_padding)
2565 {
2566     MatroskaTrackEncoding *encodings = track->encodings.elem;
2567     uint8_t *pkt_data = data;
2568     int offset = 0, res;
2569     AVPacket *pkt;
2570
2571     if (encodings && !encodings->type && encodings->scope & 1) {
2572         res = matroska_decode_buffer(&pkt_data, &pkt_size, track);
2573         if (res < 0)
2574             return res;
2575     }
2576
2577     if (st->codec->codec_id == AV_CODEC_ID_WAVPACK) {
2578         uint8_t *wv_data;
2579         res = matroska_parse_wavpack(track, pkt_data, &wv_data, &pkt_size);
2580         if (res < 0) {
2581             av_log(matroska->ctx, AV_LOG_ERROR,
2582                    "Error parsing a wavpack block.\n");
2583             goto fail;
2584         }
2585         if (pkt_data != data)
2586             av_freep(&pkt_data);
2587         pkt_data = wv_data;
2588     }
2589
2590     if (st->codec->codec_id == AV_CODEC_ID_PRORES &&
2591         AV_RB32(&data[4]) != MKBETAG('i', 'c', 'p', 'f'))
2592         offset = 8;
2593
2594     pkt = av_mallocz(sizeof(AVPacket));
2595     /* XXX: prevent data copy... */
2596     if (av_new_packet(pkt, pkt_size + offset) < 0) {
2597         av_free(pkt);
2598         res = AVERROR(ENOMEM);
2599         goto fail;
2600     }
2601
2602     if (st->codec->codec_id == AV_CODEC_ID_PRORES && offset == 8) {
2603         uint8_t *buf = pkt->data;
2604         bytestream_put_be32(&buf, pkt_size);
2605         bytestream_put_be32(&buf, MKBETAG('i', 'c', 'p', 'f'));
2606     }
2607
2608     memcpy(pkt->data + offset, pkt_data, pkt_size);
2609
2610     if (pkt_data != data)
2611         av_freep(&pkt_data);
2612
2613     pkt->flags        = is_keyframe;
2614     pkt->stream_index = st->index;
2615
2616     if (additional_size > 0) {
2617         uint8_t *side_data = av_packet_new_side_data(pkt,
2618                                                      AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL,
2619                                                      additional_size + 8);
2620         if (!side_data) {
2621             av_free_packet(pkt);
2622             av_free(pkt);
2623             return AVERROR(ENOMEM);
2624         }
2625         AV_WB64(side_data, additional_id);
2626         memcpy(side_data + 8, additional, additional_size);
2627     }
2628
2629     if (discard_padding) {
2630         uint8_t *side_data = av_packet_new_side_data(pkt,
2631                                                      AV_PKT_DATA_SKIP_SAMPLES,
2632                                                      10);
2633         if (!side_data) {
2634             av_free_packet(pkt);
2635             av_free(pkt);
2636             return AVERROR(ENOMEM);
2637         }
2638         AV_WL32(side_data, 0);
2639         AV_WL32(side_data + 4, av_rescale_q(discard_padding,
2640                                             (AVRational){1, 1000000000},
2641                                             (AVRational){1, st->codec->sample_rate}));
2642     }
2643
2644     if (track->ms_compat)
2645         pkt->dts = timecode;
2646     else
2647         pkt->pts = timecode;
2648     pkt->pos = pos;
2649     if (st->codec->codec_id == AV_CODEC_ID_SUBRIP) {
2650         /*
2651          * For backward compatibility.
2652          * Historically, we have put subtitle duration
2653          * in convergence_duration, on the off chance
2654          * that the time_scale is less than 1us, which
2655          * could result in a 32bit overflow on the
2656          * normal duration field.
2657          */
2658         pkt->convergence_duration = lace_duration;
2659     }
2660
2661     if (track->type != MATROSKA_TRACK_TYPE_SUBTITLE ||
2662         lace_duration <= INT_MAX) {
2663         /*
2664          * For non subtitle tracks, just store the duration
2665          * as normal.
2666          *
2667          * If it's a subtitle track and duration value does
2668          * not overflow a uint32, then also store it normally.
2669          */
2670         pkt->duration = lace_duration;
2671     }
2672
2673     dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
2674     matroska->prev_pkt = pkt;
2675
2676     return 0;
2677
2678 fail:
2679     if (pkt_data != data)
2680         av_freep(&pkt_data);
2681     return res;
2682 }
2683
2684 static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data,
2685                                 int size, int64_t pos, uint64_t cluster_time,
2686                                 uint64_t block_duration, int is_keyframe,
2687                                 uint8_t *additional, uint64_t additional_id, int additional_size,
2688                                 int64_t cluster_pos, int64_t discard_padding)
2689 {
2690     uint64_t timecode = AV_NOPTS_VALUE;
2691     MatroskaTrack *track;
2692     int res = 0;
2693     AVStream *st;
2694     int16_t block_time;
2695     uint32_t *lace_size = NULL;
2696     int n, flags, laces = 0;
2697     uint64_t num;
2698     int trust_default_duration = 1;
2699
2700     if ((n = matroska_ebmlnum_uint(matroska, data, size, &num)) < 0) {
2701         av_log(matroska->ctx, AV_LOG_ERROR, "EBML block data error\n");
2702         return n;
2703     }
2704     data += n;
2705     size -= n;
2706
2707     track = matroska_find_track_by_num(matroska, num);
2708     if (!track || !track->stream) {
2709         av_log(matroska->ctx, AV_LOG_INFO,
2710                "Invalid stream %"PRIu64" or size %u\n", num, size);
2711         return AVERROR_INVALIDDATA;
2712     } else if (size <= 3)
2713         return 0;
2714     st = track->stream;
2715     if (st->discard >= AVDISCARD_ALL)
2716         return res;
2717     av_assert1(block_duration != AV_NOPTS_VALUE);
2718
2719     block_time = sign_extend(AV_RB16(data), 16);
2720     data      += 2;
2721     flags      = *data++;
2722     size      -= 3;
2723     if (is_keyframe == -1)
2724         is_keyframe = flags & 0x80 ? AV_PKT_FLAG_KEY : 0;
2725
2726     if (cluster_time != (uint64_t) -1 &&
2727         (block_time >= 0 || cluster_time >= -block_time)) {
2728         timecode = cluster_time + block_time - track->codec_delay;
2729         if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE &&
2730             timecode < track->end_timecode)
2731             is_keyframe = 0;  /* overlapping subtitles are not key frame */
2732         if (is_keyframe)
2733             av_add_index_entry(st, cluster_pos, timecode, 0, 0,
2734                                AVINDEX_KEYFRAME);
2735     }
2736
2737     if (matroska->skip_to_keyframe &&
2738         track->type != MATROSKA_TRACK_TYPE_SUBTITLE) {
2739         if (timecode < matroska->skip_to_timecode)
2740             return res;
2741         if (is_keyframe)
2742             matroska->skip_to_keyframe = 0;
2743         else if (!st->skip_to_keyframe) {
2744             av_log(matroska->ctx, AV_LOG_ERROR, "File is broken, keyframes not correctly marked!\n");
2745             matroska->skip_to_keyframe = 0;
2746         }
2747     }
2748
2749     res = matroska_parse_laces(matroska, &data, &size, (flags & 0x06) >> 1,
2750                                &lace_size, &laces);
2751
2752     if (res)
2753         goto end;
2754
2755     if (track->audio.samplerate == 8000) {
2756         // If this is needed for more codecs, then add them here
2757         if (st->codec->codec_id == AV_CODEC_ID_AC3) {
2758             if (track->audio.samplerate != st->codec->sample_rate || !st->codec->frame_size)
2759                 trust_default_duration = 0;
2760         }
2761     }
2762
2763     if (!block_duration && trust_default_duration)
2764         block_duration = track->default_duration * laces / matroska->time_scale;
2765
2766     if (cluster_time != (uint64_t)-1 && (block_time >= 0 || cluster_time >= -block_time))
2767         track->end_timecode =
2768             FFMAX(track->end_timecode, timecode + block_duration);
2769
2770     for (n = 0; n < laces; n++) {
2771         int64_t lace_duration = block_duration*(n+1) / laces - block_duration*n / laces;
2772
2773         if (lace_size[n] > size) {
2774             av_log(matroska->ctx, AV_LOG_ERROR, "Invalid packet size\n");
2775             break;
2776         }
2777
2778         if ((st->codec->codec_id == AV_CODEC_ID_RA_288 ||
2779              st->codec->codec_id == AV_CODEC_ID_COOK   ||
2780              st->codec->codec_id == AV_CODEC_ID_SIPR   ||
2781              st->codec->codec_id == AV_CODEC_ID_ATRAC3) &&
2782             st->codec->block_align && track->audio.sub_packet_size) {
2783 #if CONFIG_RA_288_DECODER || CONFIG_COOK_DECODER || CONFIG_ATRAC3_DECODER || CONFIG_SIPR_DECODER
2784             res = matroska_parse_rm_audio(matroska, track, st, data,
2785                                           lace_size[n],
2786                                           timecode, pos);
2787 #else
2788             res = AVERROR_INVALIDDATA;
2789 #endif
2790             if (res)
2791                 goto end;
2792
2793         } else if (st->codec->codec_id == AV_CODEC_ID_WEBVTT) {
2794             res = matroska_parse_webvtt(matroska, track, st,
2795                                         data, lace_size[n],
2796                                         timecode, lace_duration,
2797                                         pos);
2798             if (res)
2799                 goto end;
2800         } else {
2801             res = matroska_parse_frame(matroska, track, st, data, lace_size[n],
2802                                        timecode, lace_duration, pos,
2803                                        !n ? is_keyframe : 0,
2804                                        additional, additional_id, additional_size,
2805                                        discard_padding);
2806             if (res)
2807                 goto end;
2808         }
2809
2810         if (timecode != AV_NOPTS_VALUE)
2811             timecode = lace_duration ? timecode + lace_duration : AV_NOPTS_VALUE;
2812         data += lace_size[n];
2813         size -= lace_size[n];
2814     }
2815
2816 end:
2817     av_free(lace_size);
2818     return res;
2819 }
2820
2821 static int matroska_parse_cluster_incremental(MatroskaDemuxContext *matroska)
2822 {
2823     EbmlList *blocks_list;
2824     MatroskaBlock *blocks;
2825     int i, res;
2826     res = ebml_parse(matroska,
2827                      matroska_cluster_incremental_parsing,
2828                      &matroska->current_cluster);
2829     if (res == 1) {
2830         /* New Cluster */
2831         if (matroska->current_cluster_pos)
2832             ebml_level_end(matroska);
2833         ebml_free(matroska_cluster, &matroska->current_cluster);
2834         memset(&matroska->current_cluster, 0, sizeof(MatroskaCluster));
2835         matroska->current_cluster_num_blocks = 0;
2836         matroska->current_cluster_pos        = avio_tell(matroska->ctx->pb);
2837         matroska->prev_pkt                   = NULL;
2838         /* sizeof the ID which was already read */
2839         if (matroska->current_id)
2840             matroska->current_cluster_pos -= 4;
2841         res = ebml_parse(matroska,
2842                          matroska_clusters_incremental,
2843                          &matroska->current_cluster);
2844         /* Try parsing the block again. */
2845         if (res == 1)
2846             res = ebml_parse(matroska,
2847                              matroska_cluster_incremental_parsing,
2848                              &matroska->current_cluster);
2849     }
2850
2851     if (!res &&
2852         matroska->current_cluster_num_blocks <
2853         matroska->current_cluster.blocks.nb_elem) {
2854         blocks_list = &matroska->current_cluster.blocks;
2855         blocks      = blocks_list->elem;
2856
2857         matroska->current_cluster_num_blocks = blocks_list->nb_elem;
2858         i                                    = blocks_list->nb_elem - 1;
2859         if (blocks[i].bin.size > 0 && blocks[i].bin.data) {
2860             int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1;
2861             uint8_t* additional = blocks[i].additional.size > 0 ?
2862                                     blocks[i].additional.data : NULL;
2863             if (!blocks[i].non_simple)
2864                 blocks[i].duration = 0;
2865             res = matroska_parse_block(matroska, blocks[i].bin.data,
2866                                        blocks[i].bin.size, blocks[i].bin.pos,
2867                                        matroska->current_cluster.timecode,
2868                                        blocks[i].duration, is_keyframe,
2869                                        additional, blocks[i].additional_id,
2870                                        blocks[i].additional.size,
2871                                        matroska->current_cluster_pos,
2872                                        blocks[i].discard_padding);
2873         }
2874     }
2875
2876     return res;
2877 }
2878
2879 static int matroska_parse_cluster(MatroskaDemuxContext *matroska)
2880 {
2881     MatroskaCluster cluster = { 0 };
2882     EbmlList *blocks_list;
2883     MatroskaBlock *blocks;
2884     int i, res;
2885     int64_t pos;
2886
2887     if (!matroska->contains_ssa)
2888         return matroska_parse_cluster_incremental(matroska);
2889     pos = avio_tell(matroska->ctx->pb);
2890     matroska->prev_pkt = NULL;
2891     if (matroska->current_id)
2892         pos -= 4;  /* sizeof the ID which was already read */
2893     res         = ebml_parse(matroska, matroska_clusters, &cluster);
2894     blocks_list = &cluster.blocks;
2895     blocks      = blocks_list->elem;
2896     for (i = 0; i < blocks_list->nb_elem; i++)
2897         if (blocks[i].bin.size > 0 && blocks[i].bin.data) {
2898             int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1;
2899             res = matroska_parse_block(matroska, blocks[i].bin.data,
2900                                        blocks[i].bin.size, blocks[i].bin.pos,
2901                                        cluster.timecode, blocks[i].duration,
2902                                        is_keyframe, NULL, 0, 0, pos,
2903                                        blocks[i].discard_padding);
2904         }
2905     ebml_free(matroska_cluster, &cluster);
2906     return res;
2907 }
2908
2909 static int matroska_read_packet(AVFormatContext *s, AVPacket *pkt)
2910 {
2911     MatroskaDemuxContext *matroska = s->priv_data;
2912
2913     while (matroska_deliver_packet(matroska, pkt)) {
2914         int64_t pos = avio_tell(matroska->ctx->pb);
2915         if (matroska->done)
2916             return AVERROR_EOF;
2917         if (matroska_parse_cluster(matroska) < 0)
2918             matroska_resync(matroska, pos);
2919     }
2920
2921     return 0;
2922 }
2923
2924 static int matroska_read_seek(AVFormatContext *s, int stream_index,
2925                               int64_t timestamp, int flags)
2926 {
2927     MatroskaDemuxContext *matroska = s->priv_data;
2928     MatroskaTrack *tracks = NULL;
2929     AVStream *st = s->streams[stream_index];
2930     int i, index, index_sub, index_min;
2931
2932     /* Parse the CUES now since we need the index data to seek. */
2933     if (matroska->cues_parsing_deferred > 0) {
2934         matroska->cues_parsing_deferred = 0;
2935         matroska_parse_cues(matroska);
2936     }
2937
2938     if (!st->nb_index_entries)
2939         goto err;
2940     timestamp = FFMAX(timestamp, st->index_entries[0].timestamp);
2941
2942     if ((index = av_index_search_timestamp(st, timestamp, flags)) < 0) {
2943         avio_seek(s->pb, st->index_entries[st->nb_index_entries - 1].pos,
2944                   SEEK_SET);
2945         matroska->current_id = 0;
2946         while ((index = av_index_search_timestamp(st, timestamp, flags)) < 0) {
2947             matroska_clear_queue(matroska);
2948             if (matroska_parse_cluster(matroska) < 0)
2949                 break;
2950         }
2951     }
2952
2953     matroska_clear_queue(matroska);
2954     if (index < 0 || (matroska->cues_parsing_deferred < 0 && index == st->nb_index_entries - 1))
2955         goto err;
2956
2957     index_min = index;
2958     tracks = matroska->tracks.elem;
2959     for (i = 0; i < matroska->tracks.nb_elem; i++) {
2960         tracks[i].audio.pkt_cnt        = 0;
2961         tracks[i].audio.sub_packet_cnt = 0;
2962         tracks[i].audio.buf_timecode   = AV_NOPTS_VALUE;
2963         tracks[i].end_timecode         = 0;
2964         if (tracks[i].type == MATROSKA_TRACK_TYPE_SUBTITLE &&
2965             tracks[i].stream->discard != AVDISCARD_ALL) {
2966             index_sub = av_index_search_timestamp(
2967                 tracks[i].stream, st->index_entries[index].timestamp,
2968                 AVSEEK_FLAG_BACKWARD);
2969             while (index_sub >= 0 &&
2970                   index_min > 0 &&
2971                   tracks[i].stream->index_entries[index_sub].pos < st->index_entries[index_min].pos &&
2972                   st->index_entries[index].timestamp - tracks[i].stream->index_entries[index_sub].timestamp < 30000000000 / matroska->time_scale)
2973                 index_min--;
2974         }
2975     }
2976
2977     avio_seek(s->pb, st->index_entries[index_min].pos, SEEK_SET);
2978     matroska->current_id       = 0;
2979     if (flags & AVSEEK_FLAG_ANY) {
2980         st->skip_to_keyframe = 0;
2981         matroska->skip_to_timecode = timestamp;
2982     } else {
2983         st->skip_to_keyframe = 1;
2984         matroska->skip_to_timecode = st->index_entries[index].timestamp;
2985     }
2986     matroska->skip_to_keyframe = 1;
2987     matroska->done             = 0;
2988     matroska->num_levels       = 0;
2989     ff_update_cur_dts(s, st, st->index_entries[index].timestamp);
2990     return 0;
2991 err:
2992     // slightly hackish but allows proper fallback to
2993     // the generic seeking code.
2994     matroska_clear_queue(matroska);
2995     matroska->current_id = 0;
2996     st->skip_to_keyframe =
2997     matroska->skip_to_keyframe = 0;
2998     matroska->done = 0;
2999     matroska->num_levels = 0;
3000     return -1;
3001 }
3002
3003 static int matroska_read_close(AVFormatContext *s)
3004 {
3005     MatroskaDemuxContext *matroska = s->priv_data;
3006     MatroskaTrack *tracks = matroska->tracks.elem;
3007     int n;
3008
3009     matroska_clear_queue(matroska);
3010
3011     for (n = 0; n < matroska->tracks.nb_elem; n++)
3012         if (tracks[n].type == MATROSKA_TRACK_TYPE_AUDIO)
3013             av_free(tracks[n].audio.buf);
3014     ebml_free(matroska_cluster, &matroska->current_cluster);
3015     ebml_free(matroska_segment, matroska);
3016
3017     return 0;
3018 }
3019
3020 typedef struct {
3021     int64_t start_time_ns;
3022     int64_t end_time_ns;
3023     int64_t start_offset;
3024     int64_t end_offset;
3025 } CueDesc;
3026
3027 /* This function searches all the Cues and returns the CueDesc corresponding the
3028  * the timestamp ts. Returned CueDesc will be such that start_time_ns <= ts <
3029  * end_time_ns. All 4 fields will be set to -1 if ts >= file's duration.
3030  */
3031 static CueDesc get_cue_desc(AVFormatContext *s, int64_t ts, int64_t cues_start) {
3032     MatroskaDemuxContext *matroska = s->priv_data;
3033     CueDesc cue_desc;
3034     int i;
3035     int nb_index_entries = s->streams[0]->nb_index_entries;
3036     AVIndexEntry *index_entries = s->streams[0]->index_entries;
3037     if (ts >= matroska->duration * matroska->time_scale) return (CueDesc) {-1, -1, -1, -1};
3038     for (i = 1; i < nb_index_entries; i++) {
3039         if (index_entries[i - 1].timestamp * matroska->time_scale <= ts &&
3040             index_entries[i].timestamp * matroska->time_scale > ts) {
3041             break;
3042         }
3043     }
3044     --i;
3045     cue_desc.start_time_ns = index_entries[i].timestamp * matroska->time_scale;
3046     cue_desc.start_offset = index_entries[i].pos - matroska->segment_start;
3047     if (i != nb_index_entries - 1) {
3048         cue_desc.end_time_ns = index_entries[i + 1].timestamp * matroska->time_scale;
3049         cue_desc.end_offset = index_entries[i + 1].pos - matroska->segment_start;
3050     } else {
3051         cue_desc.end_time_ns = matroska->duration * matroska->time_scale;
3052         // FIXME: this needs special handling for files where Cues appear
3053         // before Clusters. the current logic assumes Cues appear after
3054         // Clusters.
3055         cue_desc.end_offset = cues_start - matroska->segment_start;
3056     }
3057     return cue_desc;
3058 }
3059
3060 static int webm_clusters_start_with_keyframe(AVFormatContext *s)
3061 {
3062     MatroskaDemuxContext *matroska = s->priv_data;
3063     int64_t cluster_pos, before_pos;
3064     int index, rv = 1;
3065     if (s->streams[0]->nb_index_entries <= 0) return 0;
3066     // seek to the first cluster using cues.
3067     index = av_index_search_timestamp(s->streams[0], 0, 0);
3068     if (index < 0)  return 0;
3069     cluster_pos = s->streams[0]->index_entries[index].pos;
3070     before_pos = avio_tell(s->pb);
3071     while (1) {
3072         int64_t cluster_id = 0, cluster_length = 0;
3073         AVPacket *pkt;
3074         avio_seek(s->pb, cluster_pos, SEEK_SET);
3075         // read cluster id and length
3076         ebml_read_num(matroska, matroska->ctx->pb, 4, &cluster_id);
3077         ebml_read_length(matroska, matroska->ctx->pb, &cluster_length);
3078         if (cluster_id != 0xF43B675) { // done with all clusters
3079             break;
3080         }
3081         avio_seek(s->pb, cluster_pos, SEEK_SET);
3082         matroska->current_id = 0;
3083         matroska_clear_queue(matroska);
3084         if (matroska_parse_cluster(matroska) < 0 ||
3085             matroska->num_packets <= 0) {
3086             break;
3087         }
3088         pkt = matroska->packets[0];
3089         cluster_pos += cluster_length + 12; // 12 is the offset of the cluster id and length.
3090         if (!(pkt->flags & AV_PKT_FLAG_KEY)) {
3091             rv = 0;
3092             break;
3093         }
3094     }
3095     avio_seek(s->pb, before_pos, SEEK_SET);
3096     return rv;
3097 }
3098
3099 static int buffer_size_after_time_downloaded(int64_t time_ns, double search_sec, int64_t bps,
3100                                              double min_buffer, double* buffer,
3101                                              double* sec_to_download, AVFormatContext *s,
3102                                              int64_t cues_start)
3103 {
3104     double nano_seconds_per_second = 1000000000.0;
3105     double time_sec = time_ns / nano_seconds_per_second;
3106     int rv = 0;
3107     int64_t time_to_search_ns = (int64_t)(search_sec * nano_seconds_per_second);
3108     int64_t end_time_ns = time_ns + time_to_search_ns;
3109     double sec_downloaded = 0.0;
3110     CueDesc desc_curr = get_cue_desc(s, time_ns, cues_start);
3111     if (desc_curr.start_time_ns == -1)
3112       return -1;
3113     *sec_to_download = 0.0;
3114
3115     // Check for non cue start time.
3116     if (time_ns > desc_curr.start_time_ns) {
3117       int64_t cue_nano = desc_curr.end_time_ns - time_ns;
3118       double percent = (double)(cue_nano) / (desc_curr.end_time_ns - desc_curr.start_time_ns);
3119       double cueBytes = (desc_curr.end_offset - desc_curr.start_offset) * percent;
3120       double timeToDownload = (cueBytes * 8.0) / bps;
3121
3122       sec_downloaded += (cue_nano / nano_seconds_per_second) - timeToDownload;
3123       *sec_to_download += timeToDownload;
3124
3125       // Check if the search ends within the first cue.
3126       if (desc_curr.end_time_ns >= end_time_ns) {
3127           double desc_end_time_sec = desc_curr.end_time_ns / nano_seconds_per_second;
3128           double percent_to_sub = search_sec / (desc_end_time_sec - time_sec);
3129           sec_downloaded = percent_to_sub * sec_downloaded;
3130           *sec_to_download = percent_to_sub * *sec_to_download;
3131       }
3132
3133       if ((sec_downloaded + *buffer) <= min_buffer) {
3134           return 1;
3135       }
3136
3137       // Get the next Cue.
3138       desc_curr = get_cue_desc(s, desc_curr.end_time_ns, cues_start);
3139     }
3140
3141     while (desc_curr.start_time_ns != -1) {
3142         int64_t desc_bytes = desc_curr.end_offset - desc_curr.start_offset;
3143         int64_t desc_ns = desc_curr.end_time_ns - desc_curr.start_time_ns;
3144         double desc_sec = desc_ns / nano_seconds_per_second;
3145         double bits = (desc_bytes * 8.0);
3146         double time_to_download = bits / bps;
3147
3148         sec_downloaded += desc_sec - time_to_download;
3149         *sec_to_download += time_to_download;
3150
3151         if (desc_curr.end_time_ns >= end_time_ns) {
3152             double desc_end_time_sec = desc_curr.end_time_ns / nano_seconds_per_second;
3153             double percent_to_sub = search_sec / (desc_end_time_sec - time_sec);
3154             sec_downloaded = percent_to_sub * sec_downloaded;
3155             *sec_to_download = percent_to_sub * *sec_to_download;
3156
3157             if ((sec_downloaded + *buffer) <= min_buffer)
3158                 rv = 1;
3159             break;
3160         }
3161
3162         if ((sec_downloaded + *buffer) <= min_buffer) {
3163             rv = 1;
3164             break;
3165         }
3166
3167         desc_curr = get_cue_desc(s, desc_curr.end_time_ns, cues_start);
3168     }
3169     *buffer = *buffer + sec_downloaded;
3170     return rv;
3171 }
3172
3173 /* This function computes the bandwidth of the WebM file with the help of
3174  * buffer_size_after_time_downloaded() function. Both of these functions are
3175  * adapted from WebM Tools project and are adapted to work with FFmpeg's
3176  * Matroska parsing mechanism.
3177  *
3178  * Returns the bandwidth of the file on success; -1 on error.
3179  * */
3180 static int64_t webm_dash_manifest_compute_bandwidth(AVFormatContext *s, int64_t cues_start)
3181 {
3182     MatroskaDemuxContext *matroska = s->priv_data;
3183     AVStream *st = s->streams[0];
3184     double bandwidth = 0.0;
3185     int i;
3186
3187     for (i = 0; i < st->nb_index_entries; i++) {
3188         int64_t prebuffer_ns = 1000000000;
3189         int64_t time_ns = st->index_entries[i].timestamp * matroska->time_scale;
3190         double nano_seconds_per_second = 1000000000.0;
3191         int64_t prebuffered_ns = time_ns + prebuffer_ns;
3192         double prebuffer_bytes = 0.0;
3193         int64_t temp_prebuffer_ns = prebuffer_ns;
3194         int64_t pre_bytes, pre_ns;
3195         double pre_sec, prebuffer, bits_per_second;
3196         CueDesc desc_beg = get_cue_desc(s, time_ns, cues_start);
3197
3198         // Start with the first Cue.
3199         CueDesc desc_end = desc_beg;
3200
3201         // Figure out how much data we have downloaded for the prebuffer. This will
3202         // be used later to adjust the bits per sample to try.
3203         while (desc_end.start_time_ns != -1 && desc_end.end_time_ns < prebuffered_ns) {
3204             // Prebuffered the entire Cue.
3205             prebuffer_bytes += desc_end.end_offset - desc_end.start_offset;
3206             temp_prebuffer_ns -= desc_end.end_time_ns - desc_end.start_time_ns;
3207             desc_end = get_cue_desc(s, desc_end.end_time_ns, cues_start);
3208         }
3209         if (desc_end.start_time_ns == -1) {
3210             // The prebuffer is larger than the duration.
3211             return (matroska->duration * matroska->time_scale >= prebuffered_ns) ? -1 : 0;
3212         }
3213
3214         // The prebuffer ends in the last Cue. Estimate how much data was
3215         // prebuffered.
3216         pre_bytes = desc_end.end_offset - desc_end.start_offset;
3217         pre_ns = desc_end.end_time_ns - desc_end.start_time_ns;
3218         pre_sec = pre_ns / nano_seconds_per_second;
3219         prebuffer_bytes +=
3220             pre_bytes * ((temp_prebuffer_ns / nano_seconds_per_second) / pre_sec);
3221
3222         prebuffer = prebuffer_ns / nano_seconds_per_second;
3223
3224         // Set this to 0.0 in case our prebuffer buffers the entire video.
3225         bits_per_second = 0.0;
3226         do {
3227             int64_t desc_bytes = desc_end.end_offset - desc_beg.start_offset;
3228             int64_t desc_ns = desc_end.end_time_ns - desc_beg.start_time_ns;
3229             double desc_sec = desc_ns / nano_seconds_per_second;
3230             double calc_bits_per_second = (desc_bytes * 8) / desc_sec;
3231
3232             // Drop the bps by the percentage of bytes buffered.
3233             double percent = (desc_bytes - prebuffer_bytes) / desc_bytes;
3234             double mod_bits_per_second = calc_bits_per_second * percent;
3235
3236             if (prebuffer < desc_sec) {
3237                 double search_sec =
3238                     (double)(matroska->duration * matroska->time_scale) / nano_seconds_per_second;
3239
3240                 // Add 1 so the bits per second should be a little bit greater than file
3241                 // datarate.
3242                 int64_t bps = (int64_t)(mod_bits_per_second) + 1;
3243                 const double min_buffer = 0.0;
3244                 double buffer = prebuffer;
3245                 double sec_to_download = 0.0;
3246
3247                 int rv = buffer_size_after_time_downloaded(prebuffered_ns, search_sec, bps,
3248                                                            min_buffer, &buffer, &sec_to_download,
3249                                                            s, cues_start);
3250                 if (rv < 0) {
3251                     return -1;
3252                 } else if (rv == 0) {
3253                     bits_per_second = (double)(bps);
3254                     break;
3255                 }
3256             }
3257
3258             desc_end = get_cue_desc(s, desc_end.end_time_ns, cues_start);
3259         } while (desc_end.start_time_ns != -1);
3260         if (bandwidth < bits_per_second) bandwidth = bits_per_second;
3261     }
3262     return (int64_t)bandwidth;
3263 }
3264
3265 static int webm_dash_manifest_cues(AVFormatContext *s)
3266 {
3267     MatroskaDemuxContext *matroska = s->priv_data;
3268     EbmlList *seekhead_list = &matroska->seekhead;
3269     MatroskaSeekhead *seekhead = seekhead_list->elem;
3270     char *buf;
3271     int64_t cues_start = -1, cues_end = -1, before_pos, bandwidth;
3272     int i;
3273
3274     // determine cues start and end positions
3275     for (i = 0; i < seekhead_list->nb_elem; i++)
3276         if (seekhead[i].id == MATROSKA_ID_CUES)
3277             break;
3278
3279     if (i >= seekhead_list->nb_elem) return -1;
3280
3281     before_pos = avio_tell(matroska->ctx->pb);
3282     cues_start = seekhead[i].pos + matroska->segment_start;
3283     if (avio_seek(matroska->ctx->pb, cues_start, SEEK_SET) == cues_start) {
3284         uint64_t cues_length = 0, cues_id = 0;
3285         ebml_read_num(matroska, matroska->ctx->pb, 4, &cues_id);
3286         ebml_read_length(matroska, matroska->ctx->pb, &cues_length);
3287         cues_end = cues_start + cues_length + 11; // 11 is the offset of Cues ID.
3288     }
3289     avio_seek(matroska->ctx->pb, before_pos, SEEK_SET);
3290     if (cues_start == -1 || cues_end == -1) return -1;
3291
3292     // parse the cues
3293     matroska_parse_cues(matroska);
3294
3295     // cues start
3296     av_dict_set_int(&s->streams[0]->metadata, CUES_START, cues_start, 0);
3297
3298     // cues end
3299     av_dict_set_int(&s->streams[0]->metadata, CUES_END, cues_end, 0);
3300
3301     // bandwidth
3302     bandwidth = webm_dash_manifest_compute_bandwidth(s, cues_start);
3303     if (bandwidth < 0) return -1;
3304     av_dict_set_int(&s->streams[0]->metadata, BANDWIDTH, bandwidth, 0);
3305
3306     // check if all clusters start with key frames
3307     av_dict_set_int(&s->streams[0]->metadata, CLUSTER_KEYFRAME, webm_clusters_start_with_keyframe(s), 0);
3308
3309     // store cue point timestamps as a comma separated list for checking subsegment alignment in
3310     // the muxer. assumes that each timestamp cannot be more than 20 characters long.
3311     buf = av_malloc(s->streams[0]->nb_index_entries * 20 * sizeof(char));
3312     if (!buf) return -1;
3313     strcpy(buf, "");
3314     for (i = 0; i < s->streams[0]->nb_index_entries; i++) {
3315         snprintf(buf, (i + 1) * 20 * sizeof(char),
3316                  "%s%" PRId64, buf, s->streams[0]->index_entries[i].timestamp);
3317         if (i != s->streams[0]->nb_index_entries - 1)
3318             strncat(buf, ",", sizeof(char));
3319     }
3320     av_dict_set(&s->streams[0]->metadata, CUE_TIMESTAMPS, buf, 0);
3321     av_free(buf);
3322
3323     return 0;
3324 }
3325
3326 static int webm_dash_manifest_read_header(AVFormatContext *s)
3327 {
3328     char *buf;
3329     int ret = matroska_read_header(s);
3330     MatroskaTrack *tracks;
3331     MatroskaDemuxContext *matroska = s->priv_data;
3332     if (ret) {
3333         av_log(s, AV_LOG_ERROR, "Failed to read file headers\n");
3334         return -1;
3335     }
3336
3337     // initialization range
3338     // 5 is the offset of Cluster ID.
3339     av_dict_set_int(&s->streams[0]->metadata, INITIALIZATION_RANGE, avio_tell(s->pb) - 5, 0);
3340
3341     // basename of the file
3342     buf = strrchr(s->filename, '/');
3343     if (!buf) return -1;
3344     av_dict_set(&s->streams[0]->metadata, FILENAME, ++buf, 0);
3345
3346     // duration
3347     buf = av_asprintf("%g", matroska->duration);
3348     if (!buf) return AVERROR(ENOMEM);
3349     av_dict_set(&s->streams[0]->metadata, DURATION, buf, 0);
3350     av_free(buf);
3351
3352     // track number
3353     tracks = matroska->tracks.elem;
3354     av_dict_set_int(&s->streams[0]->metadata, TRACK_NUMBER, tracks[0].num, 0);
3355
3356     // parse the cues and populate Cue related fields
3357     return webm_dash_manifest_cues(s);
3358 }
3359
3360 static int webm_dash_manifest_read_packet(AVFormatContext *s, AVPacket *pkt)
3361 {
3362     return AVERROR_EOF;
3363 }
3364
3365 AVInputFormat ff_matroska_demuxer = {
3366     .name           = "matroska,webm",
3367     .long_name      = NULL_IF_CONFIG_SMALL("Matroska / WebM"),
3368     .extensions     = "mkv,mk3d,mka,mks",
3369     .priv_data_size = sizeof(MatroskaDemuxContext),
3370     .read_probe     = matroska_probe,
3371     .read_header    = matroska_read_header,
3372     .read_packet    = matroska_read_packet,
3373     .read_close     = matroska_read_close,
3374     .read_seek      = matroska_read_seek,
3375     .mime_type      = "audio/webm,audio/x-matroska,video/webm,video/x-matroska"
3376 };
3377
3378 AVInputFormat ff_webm_dash_manifest_demuxer = {
3379     .name           = "webm_dash_manifest",
3380     .long_name      = NULL_IF_CONFIG_SMALL("WebM DASH Manifest"),
3381     .priv_data_size = sizeof(MatroskaDemuxContext),
3382     .read_header    = webm_dash_manifest_read_header,
3383     .read_packet    = webm_dash_manifest_read_packet,
3384     .read_close     = matroska_read_close,
3385 };