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