]> git.sesse.net Git - ffmpeg/blob - libavformat/matroskadec.c
Merge commit '58170b027144f4840018c7a60fb8d07924cc6242'
[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 matroska_parse_tracks(AVFormatContext *s)
1712 {
1713     MatroskaDemuxContext *matroska = s->priv_data;
1714     MatroskaTrack *tracks = matroska->tracks.elem;
1715     AVStream *st;
1716     int i, j, ret;
1717     int k;
1718
1719     for (i = 0; i < matroska->tracks.nb_elem; i++) {
1720         MatroskaTrack *track = &tracks[i];
1721         enum AVCodecID codec_id = AV_CODEC_ID_NONE;
1722         EbmlList *encodings_list = &track->encodings;
1723         MatroskaTrackEncoding *encodings = encodings_list->elem;
1724         uint8_t *extradata = NULL;
1725         int extradata_size = 0;
1726         int extradata_offset = 0;
1727         uint32_t fourcc = 0;
1728         AVIOContext b;
1729         char* key_id_base64 = NULL;
1730         int bit_depth = -1;
1731
1732         /* Apply some sanity checks. */
1733         if (track->type != MATROSKA_TRACK_TYPE_VIDEO &&
1734             track->type != MATROSKA_TRACK_TYPE_AUDIO &&
1735             track->type != MATROSKA_TRACK_TYPE_SUBTITLE &&
1736             track->type != MATROSKA_TRACK_TYPE_METADATA) {
1737             av_log(matroska->ctx, AV_LOG_INFO,
1738                    "Unknown or unsupported track type %"PRIu64"\n",
1739                    track->type);
1740             continue;
1741         }
1742         if (!track->codec_id)
1743             continue;
1744
1745         if (track->audio.samplerate < 0 || track->audio.samplerate > INT_MAX ||
1746             isnan(track->audio.samplerate)) {
1747             av_log(matroska->ctx, AV_LOG_WARNING,
1748                    "Invalid sample rate %f, defaulting to 8000 instead.\n",
1749                    track->audio.samplerate);
1750             track->audio.samplerate = 8000;
1751         }
1752
1753         if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
1754             if (!track->default_duration && track->video.frame_rate > 0)
1755                 track->default_duration = 1000000000 / track->video.frame_rate;
1756             if (track->video.display_width == -1)
1757                 track->video.display_width = track->video.pixel_width;
1758             if (track->video.display_height == -1)
1759                 track->video.display_height = track->video.pixel_height;
1760             if (track->video.color_space.size == 4)
1761                 fourcc = AV_RL32(track->video.color_space.data);
1762         } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
1763             if (!track->audio.out_samplerate)
1764                 track->audio.out_samplerate = track->audio.samplerate;
1765         }
1766         if (encodings_list->nb_elem > 1) {
1767             av_log(matroska->ctx, AV_LOG_ERROR,
1768                    "Multiple combined encodings not supported");
1769         } else if (encodings_list->nb_elem == 1) {
1770             if (encodings[0].type) {
1771                 if (encodings[0].encryption.key_id.size > 0) {
1772                     /* Save the encryption key id to be stored later as a
1773                        metadata tag. */
1774                     const int b64_size = AV_BASE64_SIZE(encodings[0].encryption.key_id.size);
1775                     key_id_base64 = av_malloc(b64_size);
1776                     if (key_id_base64 == NULL)
1777                         return AVERROR(ENOMEM);
1778
1779                     av_base64_encode(key_id_base64, b64_size,
1780                                      encodings[0].encryption.key_id.data,
1781                                      encodings[0].encryption.key_id.size);
1782                 } else {
1783                     encodings[0].scope = 0;
1784                     av_log(matroska->ctx, AV_LOG_ERROR,
1785                            "Unsupported encoding type");
1786                 }
1787             } else if (
1788 #if CONFIG_ZLIB
1789                  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_ZLIB  &&
1790 #endif
1791 #if CONFIG_BZLIB
1792                  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_BZLIB &&
1793 #endif
1794 #if CONFIG_LZO
1795                  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_LZO   &&
1796 #endif
1797                  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP) {
1798                 encodings[0].scope = 0;
1799                 av_log(matroska->ctx, AV_LOG_ERROR,
1800                        "Unsupported encoding type");
1801             } else if (track->codec_priv.size && encodings[0].scope & 2) {
1802                 uint8_t *codec_priv = track->codec_priv.data;
1803                 int ret = matroska_decode_buffer(&track->codec_priv.data,
1804                                                  &track->codec_priv.size,
1805                                                  track);
1806                 if (ret < 0) {
1807                     track->codec_priv.data = NULL;
1808                     track->codec_priv.size = 0;
1809                     av_log(matroska->ctx, AV_LOG_ERROR,
1810                            "Failed to decode codec private data\n");
1811                 }
1812
1813                 if (codec_priv != track->codec_priv.data)
1814                     av_free(codec_priv);
1815             }
1816         }
1817
1818         for (j = 0; ff_mkv_codec_tags[j].id != AV_CODEC_ID_NONE; j++) {
1819             if (!strncmp(ff_mkv_codec_tags[j].str, track->codec_id,
1820                          strlen(ff_mkv_codec_tags[j].str))) {
1821                 codec_id = ff_mkv_codec_tags[j].id;
1822                 break;
1823             }
1824         }
1825
1826         st = track->stream = avformat_new_stream(s, NULL);
1827         if (!st) {
1828             av_free(key_id_base64);
1829             return AVERROR(ENOMEM);
1830         }
1831
1832         if (key_id_base64) {
1833             /* export encryption key id as base64 metadata tag */
1834             av_dict_set(&st->metadata, "enc_key_id", key_id_base64, 0);
1835             av_freep(&key_id_base64);
1836         }
1837
1838         if (!strcmp(track->codec_id, "V_MS/VFW/FOURCC") &&
1839              track->codec_priv.size >= 40               &&
1840             track->codec_priv.data) {
1841             track->ms_compat    = 1;
1842             bit_depth           = AV_RL16(track->codec_priv.data + 14);
1843             fourcc              = AV_RL32(track->codec_priv.data + 16);
1844             codec_id            = ff_codec_get_id(ff_codec_bmp_tags,
1845                                                   fourcc);
1846             if (!codec_id)
1847                 codec_id        = ff_codec_get_id(ff_codec_movvideo_tags,
1848                                                   fourcc);
1849             extradata_offset    = 40;
1850         } else if (!strcmp(track->codec_id, "A_MS/ACM") &&
1851                    track->codec_priv.size >= 14         &&
1852                    track->codec_priv.data) {
1853             int ret;
1854             ffio_init_context(&b, track->codec_priv.data,
1855                               track->codec_priv.size,
1856                               0, NULL, NULL, NULL, NULL);
1857             ret = ff_get_wav_header(s, &b, st->codec, track->codec_priv.size, 0);
1858             if (ret < 0)
1859                 return ret;
1860             codec_id         = st->codec->codec_id;
1861             fourcc           = st->codec->codec_tag;
1862             extradata_offset = FFMIN(track->codec_priv.size, 18);
1863         } else if (!strcmp(track->codec_id, "A_QUICKTIME")
1864                    && (track->codec_priv.size >= 36)
1865                    && (track->codec_priv.data)) {
1866             fourcc = AV_RL32(track->codec_priv.data + 4);
1867             codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc);
1868             if (ff_codec_get_id(ff_codec_movaudio_tags, AV_RL32(track->codec_priv.data))) {
1869                 fourcc = AV_RL32(track->codec_priv.data);
1870                 codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc);
1871             }
1872         } else if (!strcmp(track->codec_id, "V_QUICKTIME") &&
1873                    (track->codec_priv.size >= 21)          &&
1874                    (track->codec_priv.data)) {
1875             fourcc   = AV_RL32(track->codec_priv.data + 4);
1876             codec_id = ff_codec_get_id(ff_codec_movvideo_tags, fourcc);
1877             if (ff_codec_get_id(ff_codec_movvideo_tags, AV_RL32(track->codec_priv.data))) {
1878                 fourcc   = AV_RL32(track->codec_priv.data);
1879                 codec_id = ff_codec_get_id(ff_codec_movvideo_tags, fourcc);
1880             }
1881             if (codec_id == AV_CODEC_ID_NONE && AV_RL32(track->codec_priv.data+4) == AV_RL32("SMI "))
1882                 codec_id = AV_CODEC_ID_SVQ3;
1883             if (codec_id == AV_CODEC_ID_NONE) {
1884                 char buf[32];
1885                 av_get_codec_tag_string(buf, sizeof(buf), fourcc);
1886                 av_log(matroska->ctx, AV_LOG_ERROR,
1887                        "mov FourCC not found %s.\n", buf);
1888             }
1889             if (track->codec_priv.size >= 86) {
1890                 bit_depth = AV_RB16(track->codec_priv.data + 82);
1891                 ffio_init_context(&b, track->codec_priv.data,
1892                                   track->codec_priv.size,
1893                                   0, NULL, NULL, NULL, NULL);
1894                 if (ff_get_qtpalette(codec_id, &b, matroska->palette)) {
1895                     bit_depth &= 0x1F;
1896                     matroska->has_palette = 1;
1897                 }
1898             }
1899         } else if (codec_id == AV_CODEC_ID_PCM_S16BE) {
1900             switch (track->audio.bitdepth) {
1901             case  8:
1902                 codec_id = AV_CODEC_ID_PCM_U8;
1903                 break;
1904             case 24:
1905                 codec_id = AV_CODEC_ID_PCM_S24BE;
1906                 break;
1907             case 32:
1908                 codec_id = AV_CODEC_ID_PCM_S32BE;
1909                 break;
1910             }
1911         } else if (codec_id == AV_CODEC_ID_PCM_S16LE) {
1912             switch (track->audio.bitdepth) {
1913             case  8:
1914                 codec_id = AV_CODEC_ID_PCM_U8;
1915                 break;
1916             case 24:
1917                 codec_id = AV_CODEC_ID_PCM_S24LE;
1918                 break;
1919             case 32:
1920                 codec_id = AV_CODEC_ID_PCM_S32LE;
1921                 break;
1922             }
1923         } else if (codec_id == AV_CODEC_ID_PCM_F32LE &&
1924                    track->audio.bitdepth == 64) {
1925             codec_id = AV_CODEC_ID_PCM_F64LE;
1926         } else if (codec_id == AV_CODEC_ID_AAC && !track->codec_priv.size) {
1927             int profile = matroska_aac_profile(track->codec_id);
1928             int sri     = matroska_aac_sri(track->audio.samplerate);
1929             extradata   = av_mallocz(5 + AV_INPUT_BUFFER_PADDING_SIZE);
1930             if (!extradata)
1931                 return AVERROR(ENOMEM);
1932             extradata[0] = (profile << 3) | ((sri & 0x0E) >> 1);
1933             extradata[1] = ((sri & 0x01) << 7) | (track->audio.channels << 3);
1934             if (strstr(track->codec_id, "SBR")) {
1935                 sri            = matroska_aac_sri(track->audio.out_samplerate);
1936                 extradata[2]   = 0x56;
1937                 extradata[3]   = 0xE5;
1938                 extradata[4]   = 0x80 | (sri << 3);
1939                 extradata_size = 5;
1940             } else
1941                 extradata_size = 2;
1942         } else if (codec_id == AV_CODEC_ID_ALAC && track->codec_priv.size && track->codec_priv.size < INT_MAX - 12 - AV_INPUT_BUFFER_PADDING_SIZE) {
1943             /* Only ALAC's magic cookie is stored in Matroska's track headers.
1944              * Create the "atom size", "tag", and "tag version" fields the
1945              * decoder expects manually. */
1946             extradata_size = 12 + track->codec_priv.size;
1947             extradata      = av_mallocz(extradata_size +
1948                                         AV_INPUT_BUFFER_PADDING_SIZE);
1949             if (!extradata)
1950                 return AVERROR(ENOMEM);
1951             AV_WB32(extradata, extradata_size);
1952             memcpy(&extradata[4], "alac", 4);
1953             AV_WB32(&extradata[8], 0);
1954             memcpy(&extradata[12], track->codec_priv.data,
1955                    track->codec_priv.size);
1956         } else if (codec_id == AV_CODEC_ID_TTA) {
1957             extradata_size = 30;
1958             extradata      = av_mallocz(extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
1959             if (!extradata)
1960                 return AVERROR(ENOMEM);
1961             ffio_init_context(&b, extradata, extradata_size, 1,
1962                               NULL, NULL, NULL, NULL);
1963             avio_write(&b, "TTA1", 4);
1964             avio_wl16(&b, 1);
1965             if (track->audio.channels > UINT16_MAX ||
1966                 track->audio.bitdepth > UINT16_MAX) {
1967                 av_log(matroska->ctx, AV_LOG_WARNING,
1968                        "Too large audio channel number %"PRIu64
1969                        " or bitdepth %"PRIu64". Skipping track.\n",
1970                        track->audio.channels, track->audio.bitdepth);
1971                 av_freep(&extradata);
1972                 if (matroska->ctx->error_recognition & AV_EF_EXPLODE)
1973                     return AVERROR_INVALIDDATA;
1974                 else
1975                     continue;
1976             }
1977             avio_wl16(&b, track->audio.channels);
1978             avio_wl16(&b, track->audio.bitdepth);
1979             if (track->audio.out_samplerate < 0 || track->audio.out_samplerate > INT_MAX)
1980                 return AVERROR_INVALIDDATA;
1981             avio_wl32(&b, track->audio.out_samplerate);
1982             avio_wl32(&b, av_rescale((matroska->duration * matroska->time_scale),
1983                                      track->audio.out_samplerate,
1984                                      AV_TIME_BASE * 1000));
1985         } else if (codec_id == AV_CODEC_ID_RV10 ||
1986                    codec_id == AV_CODEC_ID_RV20 ||
1987                    codec_id == AV_CODEC_ID_RV30 ||
1988                    codec_id == AV_CODEC_ID_RV40) {
1989             extradata_offset = 26;
1990         } else if (codec_id == AV_CODEC_ID_RA_144) {
1991             track->audio.out_samplerate = 8000;
1992             track->audio.channels       = 1;
1993         } else if ((codec_id == AV_CODEC_ID_RA_288 ||
1994                     codec_id == AV_CODEC_ID_COOK   ||
1995                     codec_id == AV_CODEC_ID_ATRAC3 ||
1996                     codec_id == AV_CODEC_ID_SIPR)
1997                       && track->codec_priv.data) {
1998             int flavor;
1999
2000             ffio_init_context(&b, track->codec_priv.data,
2001                               track->codec_priv.size,
2002                               0, NULL, NULL, NULL, NULL);
2003             avio_skip(&b, 22);
2004             flavor                       = avio_rb16(&b);
2005             track->audio.coded_framesize = avio_rb32(&b);
2006             avio_skip(&b, 12);
2007             track->audio.sub_packet_h    = avio_rb16(&b);
2008             track->audio.frame_size      = avio_rb16(&b);
2009             track->audio.sub_packet_size = avio_rb16(&b);
2010             if (flavor                        < 0 ||
2011                 track->audio.coded_framesize <= 0 ||
2012                 track->audio.sub_packet_h    <= 0 ||
2013                 track->audio.frame_size      <= 0 ||
2014                 track->audio.sub_packet_size <= 0)
2015                 return AVERROR_INVALIDDATA;
2016             track->audio.buf = av_malloc_array(track->audio.sub_packet_h,
2017                                                track->audio.frame_size);
2018             if (!track->audio.buf)
2019                 return AVERROR(ENOMEM);
2020             if (codec_id == AV_CODEC_ID_RA_288) {
2021                 st->codec->block_align = track->audio.coded_framesize;
2022                 track->codec_priv.size = 0;
2023             } else {
2024                 if (codec_id == AV_CODEC_ID_SIPR && flavor < 4) {
2025                     static const int sipr_bit_rate[4] = { 6504, 8496, 5000, 16000 };
2026                     track->audio.sub_packet_size = ff_sipr_subpk_size[flavor];
2027                     st->codec->bit_rate          = sipr_bit_rate[flavor];
2028                 }
2029                 st->codec->block_align = track->audio.sub_packet_size;
2030                 extradata_offset       = 78;
2031             }
2032         } else if (codec_id == AV_CODEC_ID_FLAC && track->codec_priv.size) {
2033             ret = matroska_parse_flac(s, track, &extradata_offset);
2034             if (ret < 0)
2035                 return ret;
2036         } else if (codec_id == AV_CODEC_ID_PRORES && track->codec_priv.size == 4) {
2037             fourcc = AV_RL32(track->codec_priv.data);
2038         }
2039         track->codec_priv.size -= extradata_offset;
2040
2041         if (codec_id == AV_CODEC_ID_NONE)
2042             av_log(matroska->ctx, AV_LOG_INFO,
2043                    "Unknown/unsupported AVCodecID %s.\n", track->codec_id);
2044
2045         if (track->time_scale < 0.01)
2046             track->time_scale = 1.0;
2047         avpriv_set_pts_info(st, 64, matroska->time_scale * track->time_scale,
2048                             1000 * 1000 * 1000);    /* 64 bit pts in ns */
2049
2050         /* convert the delay from ns to the track timebase */
2051         track->codec_delay = av_rescale_q(track->codec_delay,
2052                                           (AVRational){ 1, 1000000000 },
2053                                           st->time_base);
2054
2055         st->codec->codec_id = codec_id;
2056
2057         if (strcmp(track->language, "und"))
2058             av_dict_set(&st->metadata, "language", track->language, 0);
2059         av_dict_set(&st->metadata, "title", track->name, 0);
2060
2061         if (track->flag_default)
2062             st->disposition |= AV_DISPOSITION_DEFAULT;
2063         if (track->flag_forced)
2064             st->disposition |= AV_DISPOSITION_FORCED;
2065
2066         if (!st->codec->extradata) {
2067             if (extradata) {
2068                 st->codec->extradata      = extradata;
2069                 st->codec->extradata_size = extradata_size;
2070             } else if (track->codec_priv.data && track->codec_priv.size > 0) {
2071                 if (ff_alloc_extradata(st->codec, track->codec_priv.size))
2072                     return AVERROR(ENOMEM);
2073                 memcpy(st->codec->extradata,
2074                        track->codec_priv.data + extradata_offset,
2075                        track->codec_priv.size);
2076             }
2077         }
2078
2079         if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
2080             MatroskaTrackPlane *planes = track->operation.combine_planes.elem;
2081             int display_width_mul  = 1;
2082             int display_height_mul = 1;
2083
2084             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
2085             st->codec->codec_tag  = fourcc;
2086             if (bit_depth >= 0)
2087                 st->codec->bits_per_coded_sample = bit_depth;
2088             st->codec->width      = track->video.pixel_width;
2089             st->codec->height     = track->video.pixel_height;
2090
2091             if (track->video.stereo_mode && track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB)
2092                 mkv_stereo_mode_display_mul(track->video.stereo_mode, &display_width_mul, &display_height_mul);
2093
2094             av_reduce(&st->sample_aspect_ratio.num,
2095                       &st->sample_aspect_ratio.den,
2096                       st->codec->height * track->video.display_width  * display_width_mul,
2097                       st->codec->width  * track->video.display_height * display_height_mul,
2098                       255);
2099             if (st->codec->codec_id != AV_CODEC_ID_HEVC)
2100                 st->need_parsing = AVSTREAM_PARSE_HEADERS;
2101
2102             if (track->default_duration) {
2103                 av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
2104                           1000000000, track->default_duration, 30000);
2105 #if FF_API_R_FRAME_RATE
2106                 if (   st->avg_frame_rate.num < st->avg_frame_rate.den * 1000LL
2107                     && st->avg_frame_rate.num > st->avg_frame_rate.den * 5LL)
2108                     st->r_frame_rate = st->avg_frame_rate;
2109 #endif
2110             }
2111
2112             /* export stereo mode flag as metadata tag */
2113             if (track->video.stereo_mode && track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB)
2114                 av_dict_set(&st->metadata, "stereo_mode", ff_matroska_video_stereo_mode[track->video.stereo_mode], 0);
2115
2116             /* export alpha mode flag as metadata tag  */
2117             if (track->video.alpha_mode)
2118                 av_dict_set(&st->metadata, "alpha_mode", "1", 0);
2119
2120             /* if we have virtual track, mark the real tracks */
2121             for (j=0; j < track->operation.combine_planes.nb_elem; j++) {
2122                 char buf[32];
2123                 if (planes[j].type >= MATROSKA_VIDEO_STEREO_PLANE_COUNT)
2124                     continue;
2125                 snprintf(buf, sizeof(buf), "%s_%d",
2126                          ff_matroska_video_stereo_plane[planes[j].type], i);
2127                 for (k=0; k < matroska->tracks.nb_elem; k++)
2128                     if (planes[j].uid == tracks[k].uid && tracks[k].stream) {
2129                         av_dict_set(&tracks[k].stream->metadata,
2130                                     "stereo_mode", buf, 0);
2131                         break;
2132                     }
2133             }
2134             // add stream level stereo3d side data if it is a supported format
2135             if (track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB &&
2136                 track->video.stereo_mode != 10 && track->video.stereo_mode != 12) {
2137                 int ret = ff_mkv_stereo3d_conv(st, track->video.stereo_mode);
2138                 if (ret < 0)
2139                     return ret;
2140             }
2141         } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
2142             st->codec->codec_type  = AVMEDIA_TYPE_AUDIO;
2143             st->codec->codec_tag   = fourcc;
2144             st->codec->sample_rate = track->audio.out_samplerate;
2145             st->codec->channels    = track->audio.channels;
2146             if (!st->codec->bits_per_coded_sample)
2147                 st->codec->bits_per_coded_sample = track->audio.bitdepth;
2148             if (st->codec->codec_id == AV_CODEC_ID_MP3)
2149                 st->need_parsing = AVSTREAM_PARSE_FULL;
2150             else if (st->codec->codec_id != AV_CODEC_ID_AAC)
2151                 st->need_parsing = AVSTREAM_PARSE_HEADERS;
2152             if (track->codec_delay > 0) {
2153                 st->codec->delay = av_rescale_q(track->codec_delay,
2154                                                 st->time_base,
2155                                                 (AVRational){1, st->codec->sample_rate});
2156             }
2157             if (track->seek_preroll > 0) {
2158                 av_codec_set_seek_preroll(st->codec,
2159                                           av_rescale_q(track->seek_preroll,
2160                                                        (AVRational){1, 1000000000},
2161                                                        (AVRational){1, st->codec->sample_rate}));
2162             }
2163         } else if (codec_id == AV_CODEC_ID_WEBVTT) {
2164             st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
2165
2166             if (!strcmp(track->codec_id, "D_WEBVTT/CAPTIONS")) {
2167                 st->disposition |= AV_DISPOSITION_CAPTIONS;
2168             } else if (!strcmp(track->codec_id, "D_WEBVTT/DESCRIPTIONS")) {
2169                 st->disposition |= AV_DISPOSITION_DESCRIPTIONS;
2170             } else if (!strcmp(track->codec_id, "D_WEBVTT/METADATA")) {
2171                 st->disposition |= AV_DISPOSITION_METADATA;
2172             }
2173         } else if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE) {
2174             st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
2175             if (st->codec->codec_id == AV_CODEC_ID_ASS)
2176                 matroska->contains_ssa = 1;
2177         }
2178     }
2179
2180     return 0;
2181 }
2182
2183 static int matroska_read_header(AVFormatContext *s)
2184 {
2185     MatroskaDemuxContext *matroska = s->priv_data;
2186     EbmlList *attachments_list = &matroska->attachments;
2187     EbmlList *chapters_list    = &matroska->chapters;
2188     MatroskaAttachment *attachments;
2189     MatroskaChapter *chapters;
2190     uint64_t max_start = 0;
2191     int64_t pos;
2192     Ebml ebml = { 0 };
2193     int i, j, res;
2194
2195     matroska->ctx = s;
2196     matroska->cues_parsing_deferred = 1;
2197
2198     /* First read the EBML header. */
2199     if (ebml_parse(matroska, ebml_syntax, &ebml) || !ebml.doctype) {
2200         av_log(matroska->ctx, AV_LOG_ERROR, "EBML header parsing failed\n");
2201         ebml_free(ebml_syntax, &ebml);
2202         return AVERROR_INVALIDDATA;
2203     }
2204     if (ebml.version         > EBML_VERSION      ||
2205         ebml.max_size        > sizeof(uint64_t)  ||
2206         ebml.id_length       > sizeof(uint32_t)  ||
2207         ebml.doctype_version > 3) {
2208         av_log(matroska->ctx, AV_LOG_ERROR,
2209                "EBML header using unsupported features\n"
2210                "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n",
2211                ebml.version, ebml.doctype, ebml.doctype_version);
2212         ebml_free(ebml_syntax, &ebml);
2213         return AVERROR_PATCHWELCOME;
2214     } else if (ebml.doctype_version == 3) {
2215         av_log(matroska->ctx, AV_LOG_WARNING,
2216                "EBML header using unsupported features\n"
2217                "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n",
2218                ebml.version, ebml.doctype, ebml.doctype_version);
2219     }
2220     for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++)
2221         if (!strcmp(ebml.doctype, matroska_doctypes[i]))
2222             break;
2223     if (i >= FF_ARRAY_ELEMS(matroska_doctypes)) {
2224         av_log(s, AV_LOG_WARNING, "Unknown EBML doctype '%s'\n", ebml.doctype);
2225         if (matroska->ctx->error_recognition & AV_EF_EXPLODE) {
2226             ebml_free(ebml_syntax, &ebml);
2227             return AVERROR_INVALIDDATA;
2228         }
2229     }
2230     ebml_free(ebml_syntax, &ebml);
2231
2232     /* The next thing is a segment. */
2233     pos = avio_tell(matroska->ctx->pb);
2234     res = ebml_parse(matroska, matroska_segments, matroska);
2235     // try resyncing until we find a EBML_STOP type element.
2236     while (res != 1) {
2237         res = matroska_resync(matroska, pos);
2238         if (res < 0)
2239             return res;
2240         pos = avio_tell(matroska->ctx->pb);
2241         res = ebml_parse(matroska, matroska_segment, matroska);
2242     }
2243     matroska_execute_seekhead(matroska);
2244
2245     if (!matroska->time_scale)
2246         matroska->time_scale = 1000000;
2247     if (matroska->duration)
2248         matroska->ctx->duration = matroska->duration * matroska->time_scale *
2249                                   1000 / AV_TIME_BASE;
2250     av_dict_set(&s->metadata, "title", matroska->title, 0);
2251     av_dict_set(&s->metadata, "encoder", matroska->muxingapp, 0);
2252
2253     if (matroska->date_utc.size == 8)
2254         matroska_metadata_creation_time(&s->metadata, AV_RB64(matroska->date_utc.data));
2255
2256     res = matroska_parse_tracks(s);
2257     if (res < 0)
2258         return res;
2259
2260     attachments = attachments_list->elem;
2261     for (j = 0; j < attachments_list->nb_elem; j++) {
2262         if (!(attachments[j].filename && attachments[j].mime &&
2263               attachments[j].bin.data && attachments[j].bin.size > 0)) {
2264             av_log(matroska->ctx, AV_LOG_ERROR, "incomplete attachment\n");
2265         } else {
2266             AVStream *st = avformat_new_stream(s, NULL);
2267             if (!st)
2268                 break;
2269             av_dict_set(&st->metadata, "filename", attachments[j].filename, 0);
2270             av_dict_set(&st->metadata, "mimetype", attachments[j].mime, 0);
2271             st->codec->codec_id   = AV_CODEC_ID_NONE;
2272
2273             for (i = 0; ff_mkv_image_mime_tags[i].id != AV_CODEC_ID_NONE; i++) {
2274                 if (!strncmp(ff_mkv_image_mime_tags[i].str, attachments[j].mime,
2275                              strlen(ff_mkv_image_mime_tags[i].str))) {
2276                     st->codec->codec_id = ff_mkv_image_mime_tags[i].id;
2277                     break;
2278                 }
2279             }
2280
2281             attachments[j].stream = st;
2282
2283             if (st->codec->codec_id != AV_CODEC_ID_NONE) {
2284                 st->disposition      |= AV_DISPOSITION_ATTACHED_PIC;
2285                 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
2286
2287                 av_init_packet(&st->attached_pic);
2288                 if ((res = av_new_packet(&st->attached_pic, attachments[j].bin.size)) < 0)
2289                     return res;
2290                 memcpy(st->attached_pic.data, attachments[j].bin.data, attachments[j].bin.size);
2291                 st->attached_pic.stream_index = st->index;
2292                 st->attached_pic.flags       |= AV_PKT_FLAG_KEY;
2293             } else {
2294                 st->codec->codec_type = AVMEDIA_TYPE_ATTACHMENT;
2295                 if (ff_alloc_extradata(st->codec, attachments[j].bin.size))
2296                     break;
2297                 memcpy(st->codec->extradata, attachments[j].bin.data,
2298                        attachments[j].bin.size);
2299
2300                 for (i = 0; ff_mkv_mime_tags[i].id != AV_CODEC_ID_NONE; i++) {
2301                     if (!strncmp(ff_mkv_mime_tags[i].str, attachments[j].mime,
2302                                 strlen(ff_mkv_mime_tags[i].str))) {
2303                         st->codec->codec_id = ff_mkv_mime_tags[i].id;
2304                         break;
2305                     }
2306                 }
2307             }
2308         }
2309     }
2310
2311     chapters = chapters_list->elem;
2312     for (i = 0; i < chapters_list->nb_elem; i++)
2313         if (chapters[i].start != AV_NOPTS_VALUE && chapters[i].uid &&
2314             (max_start == 0 || chapters[i].start > max_start)) {
2315             chapters[i].chapter =
2316                 avpriv_new_chapter(s, chapters[i].uid,
2317                                    (AVRational) { 1, 1000000000 },
2318                                    chapters[i].start, chapters[i].end,
2319                                    chapters[i].title);
2320             if (chapters[i].chapter) {
2321                 av_dict_set(&chapters[i].chapter->metadata,
2322                             "title", chapters[i].title, 0);
2323             }
2324             max_start = chapters[i].start;
2325         }
2326
2327     matroska_add_index_entries(matroska);
2328
2329     matroska_convert_tags(s);
2330
2331     return 0;
2332 }
2333
2334 /*
2335  * Put one packet in an application-supplied AVPacket struct.
2336  * Returns 0 on success or -1 on failure.
2337  */
2338 static int matroska_deliver_packet(MatroskaDemuxContext *matroska,
2339                                    AVPacket *pkt)
2340 {
2341     if (matroska->num_packets > 0) {
2342         memcpy(pkt, matroska->packets[0], sizeof(AVPacket));
2343         av_freep(&matroska->packets[0]);
2344         if (matroska->has_palette) {
2345             uint8_t *pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
2346             if (!pal) {
2347                 av_log(matroska->ctx, AV_LOG_ERROR, "Cannot append palette to packet\n");
2348             } else {
2349                 memcpy(pal, matroska->palette, AVPALETTE_SIZE);
2350             }
2351             matroska->has_palette = 0;
2352         }
2353         if (matroska->num_packets > 1) {
2354             void *newpackets;
2355             memmove(&matroska->packets[0], &matroska->packets[1],
2356                     (matroska->num_packets - 1) * sizeof(AVPacket *));
2357             newpackets = av_realloc(matroska->packets,
2358                                     (matroska->num_packets - 1) *
2359                                     sizeof(AVPacket *));
2360             if (newpackets)
2361                 matroska->packets = newpackets;
2362         } else {
2363             av_freep(&matroska->packets);
2364             matroska->prev_pkt = NULL;
2365         }
2366         matroska->num_packets--;
2367         return 0;
2368     }
2369
2370     return -1;
2371 }
2372
2373 /*
2374  * Free all packets in our internal queue.
2375  */
2376 static void matroska_clear_queue(MatroskaDemuxContext *matroska)
2377 {
2378     matroska->prev_pkt = NULL;
2379     if (matroska->packets) {
2380         int n;
2381         for (n = 0; n < matroska->num_packets; n++) {
2382             av_packet_unref(matroska->packets[n]);
2383             av_freep(&matroska->packets[n]);
2384         }
2385         av_freep(&matroska->packets);
2386         matroska->num_packets = 0;
2387     }
2388 }
2389
2390 static int matroska_parse_laces(MatroskaDemuxContext *matroska, uint8_t **buf,
2391                                 int *buf_size, int type,
2392                                 uint32_t **lace_buf, int *laces)
2393 {
2394     int res = 0, n, size = *buf_size;
2395     uint8_t *data = *buf;
2396     uint32_t *lace_size;
2397
2398     if (!type) {
2399         *laces    = 1;
2400         *lace_buf = av_mallocz(sizeof(int));
2401         if (!*lace_buf)
2402             return AVERROR(ENOMEM);
2403
2404         *lace_buf[0] = size;
2405         return 0;
2406     }
2407
2408     av_assert0(size > 0);
2409     *laces    = *data + 1;
2410     data     += 1;
2411     size     -= 1;
2412     lace_size = av_mallocz(*laces * sizeof(int));
2413     if (!lace_size)
2414         return AVERROR(ENOMEM);
2415
2416     switch (type) {
2417     case 0x1: /* Xiph lacing */
2418     {
2419         uint8_t temp;
2420         uint32_t total = 0;
2421         for (n = 0; res == 0 && n < *laces - 1; n++) {
2422             while (1) {
2423                 if (size <= total) {
2424                     res = AVERROR_INVALIDDATA;
2425                     break;
2426                 }
2427                 temp          = *data;
2428                 total        += temp;
2429                 lace_size[n] += temp;
2430                 data         += 1;
2431                 size         -= 1;
2432                 if (temp != 0xff)
2433                     break;
2434             }
2435         }
2436         if (size <= total) {
2437             res = AVERROR_INVALIDDATA;
2438             break;
2439         }
2440
2441         lace_size[n] = size - total;
2442         break;
2443     }
2444
2445     case 0x2: /* fixed-size lacing */
2446         if (size % (*laces)) {
2447             res = AVERROR_INVALIDDATA;
2448             break;
2449         }
2450         for (n = 0; n < *laces; n++)
2451             lace_size[n] = size / *laces;
2452         break;
2453
2454     case 0x3: /* EBML lacing */
2455     {
2456         uint64_t num;
2457         uint64_t total;
2458         n = matroska_ebmlnum_uint(matroska, data, size, &num);
2459         if (n < 0 || num > INT_MAX) {
2460             av_log(matroska->ctx, AV_LOG_INFO,
2461                    "EBML block data error\n");
2462             res = n<0 ? n : AVERROR_INVALIDDATA;
2463             break;
2464         }
2465         data += n;
2466         size -= n;
2467         total = lace_size[0] = num;
2468         for (n = 1; res == 0 && n < *laces - 1; n++) {
2469             int64_t snum;
2470             int r;
2471             r = matroska_ebmlnum_sint(matroska, data, size, &snum);
2472             if (r < 0 || lace_size[n - 1] + snum > (uint64_t)INT_MAX) {
2473                 av_log(matroska->ctx, AV_LOG_INFO,
2474                        "EBML block data error\n");
2475                 res = r<0 ? r : AVERROR_INVALIDDATA;
2476                 break;
2477             }
2478             data        += r;
2479             size        -= r;
2480             lace_size[n] = lace_size[n - 1] + snum;
2481             total       += lace_size[n];
2482         }
2483         if (size <= total) {
2484             res = AVERROR_INVALIDDATA;
2485             break;
2486         }
2487         lace_size[*laces - 1] = size - total;
2488         break;
2489     }
2490     }
2491
2492     *buf      = data;
2493     *lace_buf = lace_size;
2494     *buf_size = size;
2495
2496     return res;
2497 }
2498
2499 static int matroska_parse_rm_audio(MatroskaDemuxContext *matroska,
2500                                    MatroskaTrack *track, AVStream *st,
2501                                    uint8_t *data, int size, uint64_t timecode,
2502                                    int64_t pos)
2503 {
2504     int a = st->codec->block_align;
2505     int sps = track->audio.sub_packet_size;
2506     int cfs = track->audio.coded_framesize;
2507     int h   = track->audio.sub_packet_h;
2508     int y   = track->audio.sub_packet_cnt;
2509     int w   = track->audio.frame_size;
2510     int x;
2511
2512     if (!track->audio.pkt_cnt) {
2513         if (track->audio.sub_packet_cnt == 0)
2514             track->audio.buf_timecode = timecode;
2515         if (st->codec->codec_id == AV_CODEC_ID_RA_288) {
2516             if (size < cfs * h / 2) {
2517                 av_log(matroska->ctx, AV_LOG_ERROR,
2518                        "Corrupt int4 RM-style audio packet size\n");
2519                 return AVERROR_INVALIDDATA;
2520             }
2521             for (x = 0; x < h / 2; x++)
2522                 memcpy(track->audio.buf + x * 2 * w + y * cfs,
2523                        data + x * cfs, cfs);
2524         } else if (st->codec->codec_id == AV_CODEC_ID_SIPR) {
2525             if (size < w) {
2526                 av_log(matroska->ctx, AV_LOG_ERROR,
2527                        "Corrupt sipr RM-style audio packet size\n");
2528                 return AVERROR_INVALIDDATA;
2529             }
2530             memcpy(track->audio.buf + y * w, data, w);
2531         } else {
2532             if (size < sps * w / sps || h<=0 || w%sps) {
2533                 av_log(matroska->ctx, AV_LOG_ERROR,
2534                        "Corrupt generic RM-style audio packet size\n");
2535                 return AVERROR_INVALIDDATA;
2536             }
2537             for (x = 0; x < w / sps; x++)
2538                 memcpy(track->audio.buf +
2539                        sps * (h * x + ((h + 1) / 2) * (y & 1) + (y >> 1)),
2540                        data + x * sps, sps);
2541         }
2542
2543         if (++track->audio.sub_packet_cnt >= h) {
2544             if (st->codec->codec_id == AV_CODEC_ID_SIPR)
2545                 ff_rm_reorder_sipr_data(track->audio.buf, h, w);
2546             track->audio.sub_packet_cnt = 0;
2547             track->audio.pkt_cnt        = h * w / a;
2548         }
2549     }
2550
2551     while (track->audio.pkt_cnt) {
2552         int ret;
2553         AVPacket *pkt = av_mallocz(sizeof(AVPacket));
2554         if (!pkt)
2555             return AVERROR(ENOMEM);
2556
2557         ret = av_new_packet(pkt, a);
2558         if (ret < 0) {
2559             av_free(pkt);
2560             return ret;
2561         }
2562         memcpy(pkt->data,
2563                track->audio.buf + a * (h * w / a - track->audio.pkt_cnt--),
2564                a);
2565         pkt->pts                  = track->audio.buf_timecode;
2566         track->audio.buf_timecode = AV_NOPTS_VALUE;
2567         pkt->pos                  = pos;
2568         pkt->stream_index         = st->index;
2569         dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
2570     }
2571
2572     return 0;
2573 }
2574
2575 /* reconstruct full wavpack blocks from mangled matroska ones */
2576 static int matroska_parse_wavpack(MatroskaTrack *track, uint8_t *src,
2577                                   uint8_t **pdst, int *size)
2578 {
2579     uint8_t *dst = NULL;
2580     int dstlen   = 0;
2581     int srclen   = *size;
2582     uint32_t samples;
2583     uint16_t ver;
2584     int ret, offset = 0;
2585
2586     if (srclen < 12 || track->stream->codec->extradata_size < 2)
2587         return AVERROR_INVALIDDATA;
2588
2589     ver = AV_RL16(track->stream->codec->extradata);
2590
2591     samples = AV_RL32(src);
2592     src    += 4;
2593     srclen -= 4;
2594
2595     while (srclen >= 8) {
2596         int multiblock;
2597         uint32_t blocksize;
2598         uint8_t *tmp;
2599
2600         uint32_t flags = AV_RL32(src);
2601         uint32_t crc   = AV_RL32(src + 4);
2602         src    += 8;
2603         srclen -= 8;
2604
2605         multiblock = (flags & 0x1800) != 0x1800;
2606         if (multiblock) {
2607             if (srclen < 4) {
2608                 ret = AVERROR_INVALIDDATA;
2609                 goto fail;
2610             }
2611             blocksize = AV_RL32(src);
2612             src      += 4;
2613             srclen   -= 4;
2614         } else
2615             blocksize = srclen;
2616
2617         if (blocksize > srclen) {
2618             ret = AVERROR_INVALIDDATA;
2619             goto fail;
2620         }
2621
2622         tmp = av_realloc(dst, dstlen + blocksize + 32);
2623         if (!tmp) {
2624             ret = AVERROR(ENOMEM);
2625             goto fail;
2626         }
2627         dst     = tmp;
2628         dstlen += blocksize + 32;
2629
2630         AV_WL32(dst + offset, MKTAG('w', 'v', 'p', 'k'));   // tag
2631         AV_WL32(dst + offset +  4, blocksize + 24);         // blocksize - 8
2632         AV_WL16(dst + offset +  8, ver);                    // version
2633         AV_WL16(dst + offset + 10, 0);                      // track/index_no
2634         AV_WL32(dst + offset + 12, 0);                      // total samples
2635         AV_WL32(dst + offset + 16, 0);                      // block index
2636         AV_WL32(dst + offset + 20, samples);                // number of samples
2637         AV_WL32(dst + offset + 24, flags);                  // flags
2638         AV_WL32(dst + offset + 28, crc);                    // crc
2639         memcpy(dst + offset + 32, src, blocksize);          // block data
2640
2641         src    += blocksize;
2642         srclen -= blocksize;
2643         offset += blocksize + 32;
2644     }
2645
2646     *pdst = dst;
2647     *size = dstlen;
2648
2649     return 0;
2650
2651 fail:
2652     av_freep(&dst);
2653     return ret;
2654 }
2655
2656 static int matroska_parse_webvtt(MatroskaDemuxContext *matroska,
2657                                  MatroskaTrack *track,
2658                                  AVStream *st,
2659                                  uint8_t *data, int data_len,
2660                                  uint64_t timecode,
2661                                  uint64_t duration,
2662                                  int64_t pos)
2663 {
2664     AVPacket *pkt;
2665     uint8_t *id, *settings, *text, *buf;
2666     int id_len, settings_len, text_len;
2667     uint8_t *p, *q;
2668     int err;
2669
2670     if (data_len <= 0)
2671         return AVERROR_INVALIDDATA;
2672
2673     p = data;
2674     q = data + data_len;
2675
2676     id = p;
2677     id_len = -1;
2678     while (p < q) {
2679         if (*p == '\r' || *p == '\n') {
2680             id_len = p - id;
2681             if (*p == '\r')
2682                 p++;
2683             break;
2684         }
2685         p++;
2686     }
2687
2688     if (p >= q || *p != '\n')
2689         return AVERROR_INVALIDDATA;
2690     p++;
2691
2692     settings = p;
2693     settings_len = -1;
2694     while (p < q) {
2695         if (*p == '\r' || *p == '\n') {
2696             settings_len = p - settings;
2697             if (*p == '\r')
2698                 p++;
2699             break;
2700         }
2701         p++;
2702     }
2703
2704     if (p >= q || *p != '\n')
2705         return AVERROR_INVALIDDATA;
2706     p++;
2707
2708     text = p;
2709     text_len = q - p;
2710     while (text_len > 0) {
2711         const int len = text_len - 1;
2712         const uint8_t c = p[len];
2713         if (c != '\r' && c != '\n')
2714             break;
2715         text_len = len;
2716     }
2717
2718     if (text_len <= 0)
2719         return AVERROR_INVALIDDATA;
2720
2721     pkt = av_mallocz(sizeof(*pkt));
2722     if (!pkt)
2723         return AVERROR(ENOMEM);
2724     err = av_new_packet(pkt, text_len);
2725     if (err < 0) {
2726         av_free(pkt);
2727         return AVERROR(err);
2728     }
2729
2730     memcpy(pkt->data, text, text_len);
2731
2732     if (id_len > 0) {
2733         buf = av_packet_new_side_data(pkt,
2734                                       AV_PKT_DATA_WEBVTT_IDENTIFIER,
2735                                       id_len);
2736         if (!buf) {
2737             av_free(pkt);
2738             return AVERROR(ENOMEM);
2739         }
2740         memcpy(buf, id, id_len);
2741     }
2742
2743     if (settings_len > 0) {
2744         buf = av_packet_new_side_data(pkt,
2745                                       AV_PKT_DATA_WEBVTT_SETTINGS,
2746                                       settings_len);
2747         if (!buf) {
2748             av_free(pkt);
2749             return AVERROR(ENOMEM);
2750         }
2751         memcpy(buf, settings, settings_len);
2752     }
2753
2754     // Do we need this for subtitles?
2755     // pkt->flags = AV_PKT_FLAG_KEY;
2756
2757     pkt->stream_index = st->index;
2758     pkt->pts = timecode;
2759
2760     // Do we need this for subtitles?
2761     // pkt->dts = timecode;
2762
2763     pkt->duration = duration;
2764     pkt->pos = pos;
2765
2766     dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
2767     matroska->prev_pkt = pkt;
2768
2769     return 0;
2770 }
2771
2772 static int matroska_parse_frame(MatroskaDemuxContext *matroska,
2773                                 MatroskaTrack *track, AVStream *st,
2774                                 uint8_t *data, int pkt_size,
2775                                 uint64_t timecode, uint64_t lace_duration,
2776                                 int64_t pos, int is_keyframe,
2777                                 uint8_t *additional, uint64_t additional_id, int additional_size,
2778                                 int64_t discard_padding)
2779 {
2780     MatroskaTrackEncoding *encodings = track->encodings.elem;
2781     uint8_t *pkt_data = data;
2782     int offset = 0, res;
2783     AVPacket *pkt;
2784
2785     if (encodings && !encodings->type && encodings->scope & 1) {
2786         res = matroska_decode_buffer(&pkt_data, &pkt_size, track);
2787         if (res < 0)
2788             return res;
2789     }
2790
2791     if (st->codec->codec_id == AV_CODEC_ID_WAVPACK) {
2792         uint8_t *wv_data;
2793         res = matroska_parse_wavpack(track, pkt_data, &wv_data, &pkt_size);
2794         if (res < 0) {
2795             av_log(matroska->ctx, AV_LOG_ERROR,
2796                    "Error parsing a wavpack block.\n");
2797             goto fail;
2798         }
2799         if (pkt_data != data)
2800             av_freep(&pkt_data);
2801         pkt_data = wv_data;
2802     }
2803
2804     if (st->codec->codec_id == AV_CODEC_ID_PRORES &&
2805         AV_RB32(&data[4]) != MKBETAG('i', 'c', 'p', 'f'))
2806         offset = 8;
2807
2808     pkt = av_mallocz(sizeof(AVPacket));
2809     if (!pkt) {
2810         if (pkt_data != data)
2811             av_freep(&pkt_data);
2812         return AVERROR(ENOMEM);
2813     }
2814     /* XXX: prevent data copy... */
2815     if (av_new_packet(pkt, pkt_size + offset) < 0) {
2816         av_free(pkt);
2817         res = AVERROR(ENOMEM);
2818         goto fail;
2819     }
2820
2821     if (st->codec->codec_id == AV_CODEC_ID_PRORES && offset == 8) {
2822         uint8_t *buf = pkt->data;
2823         bytestream_put_be32(&buf, pkt_size);
2824         bytestream_put_be32(&buf, MKBETAG('i', 'c', 'p', 'f'));
2825     }
2826
2827     memcpy(pkt->data + offset, pkt_data, pkt_size);
2828
2829     if (pkt_data != data)
2830         av_freep(&pkt_data);
2831
2832     pkt->flags        = is_keyframe;
2833     pkt->stream_index = st->index;
2834
2835     if (additional_size > 0) {
2836         uint8_t *side_data = av_packet_new_side_data(pkt,
2837                                                      AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL,
2838                                                      additional_size + 8);
2839         if (!side_data) {
2840             av_packet_unref(pkt);
2841             av_free(pkt);
2842             return AVERROR(ENOMEM);
2843         }
2844         AV_WB64(side_data, additional_id);
2845         memcpy(side_data + 8, additional, additional_size);
2846     }
2847
2848     if (discard_padding) {
2849         uint8_t *side_data = av_packet_new_side_data(pkt,
2850                                                      AV_PKT_DATA_SKIP_SAMPLES,
2851                                                      10);
2852         if (!side_data) {
2853             av_packet_unref(pkt);
2854             av_free(pkt);
2855             return AVERROR(ENOMEM);
2856         }
2857         AV_WL32(side_data, 0);
2858         AV_WL32(side_data + 4, av_rescale_q(discard_padding,
2859                                             (AVRational){1, 1000000000},
2860                                             (AVRational){1, st->codec->sample_rate}));
2861     }
2862
2863     if (track->ms_compat)
2864         pkt->dts = timecode;
2865     else
2866         pkt->pts = timecode;
2867     pkt->pos = pos;
2868     pkt->duration = lace_duration;
2869
2870 #if FF_API_CONVERGENCE_DURATION
2871 FF_DISABLE_DEPRECATION_WARNINGS
2872     if (st->codec->codec_id == AV_CODEC_ID_SUBRIP) {
2873         pkt->convergence_duration = lace_duration;
2874     }
2875 FF_ENABLE_DEPRECATION_WARNINGS
2876 #endif
2877
2878     dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
2879     matroska->prev_pkt = pkt;
2880
2881     return 0;
2882
2883 fail:
2884     if (pkt_data != data)
2885         av_freep(&pkt_data);
2886     return res;
2887 }
2888
2889 static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data,
2890                                 int size, int64_t pos, uint64_t cluster_time,
2891                                 uint64_t block_duration, int is_keyframe,
2892                                 uint8_t *additional, uint64_t additional_id, int additional_size,
2893                                 int64_t cluster_pos, int64_t discard_padding)
2894 {
2895     uint64_t timecode = AV_NOPTS_VALUE;
2896     MatroskaTrack *track;
2897     int res = 0;
2898     AVStream *st;
2899     int16_t block_time;
2900     uint32_t *lace_size = NULL;
2901     int n, flags, laces = 0;
2902     uint64_t num;
2903     int trust_default_duration = 1;
2904
2905     if ((n = matroska_ebmlnum_uint(matroska, data, size, &num)) < 0) {
2906         av_log(matroska->ctx, AV_LOG_ERROR, "EBML block data error\n");
2907         return n;
2908     }
2909     data += n;
2910     size -= n;
2911
2912     track = matroska_find_track_by_num(matroska, num);
2913     if (!track || !track->stream) {
2914         av_log(matroska->ctx, AV_LOG_INFO,
2915                "Invalid stream %"PRIu64" or size %u\n", num, size);
2916         return AVERROR_INVALIDDATA;
2917     } else if (size <= 3)
2918         return 0;
2919     st = track->stream;
2920     if (st->discard >= AVDISCARD_ALL)
2921         return res;
2922     av_assert1(block_duration != AV_NOPTS_VALUE);
2923
2924     block_time = sign_extend(AV_RB16(data), 16);
2925     data      += 2;
2926     flags      = *data++;
2927     size      -= 3;
2928     if (is_keyframe == -1)
2929         is_keyframe = flags & 0x80 ? AV_PKT_FLAG_KEY : 0;
2930
2931     if (cluster_time != (uint64_t) -1 &&
2932         (block_time >= 0 || cluster_time >= -block_time)) {
2933         timecode = cluster_time + block_time - track->codec_delay;
2934         if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE &&
2935             timecode < track->end_timecode)
2936             is_keyframe = 0;  /* overlapping subtitles are not key frame */
2937         if (is_keyframe)
2938             av_add_index_entry(st, cluster_pos, timecode, 0, 0,
2939                                AVINDEX_KEYFRAME);
2940     }
2941
2942     if (matroska->skip_to_keyframe &&
2943         track->type != MATROSKA_TRACK_TYPE_SUBTITLE) {
2944         if (timecode < matroska->skip_to_timecode)
2945             return res;
2946         if (is_keyframe)
2947             matroska->skip_to_keyframe = 0;
2948         else if (!st->skip_to_keyframe) {
2949             av_log(matroska->ctx, AV_LOG_ERROR, "File is broken, keyframes not correctly marked!\n");
2950             matroska->skip_to_keyframe = 0;
2951         }
2952     }
2953
2954     res = matroska_parse_laces(matroska, &data, &size, (flags & 0x06) >> 1,
2955                                &lace_size, &laces);
2956
2957     if (res)
2958         goto end;
2959
2960     if (track->audio.samplerate == 8000) {
2961         // If this is needed for more codecs, then add them here
2962         if (st->codec->codec_id == AV_CODEC_ID_AC3) {
2963             if (track->audio.samplerate != st->codec->sample_rate || !st->codec->frame_size)
2964                 trust_default_duration = 0;
2965         }
2966     }
2967
2968     if (!block_duration && trust_default_duration)
2969         block_duration = track->default_duration * laces / matroska->time_scale;
2970
2971     if (cluster_time != (uint64_t)-1 && (block_time >= 0 || cluster_time >= -block_time))
2972         track->end_timecode =
2973             FFMAX(track->end_timecode, timecode + block_duration);
2974
2975     for (n = 0; n < laces; n++) {
2976         int64_t lace_duration = block_duration*(n+1) / laces - block_duration*n / laces;
2977
2978         if (lace_size[n] > size) {
2979             av_log(matroska->ctx, AV_LOG_ERROR, "Invalid packet size\n");
2980             break;
2981         }
2982
2983         if ((st->codec->codec_id == AV_CODEC_ID_RA_288 ||
2984              st->codec->codec_id == AV_CODEC_ID_COOK   ||
2985              st->codec->codec_id == AV_CODEC_ID_SIPR   ||
2986              st->codec->codec_id == AV_CODEC_ID_ATRAC3) &&
2987             st->codec->block_align && track->audio.sub_packet_size) {
2988             res = matroska_parse_rm_audio(matroska, track, st, data,
2989                                           lace_size[n],
2990                                           timecode, pos);
2991             if (res)
2992                 goto end;
2993
2994         } else if (st->codec->codec_id == AV_CODEC_ID_WEBVTT) {
2995             res = matroska_parse_webvtt(matroska, track, st,
2996                                         data, lace_size[n],
2997                                         timecode, lace_duration,
2998                                         pos);
2999             if (res)
3000                 goto end;
3001         } else {
3002             res = matroska_parse_frame(matroska, track, st, data, lace_size[n],
3003                                        timecode, lace_duration, pos,
3004                                        !n ? is_keyframe : 0,
3005                                        additional, additional_id, additional_size,
3006                                        discard_padding);
3007             if (res)
3008                 goto end;
3009         }
3010
3011         if (timecode != AV_NOPTS_VALUE)
3012             timecode = lace_duration ? timecode + lace_duration : AV_NOPTS_VALUE;
3013         data += lace_size[n];
3014         size -= lace_size[n];
3015     }
3016
3017 end:
3018     av_free(lace_size);
3019     return res;
3020 }
3021
3022 static int matroska_parse_cluster_incremental(MatroskaDemuxContext *matroska)
3023 {
3024     EbmlList *blocks_list;
3025     MatroskaBlock *blocks;
3026     int i, res;
3027     res = ebml_parse(matroska,
3028                      matroska_cluster_incremental_parsing,
3029                      &matroska->current_cluster);
3030     if (res == 1) {
3031         /* New Cluster */
3032         if (matroska->current_cluster_pos)
3033             ebml_level_end(matroska);
3034         ebml_free(matroska_cluster, &matroska->current_cluster);
3035         memset(&matroska->current_cluster, 0, sizeof(MatroskaCluster));
3036         matroska->current_cluster_num_blocks = 0;
3037         matroska->current_cluster_pos        = avio_tell(matroska->ctx->pb);
3038         matroska->prev_pkt                   = NULL;
3039         /* sizeof the ID which was already read */
3040         if (matroska->current_id)
3041             matroska->current_cluster_pos -= 4;
3042         res = ebml_parse(matroska,
3043                          matroska_clusters_incremental,
3044                          &matroska->current_cluster);
3045         /* Try parsing the block again. */
3046         if (res == 1)
3047             res = ebml_parse(matroska,
3048                              matroska_cluster_incremental_parsing,
3049                              &matroska->current_cluster);
3050     }
3051
3052     if (!res &&
3053         matroska->current_cluster_num_blocks <
3054         matroska->current_cluster.blocks.nb_elem) {
3055         blocks_list = &matroska->current_cluster.blocks;
3056         blocks      = blocks_list->elem;
3057
3058         matroska->current_cluster_num_blocks = blocks_list->nb_elem;
3059         i                                    = blocks_list->nb_elem - 1;
3060         if (blocks[i].bin.size > 0 && blocks[i].bin.data) {
3061             int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1;
3062             uint8_t* additional = blocks[i].additional.size > 0 ?
3063                                     blocks[i].additional.data : NULL;
3064             if (!blocks[i].non_simple)
3065                 blocks[i].duration = 0;
3066             res = matroska_parse_block(matroska, blocks[i].bin.data,
3067                                        blocks[i].bin.size, blocks[i].bin.pos,
3068                                        matroska->current_cluster.timecode,
3069                                        blocks[i].duration, is_keyframe,
3070                                        additional, blocks[i].additional_id,
3071                                        blocks[i].additional.size,
3072                                        matroska->current_cluster_pos,
3073                                        blocks[i].discard_padding);
3074         }
3075     }
3076
3077     return res;
3078 }
3079
3080 static int matroska_parse_cluster(MatroskaDemuxContext *matroska)
3081 {
3082     MatroskaCluster cluster = { 0 };
3083     EbmlList *blocks_list;
3084     MatroskaBlock *blocks;
3085     int i, res;
3086     int64_t pos;
3087
3088     if (!matroska->contains_ssa)
3089         return matroska_parse_cluster_incremental(matroska);
3090     pos = avio_tell(matroska->ctx->pb);
3091     matroska->prev_pkt = NULL;
3092     if (matroska->current_id)
3093         pos -= 4;  /* sizeof the ID which was already read */
3094     res         = ebml_parse(matroska, matroska_clusters, &cluster);
3095     blocks_list = &cluster.blocks;
3096     blocks      = blocks_list->elem;
3097     for (i = 0; i < blocks_list->nb_elem; i++)
3098         if (blocks[i].bin.size > 0 && blocks[i].bin.data) {
3099             int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1;
3100             res = matroska_parse_block(matroska, blocks[i].bin.data,
3101                                        blocks[i].bin.size, blocks[i].bin.pos,
3102                                        cluster.timecode, blocks[i].duration,
3103                                        is_keyframe, NULL, 0, 0, pos,
3104                                        blocks[i].discard_padding);
3105         }
3106     ebml_free(matroska_cluster, &cluster);
3107     return res;
3108 }
3109
3110 static int matroska_read_packet(AVFormatContext *s, AVPacket *pkt)
3111 {
3112     MatroskaDemuxContext *matroska = s->priv_data;
3113
3114     while (matroska_deliver_packet(matroska, pkt)) {
3115         int64_t pos = avio_tell(matroska->ctx->pb);
3116         if (matroska->done)
3117             return AVERROR_EOF;
3118         if (matroska_parse_cluster(matroska) < 0)
3119             matroska_resync(matroska, pos);
3120     }
3121
3122     return 0;
3123 }
3124
3125 static int matroska_read_seek(AVFormatContext *s, int stream_index,
3126                               int64_t timestamp, int flags)
3127 {
3128     MatroskaDemuxContext *matroska = s->priv_data;
3129     MatroskaTrack *tracks = NULL;
3130     AVStream *st = s->streams[stream_index];
3131     int i, index, index_sub, index_min;
3132
3133     /* Parse the CUES now since we need the index data to seek. */
3134     if (matroska->cues_parsing_deferred > 0) {
3135         matroska->cues_parsing_deferred = 0;
3136         matroska_parse_cues(matroska);
3137     }
3138
3139     if (!st->nb_index_entries)
3140         goto err;
3141     timestamp = FFMAX(timestamp, st->index_entries[0].timestamp);
3142
3143     if ((index = av_index_search_timestamp(st, timestamp, flags)) < 0 || index == st->nb_index_entries - 1) {
3144         avio_seek(s->pb, st->index_entries[st->nb_index_entries - 1].pos,
3145                   SEEK_SET);
3146         matroska->current_id = 0;
3147         while ((index = av_index_search_timestamp(st, timestamp, flags)) < 0 || index == st->nb_index_entries - 1) {
3148             matroska_clear_queue(matroska);
3149             if (matroska_parse_cluster(matroska) < 0)
3150                 break;
3151         }
3152     }
3153
3154     matroska_clear_queue(matroska);
3155     if (index < 0 || (matroska->cues_parsing_deferred < 0 && index == st->nb_index_entries - 1))
3156         goto err;
3157
3158     index_min = index;
3159     tracks = matroska->tracks.elem;
3160     for (i = 0; i < matroska->tracks.nb_elem; i++) {
3161         tracks[i].audio.pkt_cnt        = 0;
3162         tracks[i].audio.sub_packet_cnt = 0;
3163         tracks[i].audio.buf_timecode   = AV_NOPTS_VALUE;
3164         tracks[i].end_timecode         = 0;
3165         if (tracks[i].type == MATROSKA_TRACK_TYPE_SUBTITLE &&
3166             tracks[i].stream &&
3167             tracks[i].stream->discard != AVDISCARD_ALL) {
3168             index_sub = av_index_search_timestamp(
3169                 tracks[i].stream, st->index_entries[index].timestamp,
3170                 AVSEEK_FLAG_BACKWARD);
3171             while (index_sub >= 0 &&
3172                   index_min > 0 &&
3173                   tracks[i].stream->index_entries[index_sub].pos < st->index_entries[index_min].pos &&
3174                   st->index_entries[index].timestamp - tracks[i].stream->index_entries[index_sub].timestamp < 30000000000 / matroska->time_scale)
3175                 index_min--;
3176         }
3177     }
3178
3179     avio_seek(s->pb, st->index_entries[index_min].pos, SEEK_SET);
3180     matroska->current_id       = 0;
3181     if (flags & AVSEEK_FLAG_ANY) {
3182         st->skip_to_keyframe = 0;
3183         matroska->skip_to_timecode = timestamp;
3184     } else {
3185         st->skip_to_keyframe = 1;
3186         matroska->skip_to_timecode = st->index_entries[index].timestamp;
3187     }
3188     matroska->skip_to_keyframe = 1;
3189     matroska->done             = 0;
3190     matroska->num_levels       = 0;
3191     ff_update_cur_dts(s, st, st->index_entries[index].timestamp);
3192     return 0;
3193 err:
3194     // slightly hackish but allows proper fallback to
3195     // the generic seeking code.
3196     matroska_clear_queue(matroska);
3197     matroska->current_id = 0;
3198     st->skip_to_keyframe =
3199     matroska->skip_to_keyframe = 0;
3200     matroska->done = 0;
3201     matroska->num_levels = 0;
3202     return -1;
3203 }
3204
3205 static int matroska_read_close(AVFormatContext *s)
3206 {
3207     MatroskaDemuxContext *matroska = s->priv_data;
3208     MatroskaTrack *tracks = matroska->tracks.elem;
3209     int n;
3210
3211     matroska_clear_queue(matroska);
3212
3213     for (n = 0; n < matroska->tracks.nb_elem; n++)
3214         if (tracks[n].type == MATROSKA_TRACK_TYPE_AUDIO)
3215             av_freep(&tracks[n].audio.buf);
3216     ebml_free(matroska_cluster, &matroska->current_cluster);
3217     ebml_free(matroska_segment, matroska);
3218
3219     return 0;
3220 }
3221
3222 typedef struct {
3223     int64_t start_time_ns;
3224     int64_t end_time_ns;
3225     int64_t start_offset;
3226     int64_t end_offset;
3227 } CueDesc;
3228
3229 /* This function searches all the Cues and returns the CueDesc corresponding the
3230  * the timestamp ts. Returned CueDesc will be such that start_time_ns <= ts <
3231  * end_time_ns. All 4 fields will be set to -1 if ts >= file's duration.
3232  */
3233 static CueDesc get_cue_desc(AVFormatContext *s, int64_t ts, int64_t cues_start) {
3234     MatroskaDemuxContext *matroska = s->priv_data;
3235     CueDesc cue_desc;
3236     int i;
3237     int nb_index_entries = s->streams[0]->nb_index_entries;
3238     AVIndexEntry *index_entries = s->streams[0]->index_entries;
3239     if (ts >= matroska->duration * matroska->time_scale) return (CueDesc) {-1, -1, -1, -1};
3240     for (i = 1; i < nb_index_entries; i++) {
3241         if (index_entries[i - 1].timestamp * matroska->time_scale <= ts &&
3242             index_entries[i].timestamp * matroska->time_scale > ts) {
3243             break;
3244         }
3245     }
3246     --i;
3247     cue_desc.start_time_ns = index_entries[i].timestamp * matroska->time_scale;
3248     cue_desc.start_offset = index_entries[i].pos - matroska->segment_start;
3249     if (i != nb_index_entries - 1) {
3250         cue_desc.end_time_ns = index_entries[i + 1].timestamp * matroska->time_scale;
3251         cue_desc.end_offset = index_entries[i + 1].pos - matroska->segment_start;
3252     } else {
3253         cue_desc.end_time_ns = matroska->duration * matroska->time_scale;
3254         // FIXME: this needs special handling for files where Cues appear
3255         // before Clusters. the current logic assumes Cues appear after
3256         // Clusters.
3257         cue_desc.end_offset = cues_start - matroska->segment_start;
3258     }
3259     return cue_desc;
3260 }
3261
3262 static int webm_clusters_start_with_keyframe(AVFormatContext *s)
3263 {
3264     MatroskaDemuxContext *matroska = s->priv_data;
3265     int64_t cluster_pos, before_pos;
3266     int index, rv = 1;
3267     if (s->streams[0]->nb_index_entries <= 0) return 0;
3268     // seek to the first cluster using cues.
3269     index = av_index_search_timestamp(s->streams[0], 0, 0);
3270     if (index < 0)  return 0;
3271     cluster_pos = s->streams[0]->index_entries[index].pos;
3272     before_pos = avio_tell(s->pb);
3273     while (1) {
3274         int64_t cluster_id = 0, cluster_length = 0;
3275         AVPacket *pkt;
3276         avio_seek(s->pb, cluster_pos, SEEK_SET);
3277         // read cluster id and length
3278         ebml_read_num(matroska, matroska->ctx->pb, 4, &cluster_id);
3279         ebml_read_length(matroska, matroska->ctx->pb, &cluster_length);
3280         if (cluster_id != 0xF43B675) { // done with all clusters
3281             break;
3282         }
3283         avio_seek(s->pb, cluster_pos, SEEK_SET);
3284         matroska->current_id = 0;
3285         matroska_clear_queue(matroska);
3286         if (matroska_parse_cluster(matroska) < 0 ||
3287             matroska->num_packets <= 0) {
3288             break;
3289         }
3290         pkt = matroska->packets[0];
3291         cluster_pos += cluster_length + 12; // 12 is the offset of the cluster id and length.
3292         if (!(pkt->flags & AV_PKT_FLAG_KEY)) {
3293             rv = 0;
3294             break;
3295         }
3296     }
3297     avio_seek(s->pb, before_pos, SEEK_SET);
3298     return rv;
3299 }
3300
3301 static int buffer_size_after_time_downloaded(int64_t time_ns, double search_sec, int64_t bps,
3302                                              double min_buffer, double* buffer,
3303                                              double* sec_to_download, AVFormatContext *s,
3304                                              int64_t cues_start)
3305 {
3306     double nano_seconds_per_second = 1000000000.0;
3307     double time_sec = time_ns / nano_seconds_per_second;
3308     int rv = 0;
3309     int64_t time_to_search_ns = (int64_t)(search_sec * nano_seconds_per_second);
3310     int64_t end_time_ns = time_ns + time_to_search_ns;
3311     double sec_downloaded = 0.0;
3312     CueDesc desc_curr = get_cue_desc(s, time_ns, cues_start);
3313     if (desc_curr.start_time_ns == -1)
3314       return -1;
3315     *sec_to_download = 0.0;
3316
3317     // Check for non cue start time.
3318     if (time_ns > desc_curr.start_time_ns) {
3319       int64_t cue_nano = desc_curr.end_time_ns - time_ns;
3320       double percent = (double)(cue_nano) / (desc_curr.end_time_ns - desc_curr.start_time_ns);
3321       double cueBytes = (desc_curr.end_offset - desc_curr.start_offset) * percent;
3322       double timeToDownload = (cueBytes * 8.0) / bps;
3323
3324       sec_downloaded += (cue_nano / nano_seconds_per_second) - timeToDownload;
3325       *sec_to_download += timeToDownload;
3326
3327       // Check if the search ends within the first cue.
3328       if (desc_curr.end_time_ns >= end_time_ns) {
3329           double desc_end_time_sec = desc_curr.end_time_ns / nano_seconds_per_second;
3330           double percent_to_sub = search_sec / (desc_end_time_sec - time_sec);
3331           sec_downloaded = percent_to_sub * sec_downloaded;
3332           *sec_to_download = percent_to_sub * *sec_to_download;
3333       }
3334
3335       if ((sec_downloaded + *buffer) <= min_buffer) {
3336           return 1;
3337       }
3338
3339       // Get the next Cue.
3340       desc_curr = get_cue_desc(s, desc_curr.end_time_ns, cues_start);
3341     }
3342
3343     while (desc_curr.start_time_ns != -1) {
3344         int64_t desc_bytes = desc_curr.end_offset - desc_curr.start_offset;
3345         int64_t desc_ns = desc_curr.end_time_ns - desc_curr.start_time_ns;
3346         double desc_sec = desc_ns / nano_seconds_per_second;
3347         double bits = (desc_bytes * 8.0);
3348         double time_to_download = bits / bps;
3349
3350         sec_downloaded += desc_sec - time_to_download;
3351         *sec_to_download += time_to_download;
3352
3353         if (desc_curr.end_time_ns >= end_time_ns) {
3354             double desc_end_time_sec = desc_curr.end_time_ns / nano_seconds_per_second;
3355             double percent_to_sub = search_sec / (desc_end_time_sec - time_sec);
3356             sec_downloaded = percent_to_sub * sec_downloaded;
3357             *sec_to_download = percent_to_sub * *sec_to_download;
3358
3359             if ((sec_downloaded + *buffer) <= min_buffer)
3360                 rv = 1;
3361             break;
3362         }
3363
3364         if ((sec_downloaded + *buffer) <= min_buffer) {
3365             rv = 1;
3366             break;
3367         }
3368
3369         desc_curr = get_cue_desc(s, desc_curr.end_time_ns, cues_start);
3370     }
3371     *buffer = *buffer + sec_downloaded;
3372     return rv;
3373 }
3374
3375 /* This function computes the bandwidth of the WebM file with the help of
3376  * buffer_size_after_time_downloaded() function. Both of these functions are
3377  * adapted from WebM Tools project and are adapted to work with FFmpeg's
3378  * Matroska parsing mechanism.
3379  *
3380  * Returns the bandwidth of the file on success; -1 on error.
3381  * */
3382 static int64_t webm_dash_manifest_compute_bandwidth(AVFormatContext *s, int64_t cues_start)
3383 {
3384     MatroskaDemuxContext *matroska = s->priv_data;
3385     AVStream *st = s->streams[0];
3386     double bandwidth = 0.0;
3387     int i;
3388
3389     for (i = 0; i < st->nb_index_entries; i++) {
3390         int64_t prebuffer_ns = 1000000000;
3391         int64_t time_ns = st->index_entries[i].timestamp * matroska->time_scale;
3392         double nano_seconds_per_second = 1000000000.0;
3393         int64_t prebuffered_ns = time_ns + prebuffer_ns;
3394         double prebuffer_bytes = 0.0;
3395         int64_t temp_prebuffer_ns = prebuffer_ns;
3396         int64_t pre_bytes, pre_ns;
3397         double pre_sec, prebuffer, bits_per_second;
3398         CueDesc desc_beg = get_cue_desc(s, time_ns, cues_start);
3399
3400         // Start with the first Cue.
3401         CueDesc desc_end = desc_beg;
3402
3403         // Figure out how much data we have downloaded for the prebuffer. This will
3404         // be used later to adjust the bits per sample to try.
3405         while (desc_end.start_time_ns != -1 && desc_end.end_time_ns < prebuffered_ns) {
3406             // Prebuffered the entire Cue.
3407             prebuffer_bytes += desc_end.end_offset - desc_end.start_offset;
3408             temp_prebuffer_ns -= desc_end.end_time_ns - desc_end.start_time_ns;
3409             desc_end = get_cue_desc(s, desc_end.end_time_ns, cues_start);
3410         }
3411         if (desc_end.start_time_ns == -1) {
3412             // The prebuffer is larger than the duration.
3413             if (matroska->duration * matroska->time_scale >= prebuffered_ns)
3414               return -1;
3415             bits_per_second = 0.0;
3416         } else {
3417             // The prebuffer ends in the last Cue. Estimate how much data was
3418             // prebuffered.
3419             pre_bytes = desc_end.end_offset - desc_end.start_offset;
3420             pre_ns = desc_end.end_time_ns - desc_end.start_time_ns;
3421             pre_sec = pre_ns / nano_seconds_per_second;
3422             prebuffer_bytes +=
3423                 pre_bytes * ((temp_prebuffer_ns / nano_seconds_per_second) / pre_sec);
3424
3425             prebuffer = prebuffer_ns / nano_seconds_per_second;
3426
3427             // Set this to 0.0 in case our prebuffer buffers the entire video.
3428             bits_per_second = 0.0;
3429             do {
3430                 int64_t desc_bytes = desc_end.end_offset - desc_beg.start_offset;
3431                 int64_t desc_ns = desc_end.end_time_ns - desc_beg.start_time_ns;
3432                 double desc_sec = desc_ns / nano_seconds_per_second;
3433                 double calc_bits_per_second = (desc_bytes * 8) / desc_sec;
3434
3435                 // Drop the bps by the percentage of bytes buffered.
3436                 double percent = (desc_bytes - prebuffer_bytes) / desc_bytes;
3437                 double mod_bits_per_second = calc_bits_per_second * percent;
3438
3439                 if (prebuffer < desc_sec) {
3440                     double search_sec =
3441                         (double)(matroska->duration * matroska->time_scale) / nano_seconds_per_second;
3442
3443                     // Add 1 so the bits per second should be a little bit greater than file
3444                     // datarate.
3445                     int64_t bps = (int64_t)(mod_bits_per_second) + 1;
3446                     const double min_buffer = 0.0;
3447                     double buffer = prebuffer;
3448                     double sec_to_download = 0.0;
3449
3450                     int rv = buffer_size_after_time_downloaded(prebuffered_ns, search_sec, bps,
3451                                                                min_buffer, &buffer, &sec_to_download,
3452                                                                s, cues_start);
3453                     if (rv < 0) {
3454                         return -1;
3455                     } else if (rv == 0) {
3456                         bits_per_second = (double)(bps);
3457                         break;
3458                     }
3459                 }
3460
3461                 desc_end = get_cue_desc(s, desc_end.end_time_ns, cues_start);
3462             } while (desc_end.start_time_ns != -1);
3463         }
3464         if (bandwidth < bits_per_second) bandwidth = bits_per_second;
3465     }
3466     return (int64_t)bandwidth;
3467 }
3468
3469 static int webm_dash_manifest_cues(AVFormatContext *s)
3470 {
3471     MatroskaDemuxContext *matroska = s->priv_data;
3472     EbmlList *seekhead_list = &matroska->seekhead;
3473     MatroskaSeekhead *seekhead = seekhead_list->elem;
3474     char *buf;
3475     int64_t cues_start = -1, cues_end = -1, before_pos, bandwidth;
3476     int i;
3477
3478     // determine cues start and end positions
3479     for (i = 0; i < seekhead_list->nb_elem; i++)
3480         if (seekhead[i].id == MATROSKA_ID_CUES)
3481             break;
3482
3483     if (i >= seekhead_list->nb_elem) return -1;
3484
3485     before_pos = avio_tell(matroska->ctx->pb);
3486     cues_start = seekhead[i].pos + matroska->segment_start;
3487     if (avio_seek(matroska->ctx->pb, cues_start, SEEK_SET) == cues_start) {
3488         // cues_end is computed as cues_start + cues_length + length of the
3489         // Cues element ID + EBML length of the Cues element. cues_end is
3490         // inclusive and the above sum is reduced by 1.
3491         uint64_t cues_length = 0, cues_id = 0, bytes_read = 0;
3492         bytes_read += ebml_read_num(matroska, matroska->ctx->pb, 4, &cues_id);
3493         bytes_read += ebml_read_length(matroska, matroska->ctx->pb, &cues_length);
3494         cues_end = cues_start + cues_length + bytes_read - 1;
3495     }
3496     avio_seek(matroska->ctx->pb, before_pos, SEEK_SET);
3497     if (cues_start == -1 || cues_end == -1) return -1;
3498
3499     // parse the cues
3500     matroska_parse_cues(matroska);
3501
3502     // cues start
3503     av_dict_set_int(&s->streams[0]->metadata, CUES_START, cues_start, 0);
3504
3505     // cues end
3506     av_dict_set_int(&s->streams[0]->metadata, CUES_END, cues_end, 0);
3507
3508     // bandwidth
3509     bandwidth = webm_dash_manifest_compute_bandwidth(s, cues_start);
3510     if (bandwidth < 0) return -1;
3511     av_dict_set_int(&s->streams[0]->metadata, BANDWIDTH, bandwidth, 0);
3512
3513     // check if all clusters start with key frames
3514     av_dict_set_int(&s->streams[0]->metadata, CLUSTER_KEYFRAME, webm_clusters_start_with_keyframe(s), 0);
3515
3516     // store cue point timestamps as a comma separated list for checking subsegment alignment in
3517     // the muxer. assumes that each timestamp cannot be more than 20 characters long.
3518     buf = av_malloc_array(s->streams[0]->nb_index_entries, 20 * sizeof(char));
3519     if (!buf) return -1;
3520     strcpy(buf, "");
3521     for (i = 0; i < s->streams[0]->nb_index_entries; i++) {
3522         snprintf(buf, (i + 1) * 20 * sizeof(char),
3523                  "%s%" PRId64, buf, s->streams[0]->index_entries[i].timestamp);
3524         if (i != s->streams[0]->nb_index_entries - 1)
3525             strncat(buf, ",", sizeof(char));
3526     }
3527     av_dict_set(&s->streams[0]->metadata, CUE_TIMESTAMPS, buf, 0);
3528     av_free(buf);
3529
3530     return 0;
3531 }
3532
3533 static int webm_dash_manifest_read_header(AVFormatContext *s)
3534 {
3535     char *buf;
3536     int ret = matroska_read_header(s);
3537     MatroskaTrack *tracks;
3538     MatroskaDemuxContext *matroska = s->priv_data;
3539     if (ret) {
3540         av_log(s, AV_LOG_ERROR, "Failed to read file headers\n");
3541         return -1;
3542     }
3543
3544     if (!matroska->is_live) {
3545         buf = av_asprintf("%g", matroska->duration);
3546         if (!buf) return AVERROR(ENOMEM);
3547         av_dict_set(&s->streams[0]->metadata, DURATION, buf, 0);
3548         av_free(buf);
3549
3550         // initialization range
3551         // 5 is the offset of Cluster ID.
3552         av_dict_set_int(&s->streams[0]->metadata, INITIALIZATION_RANGE, avio_tell(s->pb) - 5, 0);
3553     }
3554
3555     // basename of the file
3556     buf = strrchr(s->filename, '/');
3557     av_dict_set(&s->streams[0]->metadata, FILENAME, buf ? ++buf : s->filename, 0);
3558
3559     // track number
3560     tracks = matroska->tracks.elem;
3561     av_dict_set_int(&s->streams[0]->metadata, TRACK_NUMBER, tracks[0].num, 0);
3562
3563     // parse the cues and populate Cue related fields
3564     return matroska->is_live ? 0 : webm_dash_manifest_cues(s);
3565 }
3566
3567 static int webm_dash_manifest_read_packet(AVFormatContext *s, AVPacket *pkt)
3568 {
3569     return AVERROR_EOF;
3570 }
3571
3572 #define OFFSET(x) offsetof(MatroskaDemuxContext, x)
3573 static const AVOption options[] = {
3574     { "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 },
3575     { NULL },
3576 };
3577
3578 static const AVClass webm_dash_class = {
3579     .class_name = "WebM DASH Manifest demuxer",
3580     .item_name  = av_default_item_name,
3581     .option     = options,
3582     .version    = LIBAVUTIL_VERSION_INT,
3583 };
3584
3585 AVInputFormat ff_matroska_demuxer = {
3586     .name           = "matroska,webm",
3587     .long_name      = NULL_IF_CONFIG_SMALL("Matroska / WebM"),
3588     .extensions     = "mkv,mk3d,mka,mks",
3589     .priv_data_size = sizeof(MatroskaDemuxContext),
3590     .read_probe     = matroska_probe,
3591     .read_header    = matroska_read_header,
3592     .read_packet    = matroska_read_packet,
3593     .read_close     = matroska_read_close,
3594     .read_seek      = matroska_read_seek,
3595     .mime_type      = "audio/webm,audio/x-matroska,video/webm,video/x-matroska"
3596 };
3597
3598 AVInputFormat ff_webm_dash_manifest_demuxer = {
3599     .name           = "webm_dash_manifest",
3600     .long_name      = NULL_IF_CONFIG_SMALL("WebM DASH Manifest"),
3601     .priv_data_size = sizeof(MatroskaDemuxContext),
3602     .read_header    = webm_dash_manifest_read_header,
3603     .read_packet    = webm_dash_manifest_read_packet,
3604     .read_close     = matroska_read_close,
3605     .priv_class     = &webm_dash_class,
3606 };