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