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