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