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