]> git.sesse.net Git - ffmpeg/blob - libavformat/matroskadec.c
avformat/mov: print the projection type when reporting it as unsupported
[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     if (color->max_cll && color->max_fall) {
1873         size_t size = 0;
1874         int ret;
1875         AVContentLightMetadata *metadata = av_content_light_metadata_alloc(&size);
1876         if (!metadata)
1877             return AVERROR(ENOMEM);
1878         ret = av_stream_add_side_data(st, AV_PKT_DATA_CONTENT_LIGHT_LEVEL,
1879                                       (uint8_t *)metadata, size);
1880         if (ret < 0) {
1881             av_freep(&metadata);
1882             return ret;
1883         }
1884         metadata->MaxCLL  = color->max_cll;
1885         metadata->MaxFALL = color->max_fall;
1886     }
1887
1888     if (has_mastering_primaries || has_mastering_luminance) {
1889         // Use similar rationals as other standards.
1890         const int chroma_den = 50000;
1891         const int luma_den = 10000;
1892         AVMasteringDisplayMetadata *metadata =
1893             (AVMasteringDisplayMetadata*) av_stream_new_side_data(
1894                 st, AV_PKT_DATA_MASTERING_DISPLAY_METADATA,
1895                 sizeof(AVMasteringDisplayMetadata));
1896         if (!metadata) {
1897             return AVERROR(ENOMEM);
1898         }
1899         memset(metadata, 0, sizeof(AVMasteringDisplayMetadata));
1900         if (has_mastering_primaries) {
1901             metadata->display_primaries[0][0] = av_make_q(
1902                 round(mastering_meta->r_x * chroma_den), chroma_den);
1903             metadata->display_primaries[0][1] = av_make_q(
1904                 round(mastering_meta->r_y * chroma_den), chroma_den);
1905             metadata->display_primaries[1][0] = av_make_q(
1906                 round(mastering_meta->g_x * chroma_den), chroma_den);
1907             metadata->display_primaries[1][1] = av_make_q(
1908                 round(mastering_meta->g_y * chroma_den), chroma_den);
1909             metadata->display_primaries[2][0] = av_make_q(
1910                 round(mastering_meta->b_x * chroma_den), chroma_den);
1911             metadata->display_primaries[2][1] = av_make_q(
1912                 round(mastering_meta->b_y * chroma_den), chroma_den);
1913             metadata->white_point[0] = av_make_q(
1914                 round(mastering_meta->white_x * chroma_den), chroma_den);
1915             metadata->white_point[1] = av_make_q(
1916                 round(mastering_meta->white_y * chroma_den), chroma_den);
1917             metadata->has_primaries = 1;
1918         }
1919         if (has_mastering_luminance) {
1920             metadata->max_luminance = av_make_q(
1921                 round(mastering_meta->max_luminance * luma_den), luma_den);
1922             metadata->min_luminance = av_make_q(
1923                 round(mastering_meta->min_luminance * luma_den), luma_den);
1924             metadata->has_luminance = 1;
1925         }
1926     }
1927     return 0;
1928 }
1929
1930 static int mkv_parse_video_projection(AVStream *st, const MatroskaTrack *track) {
1931     AVSphericalMapping *spherical;
1932     enum AVSphericalProjection projection;
1933     size_t spherical_size;
1934     uint32_t l = 0, t = 0, r = 0, b = 0;
1935     uint32_t padding = 0;
1936     int ret;
1937     GetByteContext gb;
1938
1939     bytestream2_init(&gb, track->video.projection.private.data,
1940                      track->video.projection.private.size);
1941
1942     if (bytestream2_get_byte(&gb) != 0) {
1943         av_log(NULL, AV_LOG_WARNING, "Unknown spherical metadata\n");
1944         return 0;
1945     }
1946
1947     bytestream2_skip(&gb, 3); // flags
1948
1949     switch (track->video.projection.type) {
1950     case MATROSKA_VIDEO_PROJECTION_TYPE_EQUIRECTANGULAR:
1951         if (track->video.projection.private.size == 20) {
1952             t = bytestream2_get_be32(&gb);
1953             b = bytestream2_get_be32(&gb);
1954             l = bytestream2_get_be32(&gb);
1955             r = bytestream2_get_be32(&gb);
1956
1957             if (b >= UINT_MAX - t || r >= UINT_MAX - l) {
1958                 av_log(NULL, AV_LOG_ERROR,
1959                        "Invalid bounding rectangle coordinates "
1960                        "%"PRIu32",%"PRIu32",%"PRIu32",%"PRIu32"\n",
1961                        l, t, r, b);
1962                 return AVERROR_INVALIDDATA;
1963             }
1964         } else if (track->video.projection.private.size != 0) {
1965             av_log(NULL, AV_LOG_ERROR, "Unknown spherical metadata\n");
1966             return AVERROR_INVALIDDATA;
1967         }
1968
1969         if (l || t || r || b)
1970             projection = AV_SPHERICAL_EQUIRECTANGULAR_TILE;
1971         else
1972             projection = AV_SPHERICAL_EQUIRECTANGULAR;
1973         break;
1974     case MATROSKA_VIDEO_PROJECTION_TYPE_CUBEMAP:
1975         if (track->video.projection.private.size < 4) {
1976             av_log(NULL, AV_LOG_ERROR, "Missing projection private properties\n");
1977             return AVERROR_INVALIDDATA;
1978         } else if (track->video.projection.private.size == 12) {
1979             uint32_t layout = bytestream2_get_be32(&gb);
1980             if (layout) {
1981                 av_log(NULL, AV_LOG_WARNING,
1982                        "Unknown spherical cubemap layout %"PRIu32"\n", layout);
1983                 return 0;
1984             }
1985             projection = AV_SPHERICAL_CUBEMAP;
1986             padding = bytestream2_get_be32(&gb);
1987         } else {
1988             av_log(NULL, AV_LOG_ERROR, "Unknown spherical metadata\n");
1989             return AVERROR_INVALIDDATA;
1990         }
1991         break;
1992     case MATROSKA_VIDEO_PROJECTION_TYPE_RECTANGULAR:
1993         /* No Spherical metadata */
1994         return 0;
1995     default:
1996         av_log(NULL, AV_LOG_WARNING,
1997                "Unknown spherical metadata type %"PRIu64"\n",
1998                track->video.projection.type);
1999         return 0;
2000     }
2001
2002     spherical = av_spherical_alloc(&spherical_size);
2003     if (!spherical)
2004         return AVERROR(ENOMEM);
2005
2006     spherical->projection = projection;
2007
2008     spherical->yaw   = (int32_t) (track->video.projection.yaw   * (1 << 16));
2009     spherical->pitch = (int32_t) (track->video.projection.pitch * (1 << 16));
2010     spherical->roll  = (int32_t) (track->video.projection.roll  * (1 << 16));
2011
2012     spherical->padding = padding;
2013
2014     spherical->bound_left   = l;
2015     spherical->bound_top    = t;
2016     spherical->bound_right  = r;
2017     spherical->bound_bottom = b;
2018
2019     ret = av_stream_add_side_data(st, AV_PKT_DATA_SPHERICAL, (uint8_t *)spherical,
2020                                   spherical_size);
2021     if (ret < 0) {
2022         av_freep(&spherical);
2023         return ret;
2024     }
2025
2026     return 0;
2027 }
2028
2029 static int get_qt_codec(MatroskaTrack *track, uint32_t *fourcc, enum AVCodecID *codec_id)
2030 {
2031     const AVCodecTag *codec_tags;
2032
2033     codec_tags = track->type == MATROSKA_TRACK_TYPE_VIDEO ?
2034             ff_codec_movvideo_tags : ff_codec_movaudio_tags;
2035
2036     /* Normalize noncompliant private data that starts with the fourcc
2037      * by expanding/shifting the data by 4 bytes and storing the data
2038      * size at the start. */
2039     if (ff_codec_get_id(codec_tags, AV_RL32(track->codec_priv.data))) {
2040         uint8_t *p = av_realloc(track->codec_priv.data,
2041                                 track->codec_priv.size + 4);
2042         if (!p)
2043             return AVERROR(ENOMEM);
2044         memmove(p + 4, p, track->codec_priv.size);
2045         track->codec_priv.data = p;
2046         track->codec_priv.size += 4;
2047         AV_WB32(track->codec_priv.data, track->codec_priv.size);
2048     }
2049
2050     *fourcc = AV_RL32(track->codec_priv.data + 4);
2051     *codec_id = ff_codec_get_id(codec_tags, *fourcc);
2052
2053     return 0;
2054 }
2055
2056 static int matroska_parse_tracks(AVFormatContext *s)
2057 {
2058     MatroskaDemuxContext *matroska = s->priv_data;
2059     MatroskaTrack *tracks = matroska->tracks.elem;
2060     AVStream *st;
2061     int i, j, ret;
2062     int k;
2063
2064     for (i = 0; i < matroska->tracks.nb_elem; i++) {
2065         MatroskaTrack *track = &tracks[i];
2066         enum AVCodecID codec_id = AV_CODEC_ID_NONE;
2067         EbmlList *encodings_list = &track->encodings;
2068         MatroskaTrackEncoding *encodings = encodings_list->elem;
2069         uint8_t *extradata = NULL;
2070         int extradata_size = 0;
2071         int extradata_offset = 0;
2072         uint32_t fourcc = 0;
2073         AVIOContext b;
2074         char* key_id_base64 = NULL;
2075         int bit_depth = -1;
2076
2077         /* Apply some sanity checks. */
2078         if (track->type != MATROSKA_TRACK_TYPE_VIDEO &&
2079             track->type != MATROSKA_TRACK_TYPE_AUDIO &&
2080             track->type != MATROSKA_TRACK_TYPE_SUBTITLE &&
2081             track->type != MATROSKA_TRACK_TYPE_METADATA) {
2082             av_log(matroska->ctx, AV_LOG_INFO,
2083                    "Unknown or unsupported track type %"PRIu64"\n",
2084                    track->type);
2085             continue;
2086         }
2087         if (!track->codec_id)
2088             continue;
2089
2090         if (track->audio.samplerate < 0 || track->audio.samplerate > INT_MAX ||
2091             isnan(track->audio.samplerate)) {
2092             av_log(matroska->ctx, AV_LOG_WARNING,
2093                    "Invalid sample rate %f, defaulting to 8000 instead.\n",
2094                    track->audio.samplerate);
2095             track->audio.samplerate = 8000;
2096         }
2097
2098         if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
2099             if (!track->default_duration && track->video.frame_rate > 0) {
2100                 double default_duration = 1000000000 / track->video.frame_rate;
2101                 if (default_duration > UINT64_MAX || default_duration < 0) {
2102                     av_log(matroska->ctx, AV_LOG_WARNING,
2103                          "Invalid frame rate %e. Cannot calculate default duration.\n",
2104                          track->video.frame_rate);
2105                 } else {
2106                     track->default_duration = default_duration;
2107                 }
2108             }
2109             if (track->video.display_width == -1)
2110                 track->video.display_width = track->video.pixel_width;
2111             if (track->video.display_height == -1)
2112                 track->video.display_height = track->video.pixel_height;
2113             if (track->video.color_space.size == 4)
2114                 fourcc = AV_RL32(track->video.color_space.data);
2115         } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
2116             if (!track->audio.out_samplerate)
2117                 track->audio.out_samplerate = track->audio.samplerate;
2118         }
2119         if (encodings_list->nb_elem > 1) {
2120             av_log(matroska->ctx, AV_LOG_ERROR,
2121                    "Multiple combined encodings not supported");
2122         } else if (encodings_list->nb_elem == 1) {
2123             if (encodings[0].type) {
2124                 if (encodings[0].encryption.key_id.size > 0) {
2125                     /* Save the encryption key id to be stored later as a
2126                        metadata tag. */
2127                     const int b64_size = AV_BASE64_SIZE(encodings[0].encryption.key_id.size);
2128                     key_id_base64 = av_malloc(b64_size);
2129                     if (key_id_base64 == NULL)
2130                         return AVERROR(ENOMEM);
2131
2132                     av_base64_encode(key_id_base64, b64_size,
2133                                      encodings[0].encryption.key_id.data,
2134                                      encodings[0].encryption.key_id.size);
2135                 } else {
2136                     encodings[0].scope = 0;
2137                     av_log(matroska->ctx, AV_LOG_ERROR,
2138                            "Unsupported encoding type");
2139                 }
2140             } else if (
2141 #if CONFIG_ZLIB
2142                  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_ZLIB  &&
2143 #endif
2144 #if CONFIG_BZLIB
2145                  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_BZLIB &&
2146 #endif
2147 #if CONFIG_LZO
2148                  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_LZO   &&
2149 #endif
2150                  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP) {
2151                 encodings[0].scope = 0;
2152                 av_log(matroska->ctx, AV_LOG_ERROR,
2153                        "Unsupported encoding type");
2154             } else if (track->codec_priv.size && encodings[0].scope & 2) {
2155                 uint8_t *codec_priv = track->codec_priv.data;
2156                 int ret = matroska_decode_buffer(&track->codec_priv.data,
2157                                                  &track->codec_priv.size,
2158                                                  track);
2159                 if (ret < 0) {
2160                     track->codec_priv.data = NULL;
2161                     track->codec_priv.size = 0;
2162                     av_log(matroska->ctx, AV_LOG_ERROR,
2163                            "Failed to decode codec private data\n");
2164                 }
2165
2166                 if (codec_priv != track->codec_priv.data)
2167                     av_free(codec_priv);
2168             }
2169         }
2170
2171         for (j = 0; ff_mkv_codec_tags[j].id != AV_CODEC_ID_NONE; j++) {
2172             if (!strncmp(ff_mkv_codec_tags[j].str, track->codec_id,
2173                          strlen(ff_mkv_codec_tags[j].str))) {
2174                 codec_id = ff_mkv_codec_tags[j].id;
2175                 break;
2176             }
2177         }
2178
2179         st = track->stream = avformat_new_stream(s, NULL);
2180         if (!st) {
2181             av_free(key_id_base64);
2182             return AVERROR(ENOMEM);
2183         }
2184
2185         if (key_id_base64) {
2186             /* export encryption key id as base64 metadata tag */
2187             av_dict_set(&st->metadata, "enc_key_id", key_id_base64, 0);
2188             av_freep(&key_id_base64);
2189         }
2190
2191         if (!strcmp(track->codec_id, "V_MS/VFW/FOURCC") &&
2192              track->codec_priv.size >= 40               &&
2193             track->codec_priv.data) {
2194             track->ms_compat    = 1;
2195             bit_depth           = AV_RL16(track->codec_priv.data + 14);
2196             fourcc              = AV_RL32(track->codec_priv.data + 16);
2197             codec_id            = ff_codec_get_id(ff_codec_bmp_tags,
2198                                                   fourcc);
2199             if (!codec_id)
2200                 codec_id        = ff_codec_get_id(ff_codec_movvideo_tags,
2201                                                   fourcc);
2202             extradata_offset    = 40;
2203         } else if (!strcmp(track->codec_id, "A_MS/ACM") &&
2204                    track->codec_priv.size >= 14         &&
2205                    track->codec_priv.data) {
2206             int ret;
2207             ffio_init_context(&b, track->codec_priv.data,
2208                               track->codec_priv.size,
2209                               0, NULL, NULL, NULL, NULL);
2210             ret = ff_get_wav_header(s, &b, st->codecpar, track->codec_priv.size, 0);
2211             if (ret < 0)
2212                 return ret;
2213             codec_id         = st->codecpar->codec_id;
2214             fourcc           = st->codecpar->codec_tag;
2215             extradata_offset = FFMIN(track->codec_priv.size, 18);
2216         } else if (!strcmp(track->codec_id, "A_QUICKTIME")
2217                    /* Normally 36, but allow noncompliant private data */
2218                    && (track->codec_priv.size >= 32)
2219                    && (track->codec_priv.data)) {
2220             uint16_t sample_size;
2221             int ret = get_qt_codec(track, &fourcc, &codec_id);
2222             if (ret < 0)
2223                 return ret;
2224             sample_size = AV_RB16(track->codec_priv.data + 26);
2225             if (fourcc == 0) {
2226                 if (sample_size == 8) {
2227                     fourcc = MKTAG('r','a','w',' ');
2228                     codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc);
2229                 } else if (sample_size == 16) {
2230                     fourcc = MKTAG('t','w','o','s');
2231                     codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc);
2232                 }
2233             }
2234             if ((fourcc == MKTAG('t','w','o','s') ||
2235                     fourcc == MKTAG('s','o','w','t')) &&
2236                     sample_size == 8)
2237                 codec_id = AV_CODEC_ID_PCM_S8;
2238         } else if (!strcmp(track->codec_id, "V_QUICKTIME") &&
2239                    (track->codec_priv.size >= 21)          &&
2240                    (track->codec_priv.data)) {
2241             int ret = get_qt_codec(track, &fourcc, &codec_id);
2242             if (ret < 0)
2243                 return ret;
2244             if (codec_id == AV_CODEC_ID_NONE && AV_RL32(track->codec_priv.data+4) == AV_RL32("SMI ")) {
2245                 fourcc = MKTAG('S','V','Q','3');
2246                 codec_id = ff_codec_get_id(ff_codec_movvideo_tags, fourcc);
2247             }
2248             if (codec_id == AV_CODEC_ID_NONE)
2249                 av_log(matroska->ctx, AV_LOG_ERROR,
2250                        "mov FourCC not found %s.\n", av_fourcc2str(fourcc));
2251             if (track->codec_priv.size >= 86) {
2252                 bit_depth = AV_RB16(track->codec_priv.data + 82);
2253                 ffio_init_context(&b, track->codec_priv.data,
2254                                   track->codec_priv.size,
2255                                   0, NULL, NULL, NULL, NULL);
2256                 if (ff_get_qtpalette(codec_id, &b, track->palette)) {
2257                     bit_depth &= 0x1F;
2258                     track->has_palette = 1;
2259                 }
2260             }
2261         } else if (codec_id == AV_CODEC_ID_PCM_S16BE) {
2262             switch (track->audio.bitdepth) {
2263             case  8:
2264                 codec_id = AV_CODEC_ID_PCM_U8;
2265                 break;
2266             case 24:
2267                 codec_id = AV_CODEC_ID_PCM_S24BE;
2268                 break;
2269             case 32:
2270                 codec_id = AV_CODEC_ID_PCM_S32BE;
2271                 break;
2272             }
2273         } else if (codec_id == AV_CODEC_ID_PCM_S16LE) {
2274             switch (track->audio.bitdepth) {
2275             case  8:
2276                 codec_id = AV_CODEC_ID_PCM_U8;
2277                 break;
2278             case 24:
2279                 codec_id = AV_CODEC_ID_PCM_S24LE;
2280                 break;
2281             case 32:
2282                 codec_id = AV_CODEC_ID_PCM_S32LE;
2283                 break;
2284             }
2285         } else if (codec_id == AV_CODEC_ID_PCM_F32LE &&
2286                    track->audio.bitdepth == 64) {
2287             codec_id = AV_CODEC_ID_PCM_F64LE;
2288         } else if (codec_id == AV_CODEC_ID_AAC && !track->codec_priv.size) {
2289             int profile = matroska_aac_profile(track->codec_id);
2290             int sri     = matroska_aac_sri(track->audio.samplerate);
2291             extradata   = av_mallocz(5 + AV_INPUT_BUFFER_PADDING_SIZE);
2292             if (!extradata)
2293                 return AVERROR(ENOMEM);
2294             extradata[0] = (profile << 3) | ((sri & 0x0E) >> 1);
2295             extradata[1] = ((sri & 0x01) << 7) | (track->audio.channels << 3);
2296             if (strstr(track->codec_id, "SBR")) {
2297                 sri            = matroska_aac_sri(track->audio.out_samplerate);
2298                 extradata[2]   = 0x56;
2299                 extradata[3]   = 0xE5;
2300                 extradata[4]   = 0x80 | (sri << 3);
2301                 extradata_size = 5;
2302             } else
2303                 extradata_size = 2;
2304         } else if (codec_id == AV_CODEC_ID_ALAC && track->codec_priv.size && track->codec_priv.size < INT_MAX - 12 - AV_INPUT_BUFFER_PADDING_SIZE) {
2305             /* Only ALAC's magic cookie is stored in Matroska's track headers.
2306              * Create the "atom size", "tag", and "tag version" fields the
2307              * decoder expects manually. */
2308             extradata_size = 12 + track->codec_priv.size;
2309             extradata      = av_mallocz(extradata_size +
2310                                         AV_INPUT_BUFFER_PADDING_SIZE);
2311             if (!extradata)
2312                 return AVERROR(ENOMEM);
2313             AV_WB32(extradata, extradata_size);
2314             memcpy(&extradata[4], "alac", 4);
2315             AV_WB32(&extradata[8], 0);
2316             memcpy(&extradata[12], track->codec_priv.data,
2317                    track->codec_priv.size);
2318         } else if (codec_id == AV_CODEC_ID_TTA) {
2319             extradata_size = 30;
2320             extradata      = av_mallocz(extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
2321             if (!extradata)
2322                 return AVERROR(ENOMEM);
2323             ffio_init_context(&b, extradata, extradata_size, 1,
2324                               NULL, NULL, NULL, NULL);
2325             avio_write(&b, "TTA1", 4);
2326             avio_wl16(&b, 1);
2327             if (track->audio.channels > UINT16_MAX ||
2328                 track->audio.bitdepth > UINT16_MAX) {
2329                 av_log(matroska->ctx, AV_LOG_WARNING,
2330                        "Too large audio channel number %"PRIu64
2331                        " or bitdepth %"PRIu64". Skipping track.\n",
2332                        track->audio.channels, track->audio.bitdepth);
2333                 av_freep(&extradata);
2334                 if (matroska->ctx->error_recognition & AV_EF_EXPLODE)
2335                     return AVERROR_INVALIDDATA;
2336                 else
2337                     continue;
2338             }
2339             avio_wl16(&b, track->audio.channels);
2340             avio_wl16(&b, track->audio.bitdepth);
2341             if (track->audio.out_samplerate < 0 || track->audio.out_samplerate > INT_MAX)
2342                 return AVERROR_INVALIDDATA;
2343             avio_wl32(&b, track->audio.out_samplerate);
2344             avio_wl32(&b, av_rescale((matroska->duration * matroska->time_scale),
2345                                      track->audio.out_samplerate,
2346                                      AV_TIME_BASE * 1000));
2347         } else if (codec_id == AV_CODEC_ID_RV10 ||
2348                    codec_id == AV_CODEC_ID_RV20 ||
2349                    codec_id == AV_CODEC_ID_RV30 ||
2350                    codec_id == AV_CODEC_ID_RV40) {
2351             extradata_offset = 26;
2352         } else if (codec_id == AV_CODEC_ID_RA_144) {
2353             track->audio.out_samplerate = 8000;
2354             track->audio.channels       = 1;
2355         } else if ((codec_id == AV_CODEC_ID_RA_288 ||
2356                     codec_id == AV_CODEC_ID_COOK   ||
2357                     codec_id == AV_CODEC_ID_ATRAC3 ||
2358                     codec_id == AV_CODEC_ID_SIPR)
2359                       && track->codec_priv.data) {
2360             int flavor;
2361
2362             ffio_init_context(&b, track->codec_priv.data,
2363                               track->codec_priv.size,
2364                               0, NULL, NULL, NULL, NULL);
2365             avio_skip(&b, 22);
2366             flavor                       = avio_rb16(&b);
2367             track->audio.coded_framesize = avio_rb32(&b);
2368             avio_skip(&b, 12);
2369             track->audio.sub_packet_h    = avio_rb16(&b);
2370             track->audio.frame_size      = avio_rb16(&b);
2371             track->audio.sub_packet_size = avio_rb16(&b);
2372             if (flavor                        < 0 ||
2373                 track->audio.coded_framesize <= 0 ||
2374                 track->audio.sub_packet_h    <= 0 ||
2375                 track->audio.frame_size      <= 0 ||
2376                 track->audio.sub_packet_size <= 0 && codec_id != AV_CODEC_ID_SIPR)
2377                 return AVERROR_INVALIDDATA;
2378             track->audio.buf = av_malloc_array(track->audio.sub_packet_h,
2379                                                track->audio.frame_size);
2380             if (!track->audio.buf)
2381                 return AVERROR(ENOMEM);
2382             if (codec_id == AV_CODEC_ID_RA_288) {
2383                 st->codecpar->block_align = track->audio.coded_framesize;
2384                 track->codec_priv.size = 0;
2385             } else {
2386                 if (codec_id == AV_CODEC_ID_SIPR && flavor < 4) {
2387                     static const int sipr_bit_rate[4] = { 6504, 8496, 5000, 16000 };
2388                     track->audio.sub_packet_size = ff_sipr_subpk_size[flavor];
2389                     st->codecpar->bit_rate          = sipr_bit_rate[flavor];
2390                 }
2391                 st->codecpar->block_align = track->audio.sub_packet_size;
2392                 extradata_offset       = 78;
2393             }
2394         } else if (codec_id == AV_CODEC_ID_FLAC && track->codec_priv.size) {
2395             ret = matroska_parse_flac(s, track, &extradata_offset);
2396             if (ret < 0)
2397                 return ret;
2398         } else if (codec_id == AV_CODEC_ID_PRORES && track->codec_priv.size == 4) {
2399             fourcc = AV_RL32(track->codec_priv.data);
2400         } else if (codec_id == AV_CODEC_ID_VP9 && track->codec_priv.size) {
2401             /* we don't need any value stored in CodecPrivate.
2402                make sure that it's not exported as extradata. */
2403             track->codec_priv.size = 0;
2404         }
2405         track->codec_priv.size -= extradata_offset;
2406
2407         if (codec_id == AV_CODEC_ID_NONE)
2408             av_log(matroska->ctx, AV_LOG_INFO,
2409                    "Unknown/unsupported AVCodecID %s.\n", track->codec_id);
2410
2411         if (track->time_scale < 0.01)
2412             track->time_scale = 1.0;
2413         avpriv_set_pts_info(st, 64, matroska->time_scale * track->time_scale,
2414                             1000 * 1000 * 1000);    /* 64 bit pts in ns */
2415
2416         /* convert the delay from ns to the track timebase */
2417         track->codec_delay_in_track_tb = av_rescale_q(track->codec_delay,
2418                                           (AVRational){ 1, 1000000000 },
2419                                           st->time_base);
2420
2421         st->codecpar->codec_id = codec_id;
2422
2423         if (strcmp(track->language, "und"))
2424             av_dict_set(&st->metadata, "language", track->language, 0);
2425         av_dict_set(&st->metadata, "title", track->name, 0);
2426
2427         if (track->flag_default)
2428             st->disposition |= AV_DISPOSITION_DEFAULT;
2429         if (track->flag_forced)
2430             st->disposition |= AV_DISPOSITION_FORCED;
2431
2432         if (!st->codecpar->extradata) {
2433             if (extradata) {
2434                 st->codecpar->extradata      = extradata;
2435                 st->codecpar->extradata_size = extradata_size;
2436             } else if (track->codec_priv.data && track->codec_priv.size > 0) {
2437                 if (ff_alloc_extradata(st->codecpar, track->codec_priv.size))
2438                     return AVERROR(ENOMEM);
2439                 memcpy(st->codecpar->extradata,
2440                        track->codec_priv.data + extradata_offset,
2441                        track->codec_priv.size);
2442             }
2443         }
2444
2445         if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
2446             MatroskaTrackPlane *planes = track->operation.combine_planes.elem;
2447             int display_width_mul  = 1;
2448             int display_height_mul = 1;
2449
2450             st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
2451             st->codecpar->codec_tag  = fourcc;
2452             if (bit_depth >= 0)
2453                 st->codecpar->bits_per_coded_sample = bit_depth;
2454             st->codecpar->width      = track->video.pixel_width;
2455             st->codecpar->height     = track->video.pixel_height;
2456
2457             if (track->video.interlaced == MATROSKA_VIDEO_INTERLACE_FLAG_INTERLACED)
2458                 st->codecpar->field_order = mkv_field_order(matroska, track->video.field_order);
2459             else if (track->video.interlaced == MATROSKA_VIDEO_INTERLACE_FLAG_PROGRESSIVE)
2460                 st->codecpar->field_order = AV_FIELD_PROGRESSIVE;
2461
2462             if (track->video.stereo_mode && track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB)
2463                 mkv_stereo_mode_display_mul(track->video.stereo_mode, &display_width_mul, &display_height_mul);
2464
2465             if (track->video.display_unit < MATROSKA_VIDEO_DISPLAYUNIT_UNKNOWN) {
2466                 av_reduce(&st->sample_aspect_ratio.num,
2467                           &st->sample_aspect_ratio.den,
2468                           st->codecpar->height * track->video.display_width  * display_width_mul,
2469                           st->codecpar->width  * track->video.display_height * display_height_mul,
2470                           255);
2471             }
2472             if (st->codecpar->codec_id != AV_CODEC_ID_HEVC)
2473                 st->need_parsing = AVSTREAM_PARSE_HEADERS;
2474
2475             if (track->default_duration) {
2476                 av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
2477                           1000000000, track->default_duration, 30000);
2478 #if FF_API_R_FRAME_RATE
2479                 if (   st->avg_frame_rate.num < st->avg_frame_rate.den * 1000LL
2480                     && st->avg_frame_rate.num > st->avg_frame_rate.den * 5LL)
2481                     st->r_frame_rate = st->avg_frame_rate;
2482 #endif
2483             }
2484
2485             /* export stereo mode flag as metadata tag */
2486             if (track->video.stereo_mode && track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB)
2487                 av_dict_set(&st->metadata, "stereo_mode", ff_matroska_video_stereo_mode[track->video.stereo_mode], 0);
2488
2489             /* export alpha mode flag as metadata tag  */
2490             if (track->video.alpha_mode)
2491                 av_dict_set(&st->metadata, "alpha_mode", "1", 0);
2492
2493             /* if we have virtual track, mark the real tracks */
2494             for (j=0; j < track->operation.combine_planes.nb_elem; j++) {
2495                 char buf[32];
2496                 if (planes[j].type >= MATROSKA_VIDEO_STEREO_PLANE_COUNT)
2497                     continue;
2498                 snprintf(buf, sizeof(buf), "%s_%d",
2499                          ff_matroska_video_stereo_plane[planes[j].type], i);
2500                 for (k=0; k < matroska->tracks.nb_elem; k++)
2501                     if (planes[j].uid == tracks[k].uid && tracks[k].stream) {
2502                         av_dict_set(&tracks[k].stream->metadata,
2503                                     "stereo_mode", buf, 0);
2504                         break;
2505                     }
2506             }
2507             // add stream level stereo3d side data if it is a supported format
2508             if (track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB &&
2509                 track->video.stereo_mode != 10 && track->video.stereo_mode != 12) {
2510                 int ret = ff_mkv_stereo3d_conv(st, track->video.stereo_mode);
2511                 if (ret < 0)
2512                     return ret;
2513             }
2514
2515             ret = mkv_parse_video_color(st, track);
2516             if (ret < 0)
2517                 return ret;
2518             ret = mkv_parse_video_projection(st, track);
2519             if (ret < 0)
2520                 return ret;
2521         } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
2522             st->codecpar->codec_type  = AVMEDIA_TYPE_AUDIO;
2523             st->codecpar->codec_tag   = fourcc;
2524             st->codecpar->sample_rate = track->audio.out_samplerate;
2525             st->codecpar->channels    = track->audio.channels;
2526             if (!st->codecpar->bits_per_coded_sample)
2527                 st->codecpar->bits_per_coded_sample = track->audio.bitdepth;
2528             if (st->codecpar->codec_id == AV_CODEC_ID_MP3 ||
2529                 st->codecpar->codec_id == AV_CODEC_ID_MLP ||
2530                 st->codecpar->codec_id == AV_CODEC_ID_TRUEHD)
2531                 st->need_parsing = AVSTREAM_PARSE_FULL;
2532             else if (st->codecpar->codec_id != AV_CODEC_ID_AAC)
2533                 st->need_parsing = AVSTREAM_PARSE_HEADERS;
2534             if (track->codec_delay > 0) {
2535                 st->codecpar->initial_padding = av_rescale_q(track->codec_delay,
2536                                                              (AVRational){1, 1000000000},
2537                                                              (AVRational){1, st->codecpar->codec_id == AV_CODEC_ID_OPUS ?
2538                                                                              48000 : st->codecpar->sample_rate});
2539             }
2540             if (track->seek_preroll > 0) {
2541                 st->codecpar->seek_preroll = av_rescale_q(track->seek_preroll,
2542                                                           (AVRational){1, 1000000000},
2543                                                           (AVRational){1, st->codecpar->sample_rate});
2544             }
2545         } else if (codec_id == AV_CODEC_ID_WEBVTT) {
2546             st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
2547
2548             if (!strcmp(track->codec_id, "D_WEBVTT/CAPTIONS")) {
2549                 st->disposition |= AV_DISPOSITION_CAPTIONS;
2550             } else if (!strcmp(track->codec_id, "D_WEBVTT/DESCRIPTIONS")) {
2551                 st->disposition |= AV_DISPOSITION_DESCRIPTIONS;
2552             } else if (!strcmp(track->codec_id, "D_WEBVTT/METADATA")) {
2553                 st->disposition |= AV_DISPOSITION_METADATA;
2554             }
2555         } else if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE) {
2556             st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
2557             if (st->codecpar->codec_id == AV_CODEC_ID_ASS)
2558                 matroska->contains_ssa = 1;
2559         }
2560     }
2561
2562     return 0;
2563 }
2564
2565 static int matroska_read_header(AVFormatContext *s)
2566 {
2567     MatroskaDemuxContext *matroska = s->priv_data;
2568     EbmlList *attachments_list = &matroska->attachments;
2569     EbmlList *chapters_list    = &matroska->chapters;
2570     MatroskaAttachment *attachments;
2571     MatroskaChapter *chapters;
2572     uint64_t max_start = 0;
2573     int64_t pos;
2574     Ebml ebml = { 0 };
2575     int i, j, res;
2576
2577     matroska->ctx = s;
2578     matroska->cues_parsing_deferred = 1;
2579
2580     /* First read the EBML header. */
2581     if (ebml_parse(matroska, ebml_syntax, &ebml) || !ebml.doctype) {
2582         av_log(matroska->ctx, AV_LOG_ERROR, "EBML header parsing failed\n");
2583         ebml_free(ebml_syntax, &ebml);
2584         return AVERROR_INVALIDDATA;
2585     }
2586     if (ebml.version         > EBML_VERSION      ||
2587         ebml.max_size        > sizeof(uint64_t)  ||
2588         ebml.id_length       > sizeof(uint32_t)  ||
2589         ebml.doctype_version > 3) {
2590         avpriv_report_missing_feature(matroska->ctx,
2591                                       "EBML version %"PRIu64", doctype %s, doc version %"PRIu64,
2592                                       ebml.version, ebml.doctype, ebml.doctype_version);
2593         ebml_free(ebml_syntax, &ebml);
2594         return AVERROR_PATCHWELCOME;
2595     } else if (ebml.doctype_version == 3) {
2596         av_log(matroska->ctx, AV_LOG_WARNING,
2597                "EBML header using unsupported features\n"
2598                "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n",
2599                ebml.version, ebml.doctype, ebml.doctype_version);
2600     }
2601     for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++)
2602         if (!strcmp(ebml.doctype, matroska_doctypes[i]))
2603             break;
2604     if (i >= FF_ARRAY_ELEMS(matroska_doctypes)) {
2605         av_log(s, AV_LOG_WARNING, "Unknown EBML doctype '%s'\n", ebml.doctype);
2606         if (matroska->ctx->error_recognition & AV_EF_EXPLODE) {
2607             ebml_free(ebml_syntax, &ebml);
2608             return AVERROR_INVALIDDATA;
2609         }
2610     }
2611     ebml_free(ebml_syntax, &ebml);
2612
2613     /* The next thing is a segment. */
2614     pos = avio_tell(matroska->ctx->pb);
2615     res = ebml_parse(matroska, matroska_segments, matroska);
2616     // try resyncing until we find a EBML_STOP type element.
2617     while (res != 1) {
2618         res = matroska_resync(matroska, pos);
2619         if (res < 0)
2620             goto fail;
2621         pos = avio_tell(matroska->ctx->pb);
2622         res = ebml_parse(matroska, matroska_segment, matroska);
2623     }
2624     matroska_execute_seekhead(matroska);
2625
2626     if (!matroska->time_scale)
2627         matroska->time_scale = 1000000;
2628     if (matroska->duration)
2629         matroska->ctx->duration = matroska->duration * matroska->time_scale *
2630                                   1000 / AV_TIME_BASE;
2631     av_dict_set(&s->metadata, "title", matroska->title, 0);
2632     av_dict_set(&s->metadata, "encoder", matroska->muxingapp, 0);
2633
2634     if (matroska->date_utc.size == 8)
2635         matroska_metadata_creation_time(&s->metadata, AV_RB64(matroska->date_utc.data));
2636
2637     res = matroska_parse_tracks(s);
2638     if (res < 0)
2639         goto fail;
2640
2641     attachments = attachments_list->elem;
2642     for (j = 0; j < attachments_list->nb_elem; j++) {
2643         if (!(attachments[j].filename && attachments[j].mime &&
2644               attachments[j].bin.data && attachments[j].bin.size > 0)) {
2645             av_log(matroska->ctx, AV_LOG_ERROR, "incomplete attachment\n");
2646         } else {
2647             AVStream *st = avformat_new_stream(s, NULL);
2648             if (!st)
2649                 break;
2650             av_dict_set(&st->metadata, "filename", attachments[j].filename, 0);
2651             av_dict_set(&st->metadata, "mimetype", attachments[j].mime, 0);
2652             st->codecpar->codec_id   = AV_CODEC_ID_NONE;
2653
2654             for (i = 0; ff_mkv_image_mime_tags[i].id != AV_CODEC_ID_NONE; i++) {
2655                 if (!strncmp(ff_mkv_image_mime_tags[i].str, attachments[j].mime,
2656                              strlen(ff_mkv_image_mime_tags[i].str))) {
2657                     st->codecpar->codec_id = ff_mkv_image_mime_tags[i].id;
2658                     break;
2659                 }
2660             }
2661
2662             attachments[j].stream = st;
2663
2664             if (st->codecpar->codec_id != AV_CODEC_ID_NONE) {
2665                 st->disposition         |= AV_DISPOSITION_ATTACHED_PIC;
2666                 st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
2667
2668                 av_init_packet(&st->attached_pic);
2669                 if ((res = av_new_packet(&st->attached_pic, attachments[j].bin.size)) < 0)
2670                     return res;
2671                 memcpy(st->attached_pic.data, attachments[j].bin.data, attachments[j].bin.size);
2672                 st->attached_pic.stream_index = st->index;
2673                 st->attached_pic.flags       |= AV_PKT_FLAG_KEY;
2674             } else {
2675                 st->codecpar->codec_type = AVMEDIA_TYPE_ATTACHMENT;
2676                 if (ff_alloc_extradata(st->codecpar, attachments[j].bin.size))
2677                     break;
2678                 memcpy(st->codecpar->extradata, attachments[j].bin.data,
2679                        attachments[j].bin.size);
2680
2681                 for (i = 0; ff_mkv_mime_tags[i].id != AV_CODEC_ID_NONE; i++) {
2682                     if (!strncmp(ff_mkv_mime_tags[i].str, attachments[j].mime,
2683                                 strlen(ff_mkv_mime_tags[i].str))) {
2684                         st->codecpar->codec_id = ff_mkv_mime_tags[i].id;
2685                         break;
2686                     }
2687                 }
2688             }
2689         }
2690     }
2691
2692     chapters = chapters_list->elem;
2693     for (i = 0; i < chapters_list->nb_elem; i++)
2694         if (chapters[i].start != AV_NOPTS_VALUE && chapters[i].uid &&
2695             (max_start == 0 || chapters[i].start > max_start)) {
2696             chapters[i].chapter =
2697                 avpriv_new_chapter(s, chapters[i].uid,
2698                                    (AVRational) { 1, 1000000000 },
2699                                    chapters[i].start, chapters[i].end,
2700                                    chapters[i].title);
2701             if (chapters[i].chapter) {
2702                 av_dict_set(&chapters[i].chapter->metadata,
2703                             "title", chapters[i].title, 0);
2704             }
2705             max_start = chapters[i].start;
2706         }
2707
2708     matroska_add_index_entries(matroska);
2709
2710     matroska_convert_tags(s);
2711
2712     return 0;
2713 fail:
2714     matroska_read_close(s);
2715     return res;
2716 }
2717
2718 /*
2719  * Put one packet in an application-supplied AVPacket struct.
2720  * Returns 0 on success or -1 on failure.
2721  */
2722 static int matroska_deliver_packet(MatroskaDemuxContext *matroska,
2723                                    AVPacket *pkt)
2724 {
2725     if (matroska->num_packets > 0) {
2726         MatroskaTrack *tracks = matroska->tracks.elem;
2727         MatroskaTrack *track;
2728         memcpy(pkt, matroska->packets[0], sizeof(AVPacket));
2729         av_freep(&matroska->packets[0]);
2730         track = &tracks[pkt->stream_index];
2731         if (track->has_palette) {
2732             uint8_t *pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
2733             if (!pal) {
2734                 av_log(matroska->ctx, AV_LOG_ERROR, "Cannot append palette to packet\n");
2735             } else {
2736                 memcpy(pal, track->palette, AVPALETTE_SIZE);
2737             }
2738             track->has_palette = 0;
2739         }
2740         if (matroska->num_packets > 1) {
2741             void *newpackets;
2742             memmove(&matroska->packets[0], &matroska->packets[1],
2743                     (matroska->num_packets - 1) * sizeof(AVPacket *));
2744             newpackets = av_realloc(matroska->packets,
2745                                     (matroska->num_packets - 1) *
2746                                     sizeof(AVPacket *));
2747             if (newpackets)
2748                 matroska->packets = newpackets;
2749         } else {
2750             av_freep(&matroska->packets);
2751             matroska->prev_pkt = NULL;
2752         }
2753         matroska->num_packets--;
2754         return 0;
2755     }
2756
2757     return -1;
2758 }
2759
2760 /*
2761  * Free all packets in our internal queue.
2762  */
2763 static void matroska_clear_queue(MatroskaDemuxContext *matroska)
2764 {
2765     matroska->prev_pkt = NULL;
2766     if (matroska->packets) {
2767         int n;
2768         for (n = 0; n < matroska->num_packets; n++) {
2769             av_packet_unref(matroska->packets[n]);
2770             av_freep(&matroska->packets[n]);
2771         }
2772         av_freep(&matroska->packets);
2773         matroska->num_packets = 0;
2774     }
2775 }
2776
2777 static int matroska_parse_laces(MatroskaDemuxContext *matroska, uint8_t **buf,
2778                                 int *buf_size, int type,
2779                                 uint32_t **lace_buf, int *laces)
2780 {
2781     int res = 0, n, size = *buf_size;
2782     uint8_t *data = *buf;
2783     uint32_t *lace_size;
2784
2785     if (!type) {
2786         *laces    = 1;
2787         *lace_buf = av_mallocz(sizeof(int));
2788         if (!*lace_buf)
2789             return AVERROR(ENOMEM);
2790
2791         *lace_buf[0] = size;
2792         return 0;
2793     }
2794
2795     av_assert0(size > 0);
2796     *laces    = *data + 1;
2797     data     += 1;
2798     size     -= 1;
2799     lace_size = av_mallocz(*laces * sizeof(int));
2800     if (!lace_size)
2801         return AVERROR(ENOMEM);
2802
2803     switch (type) {
2804     case 0x1: /* Xiph lacing */
2805     {
2806         uint8_t temp;
2807         uint32_t total = 0;
2808         for (n = 0; res == 0 && n < *laces - 1; n++) {
2809             while (1) {
2810                 if (size <= total) {
2811                     res = AVERROR_INVALIDDATA;
2812                     break;
2813                 }
2814                 temp          = *data;
2815                 total        += temp;
2816                 lace_size[n] += temp;
2817                 data         += 1;
2818                 size         -= 1;
2819                 if (temp != 0xff)
2820                     break;
2821             }
2822         }
2823         if (size <= total) {
2824             res = AVERROR_INVALIDDATA;
2825             break;
2826         }
2827
2828         lace_size[n] = size - total;
2829         break;
2830     }
2831
2832     case 0x2: /* fixed-size lacing */
2833         if (size % (*laces)) {
2834             res = AVERROR_INVALIDDATA;
2835             break;
2836         }
2837         for (n = 0; n < *laces; n++)
2838             lace_size[n] = size / *laces;
2839         break;
2840
2841     case 0x3: /* EBML lacing */
2842     {
2843         uint64_t num;
2844         uint64_t total;
2845         n = matroska_ebmlnum_uint(matroska, data, size, &num);
2846         if (n < 0 || num > INT_MAX) {
2847             av_log(matroska->ctx, AV_LOG_INFO,
2848                    "EBML block data error\n");
2849             res = n<0 ? n : AVERROR_INVALIDDATA;
2850             break;
2851         }
2852         data += n;
2853         size -= n;
2854         total = lace_size[0] = num;
2855         for (n = 1; res == 0 && n < *laces - 1; n++) {
2856             int64_t snum;
2857             int r;
2858             r = matroska_ebmlnum_sint(matroska, data, size, &snum);
2859             if (r < 0 || lace_size[n - 1] + snum > (uint64_t)INT_MAX) {
2860                 av_log(matroska->ctx, AV_LOG_INFO,
2861                        "EBML block data error\n");
2862                 res = r<0 ? r : AVERROR_INVALIDDATA;
2863                 break;
2864             }
2865             data        += r;
2866             size        -= r;
2867             lace_size[n] = lace_size[n - 1] + snum;
2868             total       += lace_size[n];
2869         }
2870         if (size <= total) {
2871             res = AVERROR_INVALIDDATA;
2872             break;
2873         }
2874         lace_size[*laces - 1] = size - total;
2875         break;
2876     }
2877     }
2878
2879     *buf      = data;
2880     *lace_buf = lace_size;
2881     *buf_size = size;
2882
2883     return res;
2884 }
2885
2886 static int matroska_parse_rm_audio(MatroskaDemuxContext *matroska,
2887                                    MatroskaTrack *track, AVStream *st,
2888                                    uint8_t *data, int size, uint64_t timecode,
2889                                    int64_t pos)
2890 {
2891     int a = st->codecpar->block_align;
2892     int sps = track->audio.sub_packet_size;
2893     int cfs = track->audio.coded_framesize;
2894     int h   = track->audio.sub_packet_h;
2895     int y   = track->audio.sub_packet_cnt;
2896     int w   = track->audio.frame_size;
2897     int x;
2898
2899     if (!track->audio.pkt_cnt) {
2900         if (track->audio.sub_packet_cnt == 0)
2901             track->audio.buf_timecode = timecode;
2902         if (st->codecpar->codec_id == AV_CODEC_ID_RA_288) {
2903             if (size < cfs * h / 2) {
2904                 av_log(matroska->ctx, AV_LOG_ERROR,
2905                        "Corrupt int4 RM-style audio packet size\n");
2906                 return AVERROR_INVALIDDATA;
2907             }
2908             for (x = 0; x < h / 2; x++)
2909                 memcpy(track->audio.buf + x * 2 * w + y * cfs,
2910                        data + x * cfs, cfs);
2911         } else if (st->codecpar->codec_id == AV_CODEC_ID_SIPR) {
2912             if (size < w) {
2913                 av_log(matroska->ctx, AV_LOG_ERROR,
2914                        "Corrupt sipr RM-style audio packet size\n");
2915                 return AVERROR_INVALIDDATA;
2916             }
2917             memcpy(track->audio.buf + y * w, data, w);
2918         } else {
2919             if (size < sps * w / sps || h<=0 || w%sps) {
2920                 av_log(matroska->ctx, AV_LOG_ERROR,
2921                        "Corrupt generic RM-style audio packet size\n");
2922                 return AVERROR_INVALIDDATA;
2923             }
2924             for (x = 0; x < w / sps; x++)
2925                 memcpy(track->audio.buf +
2926                        sps * (h * x + ((h + 1) / 2) * (y & 1) + (y >> 1)),
2927                        data + x * sps, sps);
2928         }
2929
2930         if (++track->audio.sub_packet_cnt >= h) {
2931             if (st->codecpar->codec_id == AV_CODEC_ID_SIPR)
2932                 ff_rm_reorder_sipr_data(track->audio.buf, h, w);
2933             track->audio.sub_packet_cnt = 0;
2934             track->audio.pkt_cnt        = h * w / a;
2935         }
2936     }
2937
2938     while (track->audio.pkt_cnt) {
2939         int ret;
2940         AVPacket *pkt = av_mallocz(sizeof(AVPacket));
2941         if (!pkt)
2942             return AVERROR(ENOMEM);
2943
2944         ret = av_new_packet(pkt, a);
2945         if (ret < 0) {
2946             av_free(pkt);
2947             return ret;
2948         }
2949         memcpy(pkt->data,
2950                track->audio.buf + a * (h * w / a - track->audio.pkt_cnt--),
2951                a);
2952         pkt->pts                  = track->audio.buf_timecode;
2953         track->audio.buf_timecode = AV_NOPTS_VALUE;
2954         pkt->pos                  = pos;
2955         pkt->stream_index         = st->index;
2956         dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
2957     }
2958
2959     return 0;
2960 }
2961
2962 /* reconstruct full wavpack blocks from mangled matroska ones */
2963 static int matroska_parse_wavpack(MatroskaTrack *track, uint8_t *src,
2964                                   uint8_t **pdst, int *size)
2965 {
2966     uint8_t *dst = NULL;
2967     int dstlen   = 0;
2968     int srclen   = *size;
2969     uint32_t samples;
2970     uint16_t ver;
2971     int ret, offset = 0;
2972
2973     if (srclen < 12 || track->stream->codecpar->extradata_size < 2)
2974         return AVERROR_INVALIDDATA;
2975
2976     ver = AV_RL16(track->stream->codecpar->extradata);
2977
2978     samples = AV_RL32(src);
2979     src    += 4;
2980     srclen -= 4;
2981
2982     while (srclen >= 8) {
2983         int multiblock;
2984         uint32_t blocksize;
2985         uint8_t *tmp;
2986
2987         uint32_t flags = AV_RL32(src);
2988         uint32_t crc   = AV_RL32(src + 4);
2989         src    += 8;
2990         srclen -= 8;
2991
2992         multiblock = (flags & 0x1800) != 0x1800;
2993         if (multiblock) {
2994             if (srclen < 4) {
2995                 ret = AVERROR_INVALIDDATA;
2996                 goto fail;
2997             }
2998             blocksize = AV_RL32(src);
2999             src      += 4;
3000             srclen   -= 4;
3001         } else
3002             blocksize = srclen;
3003
3004         if (blocksize > srclen) {
3005             ret = AVERROR_INVALIDDATA;
3006             goto fail;
3007         }
3008
3009         tmp = av_realloc(dst, dstlen + blocksize + 32);
3010         if (!tmp) {
3011             ret = AVERROR(ENOMEM);
3012             goto fail;
3013         }
3014         dst     = tmp;
3015         dstlen += blocksize + 32;
3016
3017         AV_WL32(dst + offset, MKTAG('w', 'v', 'p', 'k'));   // tag
3018         AV_WL32(dst + offset +  4, blocksize + 24);         // blocksize - 8
3019         AV_WL16(dst + offset +  8, ver);                    // version
3020         AV_WL16(dst + offset + 10, 0);                      // track/index_no
3021         AV_WL32(dst + offset + 12, 0);                      // total samples
3022         AV_WL32(dst + offset + 16, 0);                      // block index
3023         AV_WL32(dst + offset + 20, samples);                // number of samples
3024         AV_WL32(dst + offset + 24, flags);                  // flags
3025         AV_WL32(dst + offset + 28, crc);                    // crc
3026         memcpy(dst + offset + 32, src, blocksize);          // block data
3027
3028         src    += blocksize;
3029         srclen -= blocksize;
3030         offset += blocksize + 32;
3031     }
3032
3033     *pdst = dst;
3034     *size = dstlen;
3035
3036     return 0;
3037
3038 fail:
3039     av_freep(&dst);
3040     return ret;
3041 }
3042
3043 static int matroska_parse_webvtt(MatroskaDemuxContext *matroska,
3044                                  MatroskaTrack *track,
3045                                  AVStream *st,
3046                                  uint8_t *data, int data_len,
3047                                  uint64_t timecode,
3048                                  uint64_t duration,
3049                                  int64_t pos)
3050 {
3051     AVPacket *pkt;
3052     uint8_t *id, *settings, *text, *buf;
3053     int id_len, settings_len, text_len;
3054     uint8_t *p, *q;
3055     int err;
3056
3057     if (data_len <= 0)
3058         return AVERROR_INVALIDDATA;
3059
3060     p = data;
3061     q = data + data_len;
3062
3063     id = p;
3064     id_len = -1;
3065     while (p < q) {
3066         if (*p == '\r' || *p == '\n') {
3067             id_len = p - id;
3068             if (*p == '\r')
3069                 p++;
3070             break;
3071         }
3072         p++;
3073     }
3074
3075     if (p >= q || *p != '\n')
3076         return AVERROR_INVALIDDATA;
3077     p++;
3078
3079     settings = p;
3080     settings_len = -1;
3081     while (p < q) {
3082         if (*p == '\r' || *p == '\n') {
3083             settings_len = p - settings;
3084             if (*p == '\r')
3085                 p++;
3086             break;
3087         }
3088         p++;
3089     }
3090
3091     if (p >= q || *p != '\n')
3092         return AVERROR_INVALIDDATA;
3093     p++;
3094
3095     text = p;
3096     text_len = q - p;
3097     while (text_len > 0) {
3098         const int len = text_len - 1;
3099         const uint8_t c = p[len];
3100         if (c != '\r' && c != '\n')
3101             break;
3102         text_len = len;
3103     }
3104
3105     if (text_len <= 0)
3106         return AVERROR_INVALIDDATA;
3107
3108     pkt = av_mallocz(sizeof(*pkt));
3109     if (!pkt)
3110         return AVERROR(ENOMEM);
3111     err = av_new_packet(pkt, text_len);
3112     if (err < 0) {
3113         av_free(pkt);
3114         return err;
3115     }
3116
3117     memcpy(pkt->data, text, text_len);
3118
3119     if (id_len > 0) {
3120         buf = av_packet_new_side_data(pkt,
3121                                       AV_PKT_DATA_WEBVTT_IDENTIFIER,
3122                                       id_len);
3123         if (!buf) {
3124             av_packet_unref(pkt);
3125             av_free(pkt);
3126             return AVERROR(ENOMEM);
3127         }
3128         memcpy(buf, id, id_len);
3129     }
3130
3131     if (settings_len > 0) {
3132         buf = av_packet_new_side_data(pkt,
3133                                       AV_PKT_DATA_WEBVTT_SETTINGS,
3134                                       settings_len);
3135         if (!buf) {
3136             av_packet_unref(pkt);
3137             av_free(pkt);
3138             return AVERROR(ENOMEM);
3139         }
3140         memcpy(buf, settings, settings_len);
3141     }
3142
3143     // Do we need this for subtitles?
3144     // pkt->flags = AV_PKT_FLAG_KEY;
3145
3146     pkt->stream_index = st->index;
3147     pkt->pts = timecode;
3148
3149     // Do we need this for subtitles?
3150     // pkt->dts = timecode;
3151
3152     pkt->duration = duration;
3153     pkt->pos = pos;
3154
3155     dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
3156     matroska->prev_pkt = pkt;
3157
3158     return 0;
3159 }
3160
3161 static int matroska_parse_frame(MatroskaDemuxContext *matroska,
3162                                 MatroskaTrack *track, AVStream *st,
3163                                 uint8_t *data, int pkt_size,
3164                                 uint64_t timecode, uint64_t lace_duration,
3165                                 int64_t pos, int is_keyframe,
3166                                 uint8_t *additional, uint64_t additional_id, int additional_size,
3167                                 int64_t discard_padding)
3168 {
3169     MatroskaTrackEncoding *encodings = track->encodings.elem;
3170     uint8_t *pkt_data = data;
3171     int offset = 0, res;
3172     AVPacket *pkt;
3173
3174     if (encodings && !encodings->type && encodings->scope & 1) {
3175         res = matroska_decode_buffer(&pkt_data, &pkt_size, track);
3176         if (res < 0)
3177             return res;
3178     }
3179
3180     if (st->codecpar->codec_id == AV_CODEC_ID_WAVPACK) {
3181         uint8_t *wv_data;
3182         res = matroska_parse_wavpack(track, pkt_data, &wv_data, &pkt_size);
3183         if (res < 0) {
3184             av_log(matroska->ctx, AV_LOG_ERROR,
3185                    "Error parsing a wavpack block.\n");
3186             goto fail;
3187         }
3188         if (pkt_data != data)
3189             av_freep(&pkt_data);
3190         pkt_data = wv_data;
3191     }
3192
3193     if (st->codecpar->codec_id == AV_CODEC_ID_PRORES &&
3194         AV_RB32(&data[4]) != MKBETAG('i', 'c', 'p', 'f'))
3195         offset = 8;
3196
3197     pkt = av_mallocz(sizeof(AVPacket));
3198     if (!pkt) {
3199         if (pkt_data != data)
3200             av_freep(&pkt_data);
3201         return AVERROR(ENOMEM);
3202     }
3203     /* XXX: prevent data copy... */
3204     if (av_new_packet(pkt, pkt_size + offset) < 0) {
3205         av_free(pkt);
3206         res = AVERROR(ENOMEM);
3207         goto fail;
3208     }
3209
3210     if (st->codecpar->codec_id == AV_CODEC_ID_PRORES && offset == 8) {
3211         uint8_t *buf = pkt->data;
3212         bytestream_put_be32(&buf, pkt_size);
3213         bytestream_put_be32(&buf, MKBETAG('i', 'c', 'p', 'f'));
3214     }
3215
3216     memcpy(pkt->data + offset, pkt_data, pkt_size);
3217
3218     if (pkt_data != data)
3219         av_freep(&pkt_data);
3220
3221     pkt->flags        = is_keyframe;
3222     pkt->stream_index = st->index;
3223
3224     if (additional_size > 0) {
3225         uint8_t *side_data = av_packet_new_side_data(pkt,
3226                                                      AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL,
3227                                                      additional_size + 8);
3228         if (!side_data) {
3229             av_packet_unref(pkt);
3230             av_free(pkt);
3231             return AVERROR(ENOMEM);
3232         }
3233         AV_WB64(side_data, additional_id);
3234         memcpy(side_data + 8, additional, additional_size);
3235     }
3236
3237     if (discard_padding) {
3238         uint8_t *side_data = av_packet_new_side_data(pkt,
3239                                                      AV_PKT_DATA_SKIP_SAMPLES,
3240                                                      10);
3241         if (!side_data) {
3242             av_packet_unref(pkt);
3243             av_free(pkt);
3244             return AVERROR(ENOMEM);
3245         }
3246         discard_padding = av_rescale_q(discard_padding,
3247                                             (AVRational){1, 1000000000},
3248                                             (AVRational){1, st->codecpar->sample_rate});
3249         if (discard_padding > 0) {
3250             AV_WL32(side_data + 4, discard_padding);
3251         } else {
3252             AV_WL32(side_data, -discard_padding);
3253         }
3254     }
3255
3256     if (track->ms_compat)
3257         pkt->dts = timecode;
3258     else
3259         pkt->pts = timecode;
3260     pkt->pos = pos;
3261     pkt->duration = lace_duration;
3262
3263 #if FF_API_CONVERGENCE_DURATION
3264 FF_DISABLE_DEPRECATION_WARNINGS
3265     if (st->codecpar->codec_id == AV_CODEC_ID_SUBRIP) {
3266         pkt->convergence_duration = lace_duration;
3267     }
3268 FF_ENABLE_DEPRECATION_WARNINGS
3269 #endif
3270
3271     dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
3272     matroska->prev_pkt = pkt;
3273
3274     return 0;
3275
3276 fail:
3277     if (pkt_data != data)
3278         av_freep(&pkt_data);
3279     return res;
3280 }
3281
3282 static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data,
3283                                 int size, int64_t pos, uint64_t cluster_time,
3284                                 uint64_t block_duration, int is_keyframe,
3285                                 uint8_t *additional, uint64_t additional_id, int additional_size,
3286                                 int64_t cluster_pos, int64_t discard_padding)
3287 {
3288     uint64_t timecode = AV_NOPTS_VALUE;
3289     MatroskaTrack *track;
3290     int res = 0;
3291     AVStream *st;
3292     int16_t block_time;
3293     uint32_t *lace_size = NULL;
3294     int n, flags, laces = 0;
3295     uint64_t num;
3296     int trust_default_duration = 1;
3297
3298     if ((n = matroska_ebmlnum_uint(matroska, data, size, &num)) < 0) {
3299         av_log(matroska->ctx, AV_LOG_ERROR, "EBML block data error\n");
3300         return n;
3301     }
3302     data += n;
3303     size -= n;
3304
3305     track = matroska_find_track_by_num(matroska, num);
3306     if (!track || !track->stream) {
3307         av_log(matroska->ctx, AV_LOG_INFO,
3308                "Invalid stream %"PRIu64" or size %u\n", num, size);
3309         return AVERROR_INVALIDDATA;
3310     } else if (size <= 3)
3311         return 0;
3312     st = track->stream;
3313     if (st->discard >= AVDISCARD_ALL)
3314         return res;
3315     av_assert1(block_duration != AV_NOPTS_VALUE);
3316
3317     block_time = sign_extend(AV_RB16(data), 16);
3318     data      += 2;
3319     flags      = *data++;
3320     size      -= 3;
3321     if (is_keyframe == -1)
3322         is_keyframe = flags & 0x80 ? AV_PKT_FLAG_KEY : 0;
3323
3324     if (cluster_time != (uint64_t) -1 &&
3325         (block_time >= 0 || cluster_time >= -block_time)) {
3326         timecode = cluster_time + block_time - track->codec_delay_in_track_tb;
3327         if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE &&
3328             timecode < track->end_timecode)
3329             is_keyframe = 0;  /* overlapping subtitles are not key frame */
3330         if (is_keyframe) {
3331             ff_reduce_index(matroska->ctx, st->index);
3332             av_add_index_entry(st, cluster_pos, timecode, 0, 0,
3333                                AVINDEX_KEYFRAME);
3334         }
3335     }
3336
3337     if (matroska->skip_to_keyframe &&
3338         track->type != MATROSKA_TRACK_TYPE_SUBTITLE) {
3339         // Compare signed timecodes. Timecode may be negative due to codec delay
3340         // offset. We don't support timestamps greater than int64_t anyway - see
3341         // AVPacket's pts.
3342         if ((int64_t)timecode < (int64_t)matroska->skip_to_timecode)
3343             return res;
3344         if (is_keyframe)
3345             matroska->skip_to_keyframe = 0;
3346         else if (!st->skip_to_keyframe) {
3347             av_log(matroska->ctx, AV_LOG_ERROR, "File is broken, keyframes not correctly marked!\n");
3348             matroska->skip_to_keyframe = 0;
3349         }
3350     }
3351
3352     res = matroska_parse_laces(matroska, &data, &size, (flags & 0x06) >> 1,
3353                                &lace_size, &laces);
3354
3355     if (res)
3356         goto end;
3357
3358     if (track->audio.samplerate == 8000) {
3359         // If this is needed for more codecs, then add them here
3360         if (st->codecpar->codec_id == AV_CODEC_ID_AC3) {
3361             if (track->audio.samplerate != st->codecpar->sample_rate || !st->codecpar->frame_size)
3362                 trust_default_duration = 0;
3363         }
3364     }
3365
3366     if (!block_duration && trust_default_duration)
3367         block_duration = track->default_duration * laces / matroska->time_scale;
3368
3369     if (cluster_time != (uint64_t)-1 && (block_time >= 0 || cluster_time >= -block_time))
3370         track->end_timecode =
3371             FFMAX(track->end_timecode, timecode + block_duration);
3372
3373     for (n = 0; n < laces; n++) {
3374         int64_t lace_duration = block_duration*(n+1) / laces - block_duration*n / laces;
3375
3376         if (lace_size[n] > size) {
3377             av_log(matroska->ctx, AV_LOG_ERROR, "Invalid packet size\n");
3378             break;
3379         }
3380
3381         if ((st->codecpar->codec_id == AV_CODEC_ID_RA_288 ||
3382              st->codecpar->codec_id == AV_CODEC_ID_COOK   ||
3383              st->codecpar->codec_id == AV_CODEC_ID_SIPR   ||
3384              st->codecpar->codec_id == AV_CODEC_ID_ATRAC3) &&
3385             st->codecpar->block_align && track->audio.sub_packet_size) {
3386             res = matroska_parse_rm_audio(matroska, track, st, data,
3387                                           lace_size[n],
3388                                           timecode, pos);
3389             if (res)
3390                 goto end;
3391
3392         } else if (st->codecpar->codec_id == AV_CODEC_ID_WEBVTT) {
3393             res = matroska_parse_webvtt(matroska, track, st,
3394                                         data, lace_size[n],
3395                                         timecode, lace_duration,
3396                                         pos);
3397             if (res)
3398                 goto end;
3399         } else {
3400             res = matroska_parse_frame(matroska, track, st, data, lace_size[n],
3401                                        timecode, lace_duration, pos,
3402                                        !n ? is_keyframe : 0,
3403                                        additional, additional_id, additional_size,
3404                                        discard_padding);
3405             if (res)
3406                 goto end;
3407         }
3408
3409         if (timecode != AV_NOPTS_VALUE)
3410             timecode = lace_duration ? timecode + lace_duration : AV_NOPTS_VALUE;
3411         data += lace_size[n];
3412         size -= lace_size[n];
3413     }
3414
3415 end:
3416     av_free(lace_size);
3417     return res;
3418 }
3419
3420 static int matroska_parse_cluster_incremental(MatroskaDemuxContext *matroska)
3421 {
3422     EbmlList *blocks_list;
3423     MatroskaBlock *blocks;
3424     int i, res;
3425     res = ebml_parse(matroska,
3426                      matroska_cluster_incremental_parsing,
3427                      &matroska->current_cluster);
3428     if (res == 1) {
3429         /* New Cluster */
3430         if (matroska->current_cluster_pos)
3431             ebml_level_end(matroska);
3432         ebml_free(matroska_cluster, &matroska->current_cluster);
3433         memset(&matroska->current_cluster, 0, sizeof(MatroskaCluster));
3434         matroska->current_cluster_num_blocks = 0;
3435         matroska->current_cluster_pos        = avio_tell(matroska->ctx->pb);
3436         matroska->prev_pkt                   = NULL;
3437         /* sizeof the ID which was already read */
3438         if (matroska->current_id)
3439             matroska->current_cluster_pos -= 4;
3440         res = ebml_parse(matroska,
3441                          matroska_clusters_incremental,
3442                          &matroska->current_cluster);
3443         /* Try parsing the block again. */
3444         if (res == 1)
3445             res = ebml_parse(matroska,
3446                              matroska_cluster_incremental_parsing,
3447                              &matroska->current_cluster);
3448     }
3449
3450     if (!res &&
3451         matroska->current_cluster_num_blocks <
3452         matroska->current_cluster.blocks.nb_elem) {
3453         blocks_list = &matroska->current_cluster.blocks;
3454         blocks      = blocks_list->elem;
3455
3456         matroska->current_cluster_num_blocks = blocks_list->nb_elem;
3457         i                                    = blocks_list->nb_elem - 1;
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             uint8_t* additional = blocks[i].additional.size > 0 ?
3461                                     blocks[i].additional.data : NULL;
3462             if (!blocks[i].non_simple)
3463                 blocks[i].duration = 0;
3464             res = matroska_parse_block(matroska, blocks[i].bin.data,
3465                                        blocks[i].bin.size, blocks[i].bin.pos,
3466                                        matroska->current_cluster.timecode,
3467                                        blocks[i].duration, is_keyframe,
3468                                        additional, blocks[i].additional_id,
3469                                        blocks[i].additional.size,
3470                                        matroska->current_cluster_pos,
3471                                        blocks[i].discard_padding);
3472         }
3473     }
3474
3475     return res;
3476 }
3477
3478 static int matroska_parse_cluster(MatroskaDemuxContext *matroska)
3479 {
3480     MatroskaCluster cluster = { 0 };
3481     EbmlList *blocks_list;
3482     MatroskaBlock *blocks;
3483     int i, res;
3484     int64_t pos;
3485
3486     if (!matroska->contains_ssa)
3487         return matroska_parse_cluster_incremental(matroska);
3488     pos = avio_tell(matroska->ctx->pb);
3489     matroska->prev_pkt = NULL;
3490     if (matroska->current_id)
3491         pos -= 4;  /* sizeof the ID which was already read */
3492     res         = ebml_parse(matroska, matroska_clusters, &cluster);
3493     blocks_list = &cluster.blocks;
3494     blocks      = blocks_list->elem;
3495     for (i = 0; i < blocks_list->nb_elem; i++)
3496         if (blocks[i].bin.size > 0 && blocks[i].bin.data) {
3497             int is_keyframe = blocks[i].non_simple ? blocks[i].reference == INT64_MIN : -1;
3498             res = matroska_parse_block(matroska, blocks[i].bin.data,
3499                                        blocks[i].bin.size, blocks[i].bin.pos,
3500                                        cluster.timecode, blocks[i].duration,
3501                                        is_keyframe, NULL, 0, 0, pos,
3502                                        blocks[i].discard_padding);
3503         }
3504     ebml_free(matroska_cluster, &cluster);
3505     return res;
3506 }
3507
3508 static int matroska_read_packet(AVFormatContext *s, AVPacket *pkt)
3509 {
3510     MatroskaDemuxContext *matroska = s->priv_data;
3511     int ret = 0;
3512
3513     while (matroska_deliver_packet(matroska, pkt)) {
3514         int64_t pos = avio_tell(matroska->ctx->pb);
3515         if (matroska->done)
3516             return (ret < 0) ? ret : AVERROR_EOF;
3517         if (matroska_parse_cluster(matroska) < 0)
3518             ret = matroska_resync(matroska, pos);
3519     }
3520
3521     return ret;
3522 }
3523
3524 static int matroska_read_seek(AVFormatContext *s, int stream_index,
3525                               int64_t timestamp, int flags)
3526 {
3527     MatroskaDemuxContext *matroska = s->priv_data;
3528     MatroskaTrack *tracks = NULL;
3529     AVStream *st = s->streams[stream_index];
3530     int i, index, index_min;
3531
3532     /* Parse the CUES now since we need the index data to seek. */
3533     if (matroska->cues_parsing_deferred > 0) {
3534         matroska->cues_parsing_deferred = 0;
3535         matroska_parse_cues(matroska);
3536     }
3537
3538     if (!st->nb_index_entries)
3539         goto err;
3540     timestamp = FFMAX(timestamp, st->index_entries[0].timestamp);
3541
3542     if ((index = av_index_search_timestamp(st, timestamp, flags)) < 0 || index == st->nb_index_entries - 1) {
3543         avio_seek(s->pb, st->index_entries[st->nb_index_entries - 1].pos,
3544                   SEEK_SET);
3545         matroska->current_id = 0;
3546         while ((index = av_index_search_timestamp(st, timestamp, flags)) < 0 || index == st->nb_index_entries - 1) {
3547             matroska_clear_queue(matroska);
3548             if (matroska_parse_cluster(matroska) < 0)
3549                 break;
3550         }
3551     }
3552
3553     matroska_clear_queue(matroska);
3554     if (index < 0 || (matroska->cues_parsing_deferred < 0 && index == st->nb_index_entries - 1))
3555         goto err;
3556
3557     index_min = index;
3558     tracks = matroska->tracks.elem;
3559     for (i = 0; i < matroska->tracks.nb_elem; i++) {
3560         tracks[i].audio.pkt_cnt        = 0;
3561         tracks[i].audio.sub_packet_cnt = 0;
3562         tracks[i].audio.buf_timecode   = AV_NOPTS_VALUE;
3563         tracks[i].end_timecode         = 0;
3564     }
3565
3566     avio_seek(s->pb, st->index_entries[index_min].pos, SEEK_SET);
3567     matroska->current_id       = 0;
3568     if (flags & AVSEEK_FLAG_ANY) {
3569         st->skip_to_keyframe = 0;
3570         matroska->skip_to_timecode = timestamp;
3571     } else {
3572         st->skip_to_keyframe = 1;
3573         matroska->skip_to_timecode = st->index_entries[index].timestamp;
3574     }
3575     matroska->skip_to_keyframe = 1;
3576     matroska->done             = 0;
3577     matroska->num_levels       = 0;
3578     ff_update_cur_dts(s, st, st->index_entries[index].timestamp);
3579     return 0;
3580 err:
3581     // slightly hackish but allows proper fallback to
3582     // the generic seeking code.
3583     matroska_clear_queue(matroska);
3584     matroska->current_id = 0;
3585     st->skip_to_keyframe =
3586     matroska->skip_to_keyframe = 0;
3587     matroska->done = 0;
3588     matroska->num_levels = 0;
3589     return -1;
3590 }
3591
3592 static int matroska_read_close(AVFormatContext *s)
3593 {
3594     MatroskaDemuxContext *matroska = s->priv_data;
3595     MatroskaTrack *tracks = matroska->tracks.elem;
3596     int n;
3597
3598     matroska_clear_queue(matroska);
3599
3600     for (n = 0; n < matroska->tracks.nb_elem; n++)
3601         if (tracks[n].type == MATROSKA_TRACK_TYPE_AUDIO)
3602             av_freep(&tracks[n].audio.buf);
3603     ebml_free(matroska_cluster, &matroska->current_cluster);
3604     ebml_free(matroska_segment, matroska);
3605
3606     return 0;
3607 }
3608
3609 typedef struct {
3610     int64_t start_time_ns;
3611     int64_t end_time_ns;
3612     int64_t start_offset;
3613     int64_t end_offset;
3614 } CueDesc;
3615
3616 /* This function searches all the Cues and returns the CueDesc corresponding to
3617  * the timestamp ts. Returned CueDesc will be such that start_time_ns <= ts <
3618  * end_time_ns. All 4 fields will be set to -1 if ts >= file's duration.
3619  */
3620 static CueDesc get_cue_desc(AVFormatContext *s, int64_t ts, int64_t cues_start) {
3621     MatroskaDemuxContext *matroska = s->priv_data;
3622     CueDesc cue_desc;
3623     int i;
3624     int nb_index_entries = s->streams[0]->nb_index_entries;
3625     AVIndexEntry *index_entries = s->streams[0]->index_entries;
3626     if (ts >= matroska->duration * matroska->time_scale) return (CueDesc) {-1, -1, -1, -1};
3627     for (i = 1; i < nb_index_entries; i++) {
3628         if (index_entries[i - 1].timestamp * matroska->time_scale <= ts &&
3629             index_entries[i].timestamp * matroska->time_scale > ts) {
3630             break;
3631         }
3632     }
3633     --i;
3634     cue_desc.start_time_ns = index_entries[i].timestamp * matroska->time_scale;
3635     cue_desc.start_offset = index_entries[i].pos - matroska->segment_start;
3636     if (i != nb_index_entries - 1) {
3637         cue_desc.end_time_ns = index_entries[i + 1].timestamp * matroska->time_scale;
3638         cue_desc.end_offset = index_entries[i + 1].pos - matroska->segment_start;
3639     } else {
3640         cue_desc.end_time_ns = matroska->duration * matroska->time_scale;
3641         // FIXME: this needs special handling for files where Cues appear
3642         // before Clusters. the current logic assumes Cues appear after
3643         // Clusters.
3644         cue_desc.end_offset = cues_start - matroska->segment_start;
3645     }
3646     return cue_desc;
3647 }
3648
3649 static int webm_clusters_start_with_keyframe(AVFormatContext *s)
3650 {
3651     MatroskaDemuxContext *matroska = s->priv_data;
3652     int64_t cluster_pos, before_pos;
3653     int index, rv = 1;
3654     if (s->streams[0]->nb_index_entries <= 0) return 0;
3655     // seek to the first cluster using cues.
3656     index = av_index_search_timestamp(s->streams[0], 0, 0);
3657     if (index < 0)  return 0;
3658     cluster_pos = s->streams[0]->index_entries[index].pos;
3659     before_pos = avio_tell(s->pb);
3660     while (1) {
3661         int64_t cluster_id = 0, cluster_length = 0;
3662         AVPacket *pkt;
3663         avio_seek(s->pb, cluster_pos, SEEK_SET);
3664         // read cluster id and length
3665         ebml_read_num(matroska, matroska->ctx->pb, 4, &cluster_id);
3666         ebml_read_length(matroska, matroska->ctx->pb, &cluster_length);
3667         if (cluster_id != 0xF43B675) { // done with all clusters
3668             break;
3669         }
3670         avio_seek(s->pb, cluster_pos, SEEK_SET);
3671         matroska->current_id = 0;
3672         matroska_clear_queue(matroska);
3673         if (matroska_parse_cluster(matroska) < 0 ||
3674             matroska->num_packets <= 0) {
3675             break;
3676         }
3677         pkt = matroska->packets[0];
3678         cluster_pos += cluster_length + 12; // 12 is the offset of the cluster id and length.
3679         if (!(pkt->flags & AV_PKT_FLAG_KEY)) {
3680             rv = 0;
3681             break;
3682         }
3683     }
3684     avio_seek(s->pb, before_pos, SEEK_SET);
3685     return rv;
3686 }
3687
3688 static int buffer_size_after_time_downloaded(int64_t time_ns, double search_sec, int64_t bps,
3689                                              double min_buffer, double* buffer,
3690                                              double* sec_to_download, AVFormatContext *s,
3691                                              int64_t cues_start)
3692 {
3693     double nano_seconds_per_second = 1000000000.0;
3694     double time_sec = time_ns / nano_seconds_per_second;
3695     int rv = 0;
3696     int64_t time_to_search_ns = (int64_t)(search_sec * nano_seconds_per_second);
3697     int64_t end_time_ns = time_ns + time_to_search_ns;
3698     double sec_downloaded = 0.0;
3699     CueDesc desc_curr = get_cue_desc(s, time_ns, cues_start);
3700     if (desc_curr.start_time_ns == -1)
3701       return -1;
3702     *sec_to_download = 0.0;
3703
3704     // Check for non cue start time.
3705     if (time_ns > desc_curr.start_time_ns) {
3706       int64_t cue_nano = desc_curr.end_time_ns - time_ns;
3707       double percent = (double)(cue_nano) / (desc_curr.end_time_ns - desc_curr.start_time_ns);
3708       double cueBytes = (desc_curr.end_offset - desc_curr.start_offset) * percent;
3709       double timeToDownload = (cueBytes * 8.0) / bps;
3710
3711       sec_downloaded += (cue_nano / nano_seconds_per_second) - timeToDownload;
3712       *sec_to_download += timeToDownload;
3713
3714       // Check if the search ends within the first cue.
3715       if (desc_curr.end_time_ns >= end_time_ns) {
3716           double desc_end_time_sec = desc_curr.end_time_ns / nano_seconds_per_second;
3717           double percent_to_sub = search_sec / (desc_end_time_sec - time_sec);
3718           sec_downloaded = percent_to_sub * sec_downloaded;
3719           *sec_to_download = percent_to_sub * *sec_to_download;
3720       }
3721
3722       if ((sec_downloaded + *buffer) <= min_buffer) {
3723           return 1;
3724       }
3725
3726       // Get the next Cue.
3727       desc_curr = get_cue_desc(s, desc_curr.end_time_ns, cues_start);
3728     }
3729
3730     while (desc_curr.start_time_ns != -1) {
3731         int64_t desc_bytes = desc_curr.end_offset - desc_curr.start_offset;
3732         int64_t desc_ns = desc_curr.end_time_ns - desc_curr.start_time_ns;
3733         double desc_sec = desc_ns / nano_seconds_per_second;
3734         double bits = (desc_bytes * 8.0);
3735         double time_to_download = bits / bps;
3736
3737         sec_downloaded += desc_sec - time_to_download;
3738         *sec_to_download += time_to_download;
3739
3740         if (desc_curr.end_time_ns >= end_time_ns) {
3741             double desc_end_time_sec = desc_curr.end_time_ns / nano_seconds_per_second;
3742             double percent_to_sub = search_sec / (desc_end_time_sec - time_sec);
3743             sec_downloaded = percent_to_sub * sec_downloaded;
3744             *sec_to_download = percent_to_sub * *sec_to_download;
3745
3746             if ((sec_downloaded + *buffer) <= min_buffer)
3747                 rv = 1;
3748             break;
3749         }
3750
3751         if ((sec_downloaded + *buffer) <= min_buffer) {
3752             rv = 1;
3753             break;
3754         }
3755
3756         desc_curr = get_cue_desc(s, desc_curr.end_time_ns, cues_start);
3757     }
3758     *buffer = *buffer + sec_downloaded;
3759     return rv;
3760 }
3761
3762 /* This function computes the bandwidth of the WebM file with the help of
3763  * buffer_size_after_time_downloaded() function. Both of these functions are
3764  * adapted from WebM Tools project and are adapted to work with FFmpeg's
3765  * Matroska parsing mechanism.
3766  *
3767  * Returns the bandwidth of the file on success; -1 on error.
3768  * */
3769 static int64_t webm_dash_manifest_compute_bandwidth(AVFormatContext *s, int64_t cues_start)
3770 {
3771     MatroskaDemuxContext *matroska = s->priv_data;
3772     AVStream *st = s->streams[0];
3773     double bandwidth = 0.0;
3774     int i;
3775
3776     for (i = 0; i < st->nb_index_entries; i++) {
3777         int64_t prebuffer_ns = 1000000000;
3778         int64_t time_ns = st->index_entries[i].timestamp * matroska->time_scale;
3779         double nano_seconds_per_second = 1000000000.0;
3780         int64_t prebuffered_ns = time_ns + prebuffer_ns;
3781         double prebuffer_bytes = 0.0;
3782         int64_t temp_prebuffer_ns = prebuffer_ns;
3783         int64_t pre_bytes, pre_ns;
3784         double pre_sec, prebuffer, bits_per_second;
3785         CueDesc desc_beg = get_cue_desc(s, time_ns, cues_start);
3786
3787         // Start with the first Cue.
3788         CueDesc desc_end = desc_beg;
3789
3790         // Figure out how much data we have downloaded for the prebuffer. This will
3791         // be used later to adjust the bits per sample to try.
3792         while (desc_end.start_time_ns != -1 && desc_end.end_time_ns < prebuffered_ns) {
3793             // Prebuffered the entire Cue.
3794             prebuffer_bytes += desc_end.end_offset - desc_end.start_offset;
3795             temp_prebuffer_ns -= desc_end.end_time_ns - desc_end.start_time_ns;
3796             desc_end = get_cue_desc(s, desc_end.end_time_ns, cues_start);
3797         }
3798         if (desc_end.start_time_ns == -1) {
3799             // The prebuffer is larger than the duration.
3800             if (matroska->duration * matroska->time_scale >= prebuffered_ns)
3801               return -1;
3802             bits_per_second = 0.0;
3803         } else {
3804             // The prebuffer ends in the last Cue. Estimate how much data was
3805             // prebuffered.
3806             pre_bytes = desc_end.end_offset - desc_end.start_offset;
3807             pre_ns = desc_end.end_time_ns - desc_end.start_time_ns;
3808             pre_sec = pre_ns / nano_seconds_per_second;
3809             prebuffer_bytes +=
3810                 pre_bytes * ((temp_prebuffer_ns / nano_seconds_per_second) / pre_sec);
3811
3812             prebuffer = prebuffer_ns / nano_seconds_per_second;
3813
3814             // Set this to 0.0 in case our prebuffer buffers the entire video.
3815             bits_per_second = 0.0;
3816             do {
3817                 int64_t desc_bytes = desc_end.end_offset - desc_beg.start_offset;
3818                 int64_t desc_ns = desc_end.end_time_ns - desc_beg.start_time_ns;
3819                 double desc_sec = desc_ns / nano_seconds_per_second;
3820                 double calc_bits_per_second = (desc_bytes * 8) / desc_sec;
3821
3822                 // Drop the bps by the percentage of bytes buffered.
3823                 double percent = (desc_bytes - prebuffer_bytes) / desc_bytes;
3824                 double mod_bits_per_second = calc_bits_per_second * percent;
3825
3826                 if (prebuffer < desc_sec) {
3827                     double search_sec =
3828                         (double)(matroska->duration * matroska->time_scale) / nano_seconds_per_second;
3829
3830                     // Add 1 so the bits per second should be a little bit greater than file
3831                     // datarate.
3832                     int64_t bps = (int64_t)(mod_bits_per_second) + 1;
3833                     const double min_buffer = 0.0;
3834                     double buffer = prebuffer;
3835                     double sec_to_download = 0.0;
3836
3837                     int rv = buffer_size_after_time_downloaded(prebuffered_ns, search_sec, bps,
3838                                                                min_buffer, &buffer, &sec_to_download,
3839                                                                s, cues_start);
3840                     if (rv < 0) {
3841                         return -1;
3842                     } else if (rv == 0) {
3843                         bits_per_second = (double)(bps);
3844                         break;
3845                     }
3846                 }
3847
3848                 desc_end = get_cue_desc(s, desc_end.end_time_ns, cues_start);
3849             } while (desc_end.start_time_ns != -1);
3850         }
3851         if (bandwidth < bits_per_second) bandwidth = bits_per_second;
3852     }
3853     return (int64_t)bandwidth;
3854 }
3855
3856 static int webm_dash_manifest_cues(AVFormatContext *s, int64_t init_range)
3857 {
3858     MatroskaDemuxContext *matroska = s->priv_data;
3859     EbmlList *seekhead_list = &matroska->seekhead;
3860     MatroskaSeekhead *seekhead = seekhead_list->elem;
3861     char *buf;
3862     int64_t cues_start = -1, cues_end = -1, before_pos, bandwidth;
3863     int i;
3864     int end = 0;
3865
3866     // determine cues start and end positions
3867     for (i = 0; i < seekhead_list->nb_elem; i++)
3868         if (seekhead[i].id == MATROSKA_ID_CUES)
3869             break;
3870
3871     if (i >= seekhead_list->nb_elem) return -1;
3872
3873     before_pos = avio_tell(matroska->ctx->pb);
3874     cues_start = seekhead[i].pos + matroska->segment_start;
3875     if (avio_seek(matroska->ctx->pb, cues_start, SEEK_SET) == cues_start) {
3876         // cues_end is computed as cues_start + cues_length + length of the
3877         // Cues element ID + EBML length of the Cues element. cues_end is
3878         // inclusive and the above sum is reduced by 1.
3879         uint64_t cues_length = 0, cues_id = 0, bytes_read = 0;
3880         bytes_read += ebml_read_num(matroska, matroska->ctx->pb, 4, &cues_id);
3881         bytes_read += ebml_read_length(matroska, matroska->ctx->pb, &cues_length);
3882         cues_end = cues_start + cues_length + bytes_read - 1;
3883     }
3884     avio_seek(matroska->ctx->pb, before_pos, SEEK_SET);
3885     if (cues_start == -1 || cues_end == -1) return -1;
3886
3887     // parse the cues
3888     matroska_parse_cues(matroska);
3889
3890     // cues start
3891     av_dict_set_int(&s->streams[0]->metadata, CUES_START, cues_start, 0);
3892
3893     // cues end
3894     av_dict_set_int(&s->streams[0]->metadata, CUES_END, cues_end, 0);
3895
3896     // if the file has cues at the start, fix up the init range so tht
3897     // it does not include it
3898     if (cues_start <= init_range)
3899         av_dict_set_int(&s->streams[0]->metadata, INITIALIZATION_RANGE, cues_start - 1, 0);
3900
3901     // bandwidth
3902     bandwidth = webm_dash_manifest_compute_bandwidth(s, cues_start);
3903     if (bandwidth < 0) return -1;
3904     av_dict_set_int(&s->streams[0]->metadata, BANDWIDTH, bandwidth, 0);
3905
3906     // check if all clusters start with key frames
3907     av_dict_set_int(&s->streams[0]->metadata, CLUSTER_KEYFRAME, webm_clusters_start_with_keyframe(s), 0);
3908
3909     // store cue point timestamps as a comma separated list for checking subsegment alignment in
3910     // the muxer. assumes that each timestamp cannot be more than 20 characters long.
3911     buf = av_malloc_array(s->streams[0]->nb_index_entries, 20 * sizeof(char));
3912     if (!buf) return -1;
3913     strcpy(buf, "");
3914     for (i = 0; i < s->streams[0]->nb_index_entries; i++) {
3915         int ret = snprintf(buf + end, 20 * sizeof(char),
3916                            "%" PRId64, s->streams[0]->index_entries[i].timestamp);
3917         if (ret <= 0 || (ret == 20 && i ==  s->streams[0]->nb_index_entries - 1)) {
3918             av_log(s, AV_LOG_ERROR, "timestamp too long.\n");
3919             av_free(buf);
3920             return AVERROR_INVALIDDATA;
3921         }
3922         end += ret;
3923         if (i != s->streams[0]->nb_index_entries - 1) {
3924             strncat(buf, ",", sizeof(char));
3925             end++;
3926         }
3927     }
3928     av_dict_set(&s->streams[0]->metadata, CUE_TIMESTAMPS, buf, 0);
3929     av_free(buf);
3930
3931     return 0;
3932 }
3933
3934 static int webm_dash_manifest_read_header(AVFormatContext *s)
3935 {
3936     char *buf;
3937     int ret = matroska_read_header(s);
3938     int64_t init_range;
3939     MatroskaTrack *tracks;
3940     MatroskaDemuxContext *matroska = s->priv_data;
3941     if (ret) {
3942         av_log(s, AV_LOG_ERROR, "Failed to read file headers\n");
3943         return -1;
3944     }
3945     if (!s->nb_streams) {
3946         matroska_read_close(s);
3947         av_log(s, AV_LOG_ERROR, "No streams found\n");
3948         return AVERROR_INVALIDDATA;
3949     }
3950
3951     if (!matroska->is_live) {
3952         buf = av_asprintf("%g", matroska->duration);
3953         if (!buf) return AVERROR(ENOMEM);
3954         av_dict_set(&s->streams[0]->metadata, DURATION, buf, 0);
3955         av_free(buf);
3956
3957         // initialization range
3958         // 5 is the offset of Cluster ID.
3959         init_range = avio_tell(s->pb) - 5;
3960         av_dict_set_int(&s->streams[0]->metadata, INITIALIZATION_RANGE, init_range, 0);
3961     }
3962
3963     // basename of the file
3964     buf = strrchr(s->url, '/');
3965     av_dict_set(&s->streams[0]->metadata, FILENAME, buf ? ++buf : s->url, 0);
3966
3967     // track number
3968     tracks = matroska->tracks.elem;
3969     av_dict_set_int(&s->streams[0]->metadata, TRACK_NUMBER, tracks[0].num, 0);
3970
3971     // parse the cues and populate Cue related fields
3972     if (!matroska->is_live) {
3973         ret = webm_dash_manifest_cues(s, init_range);
3974         if (ret < 0) {
3975             av_log(s, AV_LOG_ERROR, "Error parsing Cues\n");
3976             return ret;
3977         }
3978     }
3979
3980     // use the bandwidth from the command line if it was provided
3981     if (matroska->bandwidth > 0) {
3982         av_dict_set_int(&s->streams[0]->metadata, BANDWIDTH,
3983                         matroska->bandwidth, 0);
3984     }
3985     return 0;
3986 }
3987
3988 static int webm_dash_manifest_read_packet(AVFormatContext *s, AVPacket *pkt)
3989 {
3990     return AVERROR_EOF;
3991 }
3992
3993 #define OFFSET(x) offsetof(MatroskaDemuxContext, x)
3994 static const AVOption options[] = {
3995     { "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 },
3996     { "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 },
3997     { NULL },
3998 };
3999
4000 static const AVClass webm_dash_class = {
4001     .class_name = "WebM DASH Manifest demuxer",
4002     .item_name  = av_default_item_name,
4003     .option     = options,
4004     .version    = LIBAVUTIL_VERSION_INT,
4005 };
4006
4007 AVInputFormat ff_matroska_demuxer = {
4008     .name           = "matroska,webm",
4009     .long_name      = NULL_IF_CONFIG_SMALL("Matroska / WebM"),
4010     .extensions     = "mkv,mk3d,mka,mks",
4011     .priv_data_size = sizeof(MatroskaDemuxContext),
4012     .read_probe     = matroska_probe,
4013     .read_header    = matroska_read_header,
4014     .read_packet    = matroska_read_packet,
4015     .read_close     = matroska_read_close,
4016     .read_seek      = matroska_read_seek,
4017     .mime_type      = "audio/webm,audio/x-matroska,video/webm,video/x-matroska"
4018 };
4019
4020 AVInputFormat ff_webm_dash_manifest_demuxer = {
4021     .name           = "webm_dash_manifest",
4022     .long_name      = NULL_IF_CONFIG_SMALL("WebM DASH Manifest"),
4023     .priv_data_size = sizeof(MatroskaDemuxContext),
4024     .read_header    = webm_dash_manifest_read_header,
4025     .read_packet    = webm_dash_manifest_read_packet,
4026     .read_close     = matroska_read_close,
4027     .priv_class     = &webm_dash_class,
4028 };