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