2 * Matroska file demuxer
3 * Copyright (c) 2003-2008 The FFmpeg Project
5 * This file is part of FFmpeg.
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.
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.
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
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/
36 #include "libavutil/avstring.h"
37 #include "libavutil/base64.h"
38 #include "libavutil/dict.h"
39 #include "libavutil/intfloat.h"
40 #include "libavutil/intreadwrite.h"
41 #include "libavutil/lzo.h"
42 #include "libavutil/mathematics.h"
43 #include "libavutil/opt.h"
44 #include "libavutil/time_internal.h"
46 #include "libavcodec/bytestream.h"
47 #include "libavcodec/flac.h"
48 #include "libavcodec/mpeg4audio.h"
51 #include "avio_internal.h"
56 /* For ff_codec_get_id(). */
82 typedef const struct EbmlSyntax {
91 const struct EbmlSyntax *n;
95 typedef struct EbmlList {
100 typedef struct EbmlBin {
106 typedef struct Ebml {
111 uint64_t doctype_version;
114 typedef struct MatroskaTrackCompression {
117 } MatroskaTrackCompression;
119 typedef struct MatroskaTrackEncryption {
122 } MatroskaTrackEncryption;
124 typedef struct MatroskaTrackEncoding {
127 MatroskaTrackCompression compression;
128 MatroskaTrackEncryption encryption;
129 } MatroskaTrackEncoding;
131 typedef struct MatroskaTrackVideo {
133 uint64_t display_width;
134 uint64_t display_height;
135 uint64_t pixel_width;
136 uint64_t pixel_height;
138 uint64_t stereo_mode;
140 } MatroskaTrackVideo;
142 typedef struct MatroskaTrackAudio {
144 double out_samplerate;
148 /* real audio header (extracted from extradata) */
155 uint64_t buf_timecode;
157 } MatroskaTrackAudio;
159 typedef struct MatroskaTrackPlane {
162 } MatroskaTrackPlane;
164 typedef struct MatroskaTrackOperation {
165 EbmlList combine_planes;
166 } MatroskaTrackOperation;
168 typedef struct MatroskaTrack {
177 uint64_t default_duration;
178 uint64_t flag_default;
179 uint64_t flag_forced;
180 uint64_t seek_preroll;
181 MatroskaTrackVideo video;
182 MatroskaTrackAudio audio;
183 MatroskaTrackOperation operation;
185 uint64_t codec_delay;
188 int64_t end_timecode;
190 uint64_t max_block_additional_id;
193 typedef struct MatroskaAttachment {
200 } MatroskaAttachment;
202 typedef struct MatroskaChapter {
211 typedef struct MatroskaIndexPos {
216 typedef struct MatroskaIndex {
221 typedef struct MatroskaTag {
229 typedef struct MatroskaTagTarget {
237 typedef struct MatroskaTags {
238 MatroskaTagTarget target;
242 typedef struct MatroskaSeekhead {
247 typedef struct MatroskaLevel {
252 typedef struct MatroskaCluster {
257 typedef struct MatroskaLevel1Element {
261 } MatroskaLevel1Element;
263 typedef struct MatroskaDemuxContext {
264 const AVClass *class;
265 AVFormatContext *ctx;
269 MatroskaLevel levels[EBML_MAX_DEPTH];
279 EbmlList attachments;
285 /* byte position of the segment inside the stream */
286 int64_t segment_start;
288 /* the packet queue */
295 /* What to skip before effectively reading a packet. */
296 int skip_to_keyframe;
297 uint64_t skip_to_timecode;
299 /* File has a CUES element, but we defer parsing until it is needed. */
300 int cues_parsing_deferred;
302 /* Level1 elements and whether they were read yet */
303 MatroskaLevel1Element level1_elems[64];
304 int num_level1_elems;
306 int current_cluster_num_blocks;
307 int64_t current_cluster_pos;
308 MatroskaCluster current_cluster;
310 /* File has SSA subtitles which prevent incremental cluster parsing. */
313 /* WebM DASH Manifest live flag/ */
315 } MatroskaDemuxContext;
317 typedef struct MatroskaBlock {
322 uint64_t additional_id;
324 int64_t discard_padding;
327 static const EbmlSyntax ebml_header[] = {
328 { EBML_ID_EBMLREADVERSION, EBML_UINT, 0, offsetof(Ebml, version), { .u = EBML_VERSION } },
329 { EBML_ID_EBMLMAXSIZELENGTH, EBML_UINT, 0, offsetof(Ebml, max_size), { .u = 8 } },
330 { EBML_ID_EBMLMAXIDLENGTH, EBML_UINT, 0, offsetof(Ebml, id_length), { .u = 4 } },
331 { EBML_ID_DOCTYPE, EBML_STR, 0, offsetof(Ebml, doctype), { .s = "(none)" } },
332 { EBML_ID_DOCTYPEREADVERSION, EBML_UINT, 0, offsetof(Ebml, doctype_version), { .u = 1 } },
333 { EBML_ID_EBMLVERSION, EBML_NONE },
334 { EBML_ID_DOCTYPEVERSION, EBML_NONE },
338 static const EbmlSyntax ebml_syntax[] = {
339 { EBML_ID_HEADER, EBML_NEST, 0, 0, { .n = ebml_header } },
343 static const EbmlSyntax matroska_info[] = {
344 { MATROSKA_ID_TIMECODESCALE, EBML_UINT, 0, offsetof(MatroskaDemuxContext, time_scale), { .u = 1000000 } },
345 { MATROSKA_ID_DURATION, EBML_FLOAT, 0, offsetof(MatroskaDemuxContext, duration) },
346 { MATROSKA_ID_TITLE, EBML_UTF8, 0, offsetof(MatroskaDemuxContext, title) },
347 { MATROSKA_ID_WRITINGAPP, EBML_NONE },
348 { MATROSKA_ID_MUXINGAPP, EBML_UTF8, 0, offsetof(MatroskaDemuxContext, muxingapp) },
349 { MATROSKA_ID_DATEUTC, EBML_BIN, 0, offsetof(MatroskaDemuxContext, date_utc) },
350 { MATROSKA_ID_SEGMENTUID, EBML_NONE },
354 static const EbmlSyntax matroska_track_video[] = {
355 { MATROSKA_ID_VIDEOFRAMERATE, EBML_FLOAT, 0, offsetof(MatroskaTrackVideo, frame_rate) },
356 { MATROSKA_ID_VIDEODISPLAYWIDTH, EBML_UINT, 0, offsetof(MatroskaTrackVideo, display_width), { .u=-1 } },
357 { MATROSKA_ID_VIDEODISPLAYHEIGHT, EBML_UINT, 0, offsetof(MatroskaTrackVideo, display_height), { .u=-1 } },
358 { MATROSKA_ID_VIDEOPIXELWIDTH, EBML_UINT, 0, offsetof(MatroskaTrackVideo, pixel_width) },
359 { MATROSKA_ID_VIDEOPIXELHEIGHT, EBML_UINT, 0, offsetof(MatroskaTrackVideo, pixel_height) },
360 { MATROSKA_ID_VIDEOCOLORSPACE, EBML_BIN, 0, offsetof(MatroskaTrackVideo, color_space) },
361 { MATROSKA_ID_VIDEOALPHAMODE, EBML_UINT, 0, offsetof(MatroskaTrackVideo, alpha_mode) },
362 { MATROSKA_ID_VIDEOPIXELCROPB, EBML_NONE },
363 { MATROSKA_ID_VIDEOPIXELCROPT, EBML_NONE },
364 { MATROSKA_ID_VIDEOPIXELCROPL, EBML_NONE },
365 { MATROSKA_ID_VIDEOPIXELCROPR, EBML_NONE },
366 { MATROSKA_ID_VIDEODISPLAYUNIT, EBML_NONE },
367 { MATROSKA_ID_VIDEOFLAGINTERLACED, EBML_NONE },
368 { MATROSKA_ID_VIDEOSTEREOMODE, EBML_UINT, 0, offsetof(MatroskaTrackVideo, stereo_mode), { .u = MATROSKA_VIDEO_STEREOMODE_TYPE_NB } },
369 { MATROSKA_ID_VIDEOASPECTRATIO, EBML_NONE },
373 static const EbmlSyntax matroska_track_audio[] = {
374 { MATROSKA_ID_AUDIOSAMPLINGFREQ, EBML_FLOAT, 0, offsetof(MatroskaTrackAudio, samplerate), { .f = 8000.0 } },
375 { MATROSKA_ID_AUDIOOUTSAMPLINGFREQ, EBML_FLOAT, 0, offsetof(MatroskaTrackAudio, out_samplerate) },
376 { MATROSKA_ID_AUDIOBITDEPTH, EBML_UINT, 0, offsetof(MatroskaTrackAudio, bitdepth) },
377 { MATROSKA_ID_AUDIOCHANNELS, EBML_UINT, 0, offsetof(MatroskaTrackAudio, channels), { .u = 1 } },
381 static const EbmlSyntax matroska_track_encoding_compression[] = {
382 { MATROSKA_ID_ENCODINGCOMPALGO, EBML_UINT, 0, offsetof(MatroskaTrackCompression, algo), { .u = 0 } },
383 { MATROSKA_ID_ENCODINGCOMPSETTINGS, EBML_BIN, 0, offsetof(MatroskaTrackCompression, settings) },
387 static const EbmlSyntax matroska_track_encoding_encryption[] = {
388 { MATROSKA_ID_ENCODINGENCALGO, EBML_UINT, 0, offsetof(MatroskaTrackEncryption,algo), {.u = 0} },
389 { MATROSKA_ID_ENCODINGENCKEYID, EBML_BIN, 0, offsetof(MatroskaTrackEncryption,key_id) },
390 { MATROSKA_ID_ENCODINGENCAESSETTINGS, EBML_NONE },
391 { MATROSKA_ID_ENCODINGSIGALGO, EBML_NONE },
392 { MATROSKA_ID_ENCODINGSIGHASHALGO, EBML_NONE },
393 { MATROSKA_ID_ENCODINGSIGKEYID, EBML_NONE },
394 { MATROSKA_ID_ENCODINGSIGNATURE, EBML_NONE },
397 static const EbmlSyntax matroska_track_encoding[] = {
398 { MATROSKA_ID_ENCODINGSCOPE, EBML_UINT, 0, offsetof(MatroskaTrackEncoding, scope), { .u = 1 } },
399 { MATROSKA_ID_ENCODINGTYPE, EBML_UINT, 0, offsetof(MatroskaTrackEncoding, type), { .u = 0 } },
400 { MATROSKA_ID_ENCODINGCOMPRESSION, EBML_NEST, 0, offsetof(MatroskaTrackEncoding, compression), { .n = matroska_track_encoding_compression } },
401 { MATROSKA_ID_ENCODINGENCRYPTION, EBML_NEST, 0, offsetof(MatroskaTrackEncoding, encryption), { .n = matroska_track_encoding_encryption } },
402 { MATROSKA_ID_ENCODINGORDER, EBML_NONE },
406 static const EbmlSyntax matroska_track_encodings[] = {
407 { MATROSKA_ID_TRACKCONTENTENCODING, EBML_NEST, sizeof(MatroskaTrackEncoding), offsetof(MatroskaTrack, encodings), { .n = matroska_track_encoding } },
411 static const EbmlSyntax matroska_track_plane[] = {
412 { MATROSKA_ID_TRACKPLANEUID, EBML_UINT, 0, offsetof(MatroskaTrackPlane,uid) },
413 { MATROSKA_ID_TRACKPLANETYPE, EBML_UINT, 0, offsetof(MatroskaTrackPlane,type) },
417 static const EbmlSyntax matroska_track_combine_planes[] = {
418 { MATROSKA_ID_TRACKPLANE, EBML_NEST, sizeof(MatroskaTrackPlane), offsetof(MatroskaTrackOperation,combine_planes), {.n = matroska_track_plane} },
422 static const EbmlSyntax matroska_track_operation[] = {
423 { MATROSKA_ID_TRACKCOMBINEPLANES, EBML_NEST, 0, 0, {.n = matroska_track_combine_planes} },
427 static const EbmlSyntax matroska_track[] = {
428 { MATROSKA_ID_TRACKNUMBER, EBML_UINT, 0, offsetof(MatroskaTrack, num) },
429 { MATROSKA_ID_TRACKNAME, EBML_UTF8, 0, offsetof(MatroskaTrack, name) },
430 { MATROSKA_ID_TRACKUID, EBML_UINT, 0, offsetof(MatroskaTrack, uid) },
431 { MATROSKA_ID_TRACKTYPE, EBML_UINT, 0, offsetof(MatroskaTrack, type) },
432 { MATROSKA_ID_CODECID, EBML_STR, 0, offsetof(MatroskaTrack, codec_id) },
433 { MATROSKA_ID_CODECPRIVATE, EBML_BIN, 0, offsetof(MatroskaTrack, codec_priv) },
434 { MATROSKA_ID_CODECDELAY, EBML_UINT, 0, offsetof(MatroskaTrack, codec_delay) },
435 { MATROSKA_ID_TRACKLANGUAGE, EBML_UTF8, 0, offsetof(MatroskaTrack, language), { .s = "eng" } },
436 { MATROSKA_ID_TRACKDEFAULTDURATION, EBML_UINT, 0, offsetof(MatroskaTrack, default_duration) },
437 { MATROSKA_ID_TRACKTIMECODESCALE, EBML_FLOAT, 0, offsetof(MatroskaTrack, time_scale), { .f = 1.0 } },
438 { MATROSKA_ID_TRACKFLAGDEFAULT, EBML_UINT, 0, offsetof(MatroskaTrack, flag_default), { .u = 1 } },
439 { MATROSKA_ID_TRACKFLAGFORCED, EBML_UINT, 0, offsetof(MatroskaTrack, flag_forced), { .u = 0 } },
440 { MATROSKA_ID_TRACKVIDEO, EBML_NEST, 0, offsetof(MatroskaTrack, video), { .n = matroska_track_video } },
441 { MATROSKA_ID_TRACKAUDIO, EBML_NEST, 0, offsetof(MatroskaTrack, audio), { .n = matroska_track_audio } },
442 { MATROSKA_ID_TRACKOPERATION, EBML_NEST, 0, offsetof(MatroskaTrack, operation), { .n = matroska_track_operation } },
443 { MATROSKA_ID_TRACKCONTENTENCODINGS, EBML_NEST, 0, 0, { .n = matroska_track_encodings } },
444 { MATROSKA_ID_TRACKMAXBLKADDID, EBML_UINT, 0, offsetof(MatroskaTrack, max_block_additional_id) },
445 { MATROSKA_ID_SEEKPREROLL, EBML_UINT, 0, offsetof(MatroskaTrack, seek_preroll) },
446 { MATROSKA_ID_TRACKFLAGENABLED, EBML_NONE },
447 { MATROSKA_ID_TRACKFLAGLACING, EBML_NONE },
448 { MATROSKA_ID_CODECNAME, EBML_NONE },
449 { MATROSKA_ID_CODECDECODEALL, EBML_NONE },
450 { MATROSKA_ID_CODECINFOURL, EBML_NONE },
451 { MATROSKA_ID_CODECDOWNLOADURL, EBML_NONE },
452 { MATROSKA_ID_TRACKMINCACHE, EBML_NONE },
453 { MATROSKA_ID_TRACKMAXCACHE, EBML_NONE },
457 static const EbmlSyntax matroska_tracks[] = {
458 { MATROSKA_ID_TRACKENTRY, EBML_NEST, sizeof(MatroskaTrack), offsetof(MatroskaDemuxContext, tracks), { .n = matroska_track } },
462 static const EbmlSyntax matroska_attachment[] = {
463 { MATROSKA_ID_FILEUID, EBML_UINT, 0, offsetof(MatroskaAttachment, uid) },
464 { MATROSKA_ID_FILENAME, EBML_UTF8, 0, offsetof(MatroskaAttachment, filename) },
465 { MATROSKA_ID_FILEMIMETYPE, EBML_STR, 0, offsetof(MatroskaAttachment, mime) },
466 { MATROSKA_ID_FILEDATA, EBML_BIN, 0, offsetof(MatroskaAttachment, bin) },
467 { MATROSKA_ID_FILEDESC, EBML_NONE },
471 static const EbmlSyntax matroska_attachments[] = {
472 { MATROSKA_ID_ATTACHEDFILE, EBML_NEST, sizeof(MatroskaAttachment), offsetof(MatroskaDemuxContext, attachments), { .n = matroska_attachment } },
476 static const EbmlSyntax matroska_chapter_display[] = {
477 { MATROSKA_ID_CHAPSTRING, EBML_UTF8, 0, offsetof(MatroskaChapter, title) },
478 { MATROSKA_ID_CHAPLANG, EBML_NONE },
482 static const EbmlSyntax matroska_chapter_entry[] = {
483 { MATROSKA_ID_CHAPTERTIMESTART, EBML_UINT, 0, offsetof(MatroskaChapter, start), { .u = AV_NOPTS_VALUE } },
484 { MATROSKA_ID_CHAPTERTIMEEND, EBML_UINT, 0, offsetof(MatroskaChapter, end), { .u = AV_NOPTS_VALUE } },
485 { MATROSKA_ID_CHAPTERUID, EBML_UINT, 0, offsetof(MatroskaChapter, uid) },
486 { MATROSKA_ID_CHAPTERDISPLAY, EBML_NEST, 0, 0, { .n = matroska_chapter_display } },
487 { MATROSKA_ID_CHAPTERFLAGHIDDEN, EBML_NONE },
488 { MATROSKA_ID_CHAPTERFLAGENABLED, EBML_NONE },
489 { MATROSKA_ID_CHAPTERPHYSEQUIV, EBML_NONE },
490 { MATROSKA_ID_CHAPTERATOM, EBML_NONE },
494 static const EbmlSyntax matroska_chapter[] = {
495 { MATROSKA_ID_CHAPTERATOM, EBML_NEST, sizeof(MatroskaChapter), offsetof(MatroskaDemuxContext, chapters), { .n = matroska_chapter_entry } },
496 { MATROSKA_ID_EDITIONUID, EBML_NONE },
497 { MATROSKA_ID_EDITIONFLAGHIDDEN, EBML_NONE },
498 { MATROSKA_ID_EDITIONFLAGDEFAULT, EBML_NONE },
499 { MATROSKA_ID_EDITIONFLAGORDERED, EBML_NONE },
503 static const EbmlSyntax matroska_chapters[] = {
504 { MATROSKA_ID_EDITIONENTRY, EBML_NEST, 0, 0, { .n = matroska_chapter } },
508 static const EbmlSyntax matroska_index_pos[] = {
509 { MATROSKA_ID_CUETRACK, EBML_UINT, 0, offsetof(MatroskaIndexPos, track) },
510 { MATROSKA_ID_CUECLUSTERPOSITION, EBML_UINT, 0, offsetof(MatroskaIndexPos, pos) },
511 { MATROSKA_ID_CUERELATIVEPOSITION,EBML_NONE },
512 { MATROSKA_ID_CUEDURATION, EBML_NONE },
513 { MATROSKA_ID_CUEBLOCKNUMBER, EBML_NONE },
517 static const EbmlSyntax matroska_index_entry[] = {
518 { MATROSKA_ID_CUETIME, EBML_UINT, 0, offsetof(MatroskaIndex, time) },
519 { MATROSKA_ID_CUETRACKPOSITION, EBML_NEST, sizeof(MatroskaIndexPos), offsetof(MatroskaIndex, pos), { .n = matroska_index_pos } },
523 static const EbmlSyntax matroska_index[] = {
524 { MATROSKA_ID_POINTENTRY, EBML_NEST, sizeof(MatroskaIndex), offsetof(MatroskaDemuxContext, index), { .n = matroska_index_entry } },
528 static const EbmlSyntax matroska_simpletag[] = {
529 { MATROSKA_ID_TAGNAME, EBML_UTF8, 0, offsetof(MatroskaTag, name) },
530 { MATROSKA_ID_TAGSTRING, EBML_UTF8, 0, offsetof(MatroskaTag, string) },
531 { MATROSKA_ID_TAGLANG, EBML_STR, 0, offsetof(MatroskaTag, lang), { .s = "und" } },
532 { MATROSKA_ID_TAGDEFAULT, EBML_UINT, 0, offsetof(MatroskaTag, def) },
533 { MATROSKA_ID_TAGDEFAULT_BUG, EBML_UINT, 0, offsetof(MatroskaTag, def) },
534 { MATROSKA_ID_SIMPLETAG, EBML_NEST, sizeof(MatroskaTag), offsetof(MatroskaTag, sub), { .n = matroska_simpletag } },
538 static const EbmlSyntax matroska_tagtargets[] = {
539 { MATROSKA_ID_TAGTARGETS_TYPE, EBML_STR, 0, offsetof(MatroskaTagTarget, type) },
540 { MATROSKA_ID_TAGTARGETS_TYPEVALUE, EBML_UINT, 0, offsetof(MatroskaTagTarget, typevalue), { .u = 50 } },
541 { MATROSKA_ID_TAGTARGETS_TRACKUID, EBML_UINT, 0, offsetof(MatroskaTagTarget, trackuid) },
542 { MATROSKA_ID_TAGTARGETS_CHAPTERUID, EBML_UINT, 0, offsetof(MatroskaTagTarget, chapteruid) },
543 { MATROSKA_ID_TAGTARGETS_ATTACHUID, EBML_UINT, 0, offsetof(MatroskaTagTarget, attachuid) },
547 static const EbmlSyntax matroska_tag[] = {
548 { MATROSKA_ID_SIMPLETAG, EBML_NEST, sizeof(MatroskaTag), offsetof(MatroskaTags, tag), { .n = matroska_simpletag } },
549 { MATROSKA_ID_TAGTARGETS, EBML_NEST, 0, offsetof(MatroskaTags, target), { .n = matroska_tagtargets } },
553 static const EbmlSyntax matroska_tags[] = {
554 { MATROSKA_ID_TAG, EBML_NEST, sizeof(MatroskaTags), offsetof(MatroskaDemuxContext, tags), { .n = matroska_tag } },
558 static const EbmlSyntax matroska_seekhead_entry[] = {
559 { MATROSKA_ID_SEEKID, EBML_UINT, 0, offsetof(MatroskaSeekhead, id) },
560 { MATROSKA_ID_SEEKPOSITION, EBML_UINT, 0, offsetof(MatroskaSeekhead, pos), { .u = -1 } },
564 static const EbmlSyntax matroska_seekhead[] = {
565 { MATROSKA_ID_SEEKENTRY, EBML_NEST, sizeof(MatroskaSeekhead), offsetof(MatroskaDemuxContext, seekhead), { .n = matroska_seekhead_entry } },
569 static const EbmlSyntax matroska_segment[] = {
570 { MATROSKA_ID_INFO, EBML_LEVEL1, 0, 0, { .n = matroska_info } },
571 { MATROSKA_ID_TRACKS, EBML_LEVEL1, 0, 0, { .n = matroska_tracks } },
572 { MATROSKA_ID_ATTACHMENTS, EBML_LEVEL1, 0, 0, { .n = matroska_attachments } },
573 { MATROSKA_ID_CHAPTERS, EBML_LEVEL1, 0, 0, { .n = matroska_chapters } },
574 { MATROSKA_ID_CUES, EBML_LEVEL1, 0, 0, { .n = matroska_index } },
575 { MATROSKA_ID_TAGS, EBML_LEVEL1, 0, 0, { .n = matroska_tags } },
576 { MATROSKA_ID_SEEKHEAD, EBML_LEVEL1, 0, 0, { .n = matroska_seekhead } },
577 { MATROSKA_ID_CLUSTER, EBML_STOP },
581 static const EbmlSyntax matroska_segments[] = {
582 { MATROSKA_ID_SEGMENT, EBML_NEST, 0, 0, { .n = matroska_segment } },
586 static const EbmlSyntax matroska_blockmore[] = {
587 { MATROSKA_ID_BLOCKADDID, EBML_UINT, 0, offsetof(MatroskaBlock,additional_id) },
588 { MATROSKA_ID_BLOCKADDITIONAL, EBML_BIN, 0, offsetof(MatroskaBlock,additional) },
592 static const EbmlSyntax matroska_blockadditions[] = {
593 { MATROSKA_ID_BLOCKMORE, EBML_NEST, 0, 0, {.n = matroska_blockmore} },
597 static const EbmlSyntax matroska_blockgroup[] = {
598 { MATROSKA_ID_BLOCK, EBML_BIN, 0, offsetof(MatroskaBlock, bin) },
599 { MATROSKA_ID_BLOCKADDITIONS, EBML_NEST, 0, 0, { .n = matroska_blockadditions} },
600 { MATROSKA_ID_SIMPLEBLOCK, EBML_BIN, 0, offsetof(MatroskaBlock, bin) },
601 { MATROSKA_ID_BLOCKDURATION, EBML_UINT, 0, offsetof(MatroskaBlock, duration) },
602 { MATROSKA_ID_DISCARDPADDING, EBML_SINT, 0, offsetof(MatroskaBlock, discard_padding) },
603 { MATROSKA_ID_BLOCKREFERENCE, EBML_SINT, 0, offsetof(MatroskaBlock, reference) },
604 { MATROSKA_ID_CODECSTATE, EBML_NONE },
605 { 1, EBML_UINT, 0, offsetof(MatroskaBlock, non_simple), { .u = 1 } },
609 static const EbmlSyntax matroska_cluster[] = {
610 { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, offsetof(MatroskaCluster, timecode) },
611 { MATROSKA_ID_BLOCKGROUP, EBML_NEST, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } },
612 { MATROSKA_ID_SIMPLEBLOCK, EBML_PASS, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } },
613 { MATROSKA_ID_CLUSTERPOSITION, EBML_NONE },
614 { MATROSKA_ID_CLUSTERPREVSIZE, EBML_NONE },
618 static const EbmlSyntax matroska_clusters[] = {
619 { MATROSKA_ID_CLUSTER, EBML_NEST, 0, 0, { .n = matroska_cluster } },
620 { MATROSKA_ID_INFO, EBML_NONE },
621 { MATROSKA_ID_CUES, EBML_NONE },
622 { MATROSKA_ID_TAGS, EBML_NONE },
623 { MATROSKA_ID_SEEKHEAD, EBML_NONE },
627 static const EbmlSyntax matroska_cluster_incremental_parsing[] = {
628 { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, offsetof(MatroskaCluster, timecode) },
629 { MATROSKA_ID_BLOCKGROUP, EBML_NEST, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } },
630 { MATROSKA_ID_SIMPLEBLOCK, EBML_PASS, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } },
631 { MATROSKA_ID_CLUSTERPOSITION, EBML_NONE },
632 { MATROSKA_ID_CLUSTERPREVSIZE, EBML_NONE },
633 { MATROSKA_ID_INFO, EBML_NONE },
634 { MATROSKA_ID_CUES, EBML_NONE },
635 { MATROSKA_ID_TAGS, EBML_NONE },
636 { MATROSKA_ID_SEEKHEAD, EBML_NONE },
637 { MATROSKA_ID_CLUSTER, EBML_STOP },
641 static const EbmlSyntax matroska_cluster_incremental[] = {
642 { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, offsetof(MatroskaCluster, timecode) },
643 { MATROSKA_ID_BLOCKGROUP, EBML_STOP },
644 { MATROSKA_ID_SIMPLEBLOCK, EBML_STOP },
645 { MATROSKA_ID_CLUSTERPOSITION, EBML_NONE },
646 { MATROSKA_ID_CLUSTERPREVSIZE, EBML_NONE },
650 static const EbmlSyntax matroska_clusters_incremental[] = {
651 { MATROSKA_ID_CLUSTER, EBML_NEST, 0, 0, { .n = matroska_cluster_incremental } },
652 { MATROSKA_ID_INFO, EBML_NONE },
653 { MATROSKA_ID_CUES, EBML_NONE },
654 { MATROSKA_ID_TAGS, EBML_NONE },
655 { MATROSKA_ID_SEEKHEAD, EBML_NONE },
659 static const char *const matroska_doctypes[] = { "matroska", "webm" };
661 static int matroska_resync(MatroskaDemuxContext *matroska, int64_t last_pos)
663 AVIOContext *pb = matroska->ctx->pb;
665 matroska->current_id = 0;
666 matroska->num_levels = 0;
668 /* seek to next position to resync from */
669 if (avio_seek(pb, last_pos + 1, SEEK_SET) < 0)
674 // try to find a toplevel element
675 while (!avio_feof(pb)) {
676 if (id == MATROSKA_ID_INFO || id == MATROSKA_ID_TRACKS ||
677 id == MATROSKA_ID_CUES || id == MATROSKA_ID_TAGS ||
678 id == MATROSKA_ID_SEEKHEAD || id == MATROSKA_ID_ATTACHMENTS ||
679 id == MATROSKA_ID_CLUSTER || id == MATROSKA_ID_CHAPTERS) {
680 matroska->current_id = id;
683 id = (id << 8) | avio_r8(pb);
692 * Return: Whether we reached the end of a level in the hierarchy or not.
694 static int ebml_level_end(MatroskaDemuxContext *matroska)
696 AVIOContext *pb = matroska->ctx->pb;
697 int64_t pos = avio_tell(pb);
699 if (matroska->num_levels > 0) {
700 MatroskaLevel *level = &matroska->levels[matroska->num_levels - 1];
701 if (pos - level->start >= level->length || matroska->current_id) {
702 matroska->num_levels--;
706 return (matroska->is_live && matroska->ctx->pb->eof_reached) ? 1 : 0;
710 * Read: an "EBML number", which is defined as a variable-length
711 * array of bytes. The first byte indicates the length by giving a
712 * number of 0-bits followed by a one. The position of the first
713 * "one" bit inside the first byte indicates the length of this
715 * Returns: number of bytes read, < 0 on error
717 static int ebml_read_num(MatroskaDemuxContext *matroska, AVIOContext *pb,
718 int max_size, uint64_t *number)
723 /* The first byte tells us the length in bytes - avio_r8() can normally
724 * return 0, but since that's not a valid first ebmlID byte, we can
725 * use it safely here to catch EOS. */
726 if (!(total = avio_r8(pb))) {
727 /* we might encounter EOS here */
728 if (!avio_feof(pb)) {
729 int64_t pos = avio_tell(pb);
730 av_log(matroska->ctx, AV_LOG_ERROR,
731 "Read error at pos. %"PRIu64" (0x%"PRIx64")\n",
733 return pb->error ? pb->error : AVERROR(EIO);
738 /* get the length of the EBML number */
739 read = 8 - ff_log2_tab[total];
740 if (read > max_size) {
741 int64_t pos = avio_tell(pb) - 1;
742 av_log(matroska->ctx, AV_LOG_ERROR,
743 "Invalid EBML number size tag 0x%02x at pos %"PRIu64" (0x%"PRIx64")\n",
744 (uint8_t) total, pos, pos);
745 return AVERROR_INVALIDDATA;
748 /* read out length */
749 total ^= 1 << ff_log2_tab[total];
751 total = (total << 8) | avio_r8(pb);
759 * Read a EBML length value.
760 * This needs special handling for the "unknown length" case which has multiple
763 static int ebml_read_length(MatroskaDemuxContext *matroska, AVIOContext *pb,
766 int res = ebml_read_num(matroska, pb, 8, number);
767 if (res > 0 && *number + 1 == 1ULL << (7 * res))
768 *number = 0xffffffffffffffULL;
773 * Read the next element as an unsigned int.
774 * 0 is success, < 0 is failure.
776 static int ebml_read_uint(AVIOContext *pb, int size, uint64_t *num)
781 return AVERROR_INVALIDDATA;
783 /* big-endian ordering; build up number */
786 *num = (*num << 8) | avio_r8(pb);
792 * Read the next element as a signed int.
793 * 0 is success, < 0 is failure.
795 static int ebml_read_sint(AVIOContext *pb, int size, int64_t *num)
800 return AVERROR_INVALIDDATA;
805 *num = sign_extend(avio_r8(pb), 8);
807 /* big-endian ordering; build up number */
809 *num = (*num << 8) | avio_r8(pb);
816 * Read the next element as a float.
817 * 0 is success, < 0 is failure.
819 static int ebml_read_float(AVIOContext *pb, int size, double *num)
824 *num = av_int2float(avio_rb32(pb));
826 *num = av_int2double(avio_rb64(pb));
828 return AVERROR_INVALIDDATA;
834 * Read the next element as an ASCII string.
835 * 0 is success, < 0 is failure.
837 static int ebml_read_ascii(AVIOContext *pb, int size, char **str)
841 /* EBML strings are usually not 0-terminated, so we allocate one
842 * byte more, read the string and NULL-terminate it ourselves. */
843 if (!(res = av_malloc(size + 1)))
844 return AVERROR(ENOMEM);
845 if (avio_read(pb, (uint8_t *) res, size) != size) {
857 * Read the next element as binary data.
858 * 0 is success, < 0 is failure.
860 static int ebml_read_binary(AVIOContext *pb, int length, EbmlBin *bin)
862 av_fast_padded_malloc(&bin->data, &bin->size, length);
864 return AVERROR(ENOMEM);
867 bin->pos = avio_tell(pb);
868 if (avio_read(pb, bin->data, length) != length) {
869 av_freep(&bin->data);
878 * Read the next element, but only the header. The contents
879 * are supposed to be sub-elements which can be read separately.
880 * 0 is success, < 0 is failure.
882 static int ebml_read_master(MatroskaDemuxContext *matroska, uint64_t length)
884 AVIOContext *pb = matroska->ctx->pb;
885 MatroskaLevel *level;
887 if (matroska->num_levels >= EBML_MAX_DEPTH) {
888 av_log(matroska->ctx, AV_LOG_ERROR,
889 "File moves beyond max. allowed depth (%d)\n", EBML_MAX_DEPTH);
890 return AVERROR(ENOSYS);
893 level = &matroska->levels[matroska->num_levels++];
894 level->start = avio_tell(pb);
895 level->length = length;
901 * Read signed/unsigned "EBML" numbers.
902 * Return: number of bytes processed, < 0 on error
904 static int matroska_ebmlnum_uint(MatroskaDemuxContext *matroska,
905 uint8_t *data, uint32_t size, uint64_t *num)
908 ffio_init_context(&pb, data, size, 0, NULL, NULL, NULL, NULL);
909 return ebml_read_num(matroska, &pb, FFMIN(size, 8), num);
913 * Same as above, but signed.
915 static int matroska_ebmlnum_sint(MatroskaDemuxContext *matroska,
916 uint8_t *data, uint32_t size, int64_t *num)
921 /* read as unsigned number first */
922 if ((res = matroska_ebmlnum_uint(matroska, data, size, &unum)) < 0)
925 /* make signed (weird way) */
926 *num = unum - ((1LL << (7 * res - 1)) - 1);
931 static int ebml_parse_elem(MatroskaDemuxContext *matroska,
932 EbmlSyntax *syntax, void *data);
934 static int ebml_parse_id(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
935 uint32_t id, void *data)
938 for (i = 0; syntax[i].id; i++)
939 if (id == syntax[i].id)
941 if (!syntax[i].id && id == MATROSKA_ID_CLUSTER &&
942 matroska->num_levels > 0 &&
943 matroska->levels[matroska->num_levels - 1].length == 0xffffffffffffff)
944 return 0; // we reached the end of an unknown size cluster
945 if (!syntax[i].id && id != EBML_ID_VOID && id != EBML_ID_CRC32) {
946 av_log(matroska->ctx, AV_LOG_DEBUG, "Unknown entry 0x%"PRIX32"\n", id);
948 return ebml_parse_elem(matroska, &syntax[i], data);
951 static int ebml_parse(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
954 if (!matroska->current_id) {
956 int res = ebml_read_num(matroska, matroska->ctx->pb, 4, &id);
958 // in live mode, finish parsing if EOF is reached.
959 return (matroska->is_live && matroska->ctx->pb->eof_reached &&
960 res == AVERROR_EOF) ? 1 : res;
962 matroska->current_id = id | 1 << 7 * res;
964 return ebml_parse_id(matroska, syntax, matroska->current_id, data);
967 static int ebml_parse_nest(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
972 for (i = 0; syntax[i].id; i++)
973 switch (syntax[i].type) {
975 *(uint64_t *) ((char *) data + syntax[i].data_offset) = syntax[i].def.u;
978 *(double *) ((char *) data + syntax[i].data_offset) = syntax[i].def.f;
982 // the default may be NULL
983 if (syntax[i].def.s) {
984 uint8_t **dst = (uint8_t **) ((uint8_t *) data + syntax[i].data_offset);
985 *dst = av_strdup(syntax[i].def.s);
987 return AVERROR(ENOMEM);
992 while (!res && !ebml_level_end(matroska))
993 res = ebml_parse(matroska, syntax, data);
998 static int is_ebml_id_valid(uint32_t id)
1000 // Due to endian nonsense in Matroska, the highest byte with any bits set
1001 // will contain the leading length bit. This bit in turn identifies the
1002 // total byte length of the element by its position within the byte.
1003 unsigned int bits = av_log2(id);
1004 return id && (bits + 7) / 8 == (8 - bits % 8);
1008 * Allocate and return the entry for the level1 element with the given ID. If
1009 * an entry already exists, return the existing entry.
1011 static MatroskaLevel1Element *matroska_find_level1_elem(MatroskaDemuxContext *matroska,
1015 MatroskaLevel1Element *elem;
1017 if (!is_ebml_id_valid(id))
1020 // Some files link to all clusters; useless.
1021 if (id == MATROSKA_ID_CLUSTER)
1024 // There can be multiple seekheads.
1025 if (id != MATROSKA_ID_SEEKHEAD) {
1026 for (i = 0; i < matroska->num_level1_elems; i++) {
1027 if (matroska->level1_elems[i].id == id)
1028 return &matroska->level1_elems[i];
1032 // Only a completely broken file would have more elements.
1033 // It also provides a low-effort way to escape from circular seekheads
1034 // (every iteration will add a level1 entry).
1035 if (matroska->num_level1_elems >= FF_ARRAY_ELEMS(matroska->level1_elems)) {
1036 av_log(matroska->ctx, AV_LOG_ERROR, "Too many level1 elements or circular seekheads.\n");
1040 elem = &matroska->level1_elems[matroska->num_level1_elems++];
1041 *elem = (MatroskaLevel1Element){.id = id};
1046 static int ebml_parse_elem(MatroskaDemuxContext *matroska,
1047 EbmlSyntax *syntax, void *data)
1049 static const uint64_t max_lengths[EBML_TYPE_COUNT] = {
1052 // max. 16 MB for strings
1053 [EBML_STR] = 0x1000000,
1054 [EBML_UTF8] = 0x1000000,
1055 // max. 256 MB for binary data
1056 [EBML_BIN] = 0x10000000,
1057 // no limits for anything else
1059 AVIOContext *pb = matroska->ctx->pb;
1060 uint32_t id = syntax->id;
1064 MatroskaLevel1Element *level1_elem;
1066 data = (char *) data + syntax->data_offset;
1067 if (syntax->list_elem_size) {
1068 EbmlList *list = data;
1069 newelem = av_realloc_array(list->elem, list->nb_elem + 1, syntax->list_elem_size);
1071 return AVERROR(ENOMEM);
1072 list->elem = newelem;
1073 data = (char *) list->elem + list->nb_elem * syntax->list_elem_size;
1074 memset(data, 0, syntax->list_elem_size);
1078 if (syntax->type != EBML_PASS && syntax->type != EBML_STOP) {
1079 matroska->current_id = 0;
1080 if ((res = ebml_read_length(matroska, pb, &length)) < 0)
1082 if (max_lengths[syntax->type] && length > max_lengths[syntax->type]) {
1083 av_log(matroska->ctx, AV_LOG_ERROR,
1084 "Invalid length 0x%"PRIx64" > 0x%"PRIx64" for syntax element %i\n",
1085 length, max_lengths[syntax->type], syntax->type);
1086 return AVERROR_INVALIDDATA;
1090 switch (syntax->type) {
1092 res = ebml_read_uint(pb, length, data);
1095 res = ebml_read_sint(pb, length, data);
1098 res = ebml_read_float(pb, length, data);
1102 res = ebml_read_ascii(pb, length, data);
1105 res = ebml_read_binary(pb, length, data);
1109 if ((res = ebml_read_master(matroska, length)) < 0)
1111 if (id == MATROSKA_ID_SEGMENT)
1112 matroska->segment_start = avio_tell(matroska->ctx->pb);
1113 if (id == MATROSKA_ID_CUES)
1114 matroska->cues_parsing_deferred = 0;
1115 if (syntax->type == EBML_LEVEL1 &&
1116 (level1_elem = matroska_find_level1_elem(matroska, syntax->id))) {
1117 if (level1_elem->parsed)
1118 av_log(matroska->ctx, AV_LOG_ERROR, "Duplicate element\n");
1119 level1_elem->parsed = 1;
1121 return ebml_parse_nest(matroska, syntax->def.n, data);
1123 return ebml_parse_id(matroska, syntax->def.n, id, data);
1127 if (ffio_limit(pb, length) != length)
1128 return AVERROR(EIO);
1129 return avio_skip(pb, length) < 0 ? AVERROR(EIO) : 0;
1131 if (res == AVERROR_INVALIDDATA)
1132 av_log(matroska->ctx, AV_LOG_ERROR, "Invalid element\n");
1133 else if (res == AVERROR(EIO))
1134 av_log(matroska->ctx, AV_LOG_ERROR, "Read error\n");
1138 static void ebml_free(EbmlSyntax *syntax, void *data)
1141 for (i = 0; syntax[i].id; i++) {
1142 void *data_off = (char *) data + syntax[i].data_offset;
1143 switch (syntax[i].type) {
1149 av_freep(&((EbmlBin *) data_off)->data);
1153 if (syntax[i].list_elem_size) {
1154 EbmlList *list = data_off;
1155 char *ptr = list->elem;
1156 for (j = 0; j < list->nb_elem;
1157 j++, ptr += syntax[i].list_elem_size)
1158 ebml_free(syntax[i].def.n, ptr);
1159 av_freep(&list->elem);
1161 ebml_free(syntax[i].def.n, data_off);
1171 static int matroska_probe(AVProbeData *p)
1174 int len_mask = 0x80, size = 1, n = 1, i;
1177 if (AV_RB32(p->buf) != EBML_ID_HEADER)
1180 /* length of header */
1182 while (size <= 8 && !(total & len_mask)) {
1188 total &= (len_mask - 1);
1190 total = (total << 8) | p->buf[4 + n++];
1192 /* Does the probe data contain the whole header? */
1193 if (p->buf_size < 4 + size + total)
1196 /* The header should contain a known document type. For now,
1197 * we don't parse the whole header but simply check for the
1198 * availability of that array of characters inside the header.
1199 * Not fully fool-proof, but good enough. */
1200 for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++) {
1201 size_t probelen = strlen(matroska_doctypes[i]);
1202 if (total < probelen)
1204 for (n = 4 + size; n <= 4 + size + total - probelen; n++)
1205 if (!memcmp(p->buf + n, matroska_doctypes[i], probelen))
1206 return AVPROBE_SCORE_MAX;
1209 // probably valid EBML header but no recognized doctype
1210 return AVPROBE_SCORE_EXTENSION;
1213 static MatroskaTrack *matroska_find_track_by_num(MatroskaDemuxContext *matroska,
1216 MatroskaTrack *tracks = matroska->tracks.elem;
1219 for (i = 0; i < matroska->tracks.nb_elem; i++)
1220 if (tracks[i].num == num)
1223 av_log(matroska->ctx, AV_LOG_ERROR, "Invalid track number %d\n", num);
1227 static int matroska_decode_buffer(uint8_t **buf, int *buf_size,
1228 MatroskaTrack *track)
1230 MatroskaTrackEncoding *encodings = track->encodings.elem;
1231 uint8_t *data = *buf;
1232 int isize = *buf_size;
1233 uint8_t *pkt_data = NULL;
1234 uint8_t av_unused *newpktdata;
1235 int pkt_size = isize;
1239 if (pkt_size >= 10000000U)
1240 return AVERROR_INVALIDDATA;
1242 switch (encodings[0].compression.algo) {
1243 case MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP:
1245 int header_size = encodings[0].compression.settings.size;
1246 uint8_t *header = encodings[0].compression.settings.data;
1248 if (header_size && !header) {
1249 av_log(NULL, AV_LOG_ERROR, "Compression size but no data in headerstrip\n");
1256 pkt_size = isize + header_size;
1257 pkt_data = av_malloc(pkt_size);
1259 return AVERROR(ENOMEM);
1261 memcpy(pkt_data, header, header_size);
1262 memcpy(pkt_data + header_size, data, isize);
1266 case MATROSKA_TRACK_ENCODING_COMP_LZO:
1268 olen = pkt_size *= 3;
1269 newpktdata = av_realloc(pkt_data, pkt_size + AV_LZO_OUTPUT_PADDING);
1271 result = AVERROR(ENOMEM);
1274 pkt_data = newpktdata;
1275 result = av_lzo1x_decode(pkt_data, &olen, data, &isize);
1276 } while (result == AV_LZO_OUTPUT_FULL && pkt_size < 10000000);
1278 result = AVERROR_INVALIDDATA;
1285 case MATROSKA_TRACK_ENCODING_COMP_ZLIB:
1287 z_stream zstream = { 0 };
1288 if (inflateInit(&zstream) != Z_OK)
1290 zstream.next_in = data;
1291 zstream.avail_in = isize;
1294 newpktdata = av_realloc(pkt_data, pkt_size);
1296 inflateEnd(&zstream);
1297 result = AVERROR(ENOMEM);
1300 pkt_data = newpktdata;
1301 zstream.avail_out = pkt_size - zstream.total_out;
1302 zstream.next_out = pkt_data + zstream.total_out;
1303 result = inflate(&zstream, Z_NO_FLUSH);
1304 } while (result == Z_OK && pkt_size < 10000000);
1305 pkt_size = zstream.total_out;
1306 inflateEnd(&zstream);
1307 if (result != Z_STREAM_END) {
1308 if (result == Z_MEM_ERROR)
1309 result = AVERROR(ENOMEM);
1311 result = AVERROR_INVALIDDATA;
1318 case MATROSKA_TRACK_ENCODING_COMP_BZLIB:
1320 bz_stream bzstream = { 0 };
1321 if (BZ2_bzDecompressInit(&bzstream, 0, 0) != BZ_OK)
1323 bzstream.next_in = data;
1324 bzstream.avail_in = isize;
1327 newpktdata = av_realloc(pkt_data, pkt_size);
1329 BZ2_bzDecompressEnd(&bzstream);
1330 result = AVERROR(ENOMEM);
1333 pkt_data = newpktdata;
1334 bzstream.avail_out = pkt_size - bzstream.total_out_lo32;
1335 bzstream.next_out = pkt_data + bzstream.total_out_lo32;
1336 result = BZ2_bzDecompress(&bzstream);
1337 } while (result == BZ_OK && pkt_size < 10000000);
1338 pkt_size = bzstream.total_out_lo32;
1339 BZ2_bzDecompressEnd(&bzstream);
1340 if (result != BZ_STREAM_END) {
1341 if (result == BZ_MEM_ERROR)
1342 result = AVERROR(ENOMEM);
1344 result = AVERROR_INVALIDDATA;
1351 return AVERROR_INVALIDDATA;
1355 *buf_size = pkt_size;
1363 static void matroska_convert_tag(AVFormatContext *s, EbmlList *list,
1364 AVDictionary **metadata, char *prefix)
1366 MatroskaTag *tags = list->elem;
1370 for (i = 0; i < list->nb_elem; i++) {
1371 const char *lang = tags[i].lang &&
1372 strcmp(tags[i].lang, "und") ? tags[i].lang : NULL;
1374 if (!tags[i].name) {
1375 av_log(s, AV_LOG_WARNING, "Skipping invalid tag with no TagName.\n");
1379 snprintf(key, sizeof(key), "%s/%s", prefix, tags[i].name);
1381 av_strlcpy(key, tags[i].name, sizeof(key));
1382 if (tags[i].def || !lang) {
1383 av_dict_set(metadata, key, tags[i].string, 0);
1384 if (tags[i].sub.nb_elem)
1385 matroska_convert_tag(s, &tags[i].sub, metadata, key);
1388 av_strlcat(key, "-", sizeof(key));
1389 av_strlcat(key, lang, sizeof(key));
1390 av_dict_set(metadata, key, tags[i].string, 0);
1391 if (tags[i].sub.nb_elem)
1392 matroska_convert_tag(s, &tags[i].sub, metadata, key);
1395 ff_metadata_conv(metadata, NULL, ff_mkv_metadata_conv);
1398 static void matroska_convert_tags(AVFormatContext *s)
1400 MatroskaDemuxContext *matroska = s->priv_data;
1401 MatroskaTags *tags = matroska->tags.elem;
1404 for (i = 0; i < matroska->tags.nb_elem; i++) {
1405 if (tags[i].target.attachuid) {
1406 MatroskaAttachment *attachment = matroska->attachments.elem;
1407 for (j = 0; j < matroska->attachments.nb_elem; j++)
1408 if (attachment[j].uid == tags[i].target.attachuid &&
1409 attachment[j].stream)
1410 matroska_convert_tag(s, &tags[i].tag,
1411 &attachment[j].stream->metadata, NULL);
1412 } else if (tags[i].target.chapteruid) {
1413 MatroskaChapter *chapter = matroska->chapters.elem;
1414 for (j = 0; j < matroska->chapters.nb_elem; j++)
1415 if (chapter[j].uid == tags[i].target.chapteruid &&
1417 matroska_convert_tag(s, &tags[i].tag,
1418 &chapter[j].chapter->metadata, NULL);
1419 } else if (tags[i].target.trackuid) {
1420 MatroskaTrack *track = matroska->tracks.elem;
1421 for (j = 0; j < matroska->tracks.nb_elem; j++)
1422 if (track[j].uid == tags[i].target.trackuid && track[j].stream)
1423 matroska_convert_tag(s, &tags[i].tag,
1424 &track[j].stream->metadata, NULL);
1426 matroska_convert_tag(s, &tags[i].tag, &s->metadata,
1427 tags[i].target.type);
1432 static int matroska_parse_seekhead_entry(MatroskaDemuxContext *matroska,
1435 uint32_t level_up = matroska->level_up;
1436 uint32_t saved_id = matroska->current_id;
1437 int64_t before_pos = avio_tell(matroska->ctx->pb);
1438 MatroskaLevel level;
1443 offset = pos + matroska->segment_start;
1444 if (avio_seek(matroska->ctx->pb, offset, SEEK_SET) == offset) {
1445 /* We don't want to lose our seekhead level, so we add
1446 * a dummy. This is a crude hack. */
1447 if (matroska->num_levels == EBML_MAX_DEPTH) {
1448 av_log(matroska->ctx, AV_LOG_INFO,
1449 "Max EBML element depth (%d) reached, "
1450 "cannot parse further.\n", EBML_MAX_DEPTH);
1451 ret = AVERROR_INVALIDDATA;
1454 level.length = (uint64_t) -1;
1455 matroska->levels[matroska->num_levels] = level;
1456 matroska->num_levels++;
1457 matroska->current_id = 0;
1459 ret = ebml_parse(matroska, matroska_segment, matroska);
1461 /* remove dummy level */
1462 while (matroska->num_levels) {
1463 uint64_t length = matroska->levels[--matroska->num_levels].length;
1464 if (length == (uint64_t) -1)
1470 avio_seek(matroska->ctx->pb, before_pos, SEEK_SET);
1471 matroska->level_up = level_up;
1472 matroska->current_id = saved_id;
1477 static void matroska_execute_seekhead(MatroskaDemuxContext *matroska)
1479 EbmlList *seekhead_list = &matroska->seekhead;
1482 // we should not do any seeking in the streaming case
1483 if (!matroska->ctx->pb->seekable)
1486 for (i = 0; i < seekhead_list->nb_elem; i++) {
1487 MatroskaSeekhead *seekheads = seekhead_list->elem;
1488 uint32_t id = seekheads[i].id;
1489 uint64_t pos = seekheads[i].pos;
1491 MatroskaLevel1Element *elem = matroska_find_level1_elem(matroska, id);
1492 if (!elem || elem->parsed)
1497 // defer cues parsing until we actually need cue data.
1498 if (id == MATROSKA_ID_CUES)
1501 if (matroska_parse_seekhead_entry(matroska, pos) < 0) {
1502 // mark index as broken
1503 matroska->cues_parsing_deferred = -1;
1511 static void matroska_add_index_entries(MatroskaDemuxContext *matroska)
1513 EbmlList *index_list;
1514 MatroskaIndex *index;
1515 uint64_t index_scale = 1;
1518 if (matroska->ctx->flags & AVFMT_FLAG_IGNIDX)
1521 index_list = &matroska->index;
1522 index = index_list->elem;
1523 if (index_list->nb_elem &&
1524 index[0].time > 1E14 / matroska->time_scale) {
1525 av_log(matroska->ctx, AV_LOG_WARNING, "Working around broken index.\n");
1526 index_scale = matroska->time_scale;
1528 for (i = 0; i < index_list->nb_elem; i++) {
1529 EbmlList *pos_list = &index[i].pos;
1530 MatroskaIndexPos *pos = pos_list->elem;
1531 for (j = 0; j < pos_list->nb_elem; j++) {
1532 MatroskaTrack *track = matroska_find_track_by_num(matroska,
1534 if (track && track->stream)
1535 av_add_index_entry(track->stream,
1536 pos[j].pos + matroska->segment_start,
1537 index[i].time / index_scale, 0, 0,
1543 static void matroska_parse_cues(MatroskaDemuxContext *matroska) {
1546 if (matroska->ctx->flags & AVFMT_FLAG_IGNIDX)
1549 for (i = 0; i < matroska->num_level1_elems; i++) {
1550 MatroskaLevel1Element *elem = &matroska->level1_elems[i];
1551 if (elem->id == MATROSKA_ID_CUES && !elem->parsed) {
1552 if (matroska_parse_seekhead_entry(matroska, elem->pos) < 0)
1553 matroska->cues_parsing_deferred = -1;
1559 matroska_add_index_entries(matroska);
1562 static int matroska_aac_profile(char *codec_id)
1564 static const char *const aac_profiles[] = { "MAIN", "LC", "SSR" };
1567 for (profile = 0; profile < FF_ARRAY_ELEMS(aac_profiles); profile++)
1568 if (strstr(codec_id, aac_profiles[profile]))
1573 static int matroska_aac_sri(int samplerate)
1577 for (sri = 0; sri < FF_ARRAY_ELEMS(avpriv_mpeg4audio_sample_rates); sri++)
1578 if (avpriv_mpeg4audio_sample_rates[sri] == samplerate)
1583 static void matroska_metadata_creation_time(AVDictionary **metadata, int64_t date_utc)
1586 /* Convert to seconds and adjust by number of seconds between 2001-01-01 and Epoch */
1587 time_t creation_time = date_utc / 1000000000 + 978307200;
1588 struct tm tmpbuf, *ptm = gmtime_r(&creation_time, &tmpbuf);
1590 if (strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", ptm))
1591 av_dict_set(metadata, "creation_time", buffer, 0);
1594 static int matroska_parse_flac(AVFormatContext *s,
1595 MatroskaTrack *track,
1598 AVStream *st = track->stream;
1599 uint8_t *p = track->codec_priv.data;
1600 int size = track->codec_priv.size;
1602 if (size < 8 + FLAC_STREAMINFO_SIZE || p[4] & 0x7f) {
1603 av_log(s, AV_LOG_WARNING, "Invalid FLAC private data\n");
1604 track->codec_priv.size = 0;
1608 track->codec_priv.size = 8 + FLAC_STREAMINFO_SIZE;
1610 p += track->codec_priv.size;
1611 size -= track->codec_priv.size;
1613 /* parse the remaining metadata blocks if present */
1615 int block_last, block_type, block_size;
1617 flac_parse_block_header(p, &block_last, &block_type, &block_size);
1621 if (block_size > size)
1624 /* check for the channel mask */
1625 if (block_type == FLAC_METADATA_TYPE_VORBIS_COMMENT) {
1626 AVDictionary *dict = NULL;
1627 AVDictionaryEntry *chmask;
1629 ff_vorbis_comment(s, &dict, p, block_size, 0);
1630 chmask = av_dict_get(dict, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", NULL, 0);
1632 uint64_t mask = strtol(chmask->value, NULL, 0);
1633 if (!mask || mask & ~0x3ffffULL) {
1634 av_log(s, AV_LOG_WARNING,
1635 "Invalid value of WAVEFORMATEXTENSIBLE_CHANNEL_MASK\n");
1637 st->codec->channel_layout = mask;
1639 av_dict_free(&dict);
1649 static int matroska_parse_tracks(AVFormatContext *s)
1651 MatroskaDemuxContext *matroska = s->priv_data;
1652 MatroskaTrack *tracks = matroska->tracks.elem;
1657 for (i = 0; i < matroska->tracks.nb_elem; i++) {
1658 MatroskaTrack *track = &tracks[i];
1659 enum AVCodecID codec_id = AV_CODEC_ID_NONE;
1660 EbmlList *encodings_list = &track->encodings;
1661 MatroskaTrackEncoding *encodings = encodings_list->elem;
1662 uint8_t *extradata = NULL;
1663 int extradata_size = 0;
1664 int extradata_offset = 0;
1665 uint32_t fourcc = 0;
1667 char* key_id_base64 = NULL;
1670 /* Apply some sanity checks. */
1671 if (track->type != MATROSKA_TRACK_TYPE_VIDEO &&
1672 track->type != MATROSKA_TRACK_TYPE_AUDIO &&
1673 track->type != MATROSKA_TRACK_TYPE_SUBTITLE &&
1674 track->type != MATROSKA_TRACK_TYPE_METADATA) {
1675 av_log(matroska->ctx, AV_LOG_INFO,
1676 "Unknown or unsupported track type %"PRIu64"\n",
1680 if (!track->codec_id)
1683 if (track->audio.samplerate < 0 || track->audio.samplerate > INT_MAX ||
1684 isnan(track->audio.samplerate)) {
1685 av_log(matroska->ctx, AV_LOG_WARNING,
1686 "Invalid sample rate %f, defaulting to 8000 instead.\n",
1687 track->audio.samplerate);
1688 track->audio.samplerate = 8000;
1691 if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
1692 if (!track->default_duration && track->video.frame_rate > 0)
1693 track->default_duration = 1000000000 / track->video.frame_rate;
1694 if (track->video.display_width == -1)
1695 track->video.display_width = track->video.pixel_width;
1696 if (track->video.display_height == -1)
1697 track->video.display_height = track->video.pixel_height;
1698 if (track->video.color_space.size == 4)
1699 fourcc = AV_RL32(track->video.color_space.data);
1700 } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
1701 if (!track->audio.out_samplerate)
1702 track->audio.out_samplerate = track->audio.samplerate;
1704 if (encodings_list->nb_elem > 1) {
1705 av_log(matroska->ctx, AV_LOG_ERROR,
1706 "Multiple combined encodings not supported");
1707 } else if (encodings_list->nb_elem == 1) {
1708 if (encodings[0].type) {
1709 if (encodings[0].encryption.key_id.size > 0) {
1710 /* Save the encryption key id to be stored later as a
1712 const int b64_size = AV_BASE64_SIZE(encodings[0].encryption.key_id.size);
1713 key_id_base64 = av_malloc(b64_size);
1714 if (key_id_base64 == NULL)
1715 return AVERROR(ENOMEM);
1717 av_base64_encode(key_id_base64, b64_size,
1718 encodings[0].encryption.key_id.data,
1719 encodings[0].encryption.key_id.size);
1721 encodings[0].scope = 0;
1722 av_log(matroska->ctx, AV_LOG_ERROR,
1723 "Unsupported encoding type");
1727 encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_ZLIB &&
1730 encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_BZLIB &&
1733 encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_LZO &&
1735 encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP) {
1736 encodings[0].scope = 0;
1737 av_log(matroska->ctx, AV_LOG_ERROR,
1738 "Unsupported encoding type");
1739 } else if (track->codec_priv.size && encodings[0].scope & 2) {
1740 uint8_t *codec_priv = track->codec_priv.data;
1741 int ret = matroska_decode_buffer(&track->codec_priv.data,
1742 &track->codec_priv.size,
1745 track->codec_priv.data = NULL;
1746 track->codec_priv.size = 0;
1747 av_log(matroska->ctx, AV_LOG_ERROR,
1748 "Failed to decode codec private data\n");
1751 if (codec_priv != track->codec_priv.data)
1752 av_free(codec_priv);
1756 for (j = 0; ff_mkv_codec_tags[j].id != AV_CODEC_ID_NONE; j++) {
1757 if (!strncmp(ff_mkv_codec_tags[j].str, track->codec_id,
1758 strlen(ff_mkv_codec_tags[j].str))) {
1759 codec_id = ff_mkv_codec_tags[j].id;
1764 st = track->stream = avformat_new_stream(s, NULL);
1766 av_free(key_id_base64);
1767 return AVERROR(ENOMEM);
1770 if (key_id_base64) {
1771 /* export encryption key id as base64 metadata tag */
1772 av_dict_set(&st->metadata, "enc_key_id", key_id_base64, 0);
1773 av_freep(&key_id_base64);
1776 if (!strcmp(track->codec_id, "V_MS/VFW/FOURCC") &&
1777 track->codec_priv.size >= 40 &&
1778 track->codec_priv.data) {
1779 track->ms_compat = 1;
1780 bit_depth = AV_RL16(track->codec_priv.data + 14);
1781 fourcc = AV_RL32(track->codec_priv.data + 16);
1782 codec_id = ff_codec_get_id(ff_codec_bmp_tags,
1785 codec_id = ff_codec_get_id(ff_codec_movvideo_tags,
1787 extradata_offset = 40;
1788 } else if (!strcmp(track->codec_id, "A_MS/ACM") &&
1789 track->codec_priv.size >= 14 &&
1790 track->codec_priv.data) {
1792 ffio_init_context(&b, track->codec_priv.data,
1793 track->codec_priv.size,
1794 0, NULL, NULL, NULL, NULL);
1795 ret = ff_get_wav_header(&b, st->codec, track->codec_priv.size, 0);
1798 codec_id = st->codec->codec_id;
1799 extradata_offset = FFMIN(track->codec_priv.size, 18);
1800 } else if (!strcmp(track->codec_id, "A_QUICKTIME")
1801 && (track->codec_priv.size >= 86)
1802 && (track->codec_priv.data)) {
1803 fourcc = AV_RL32(track->codec_priv.data + 4);
1804 codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc);
1805 if (ff_codec_get_id(ff_codec_movaudio_tags, AV_RL32(track->codec_priv.data))) {
1806 fourcc = AV_RL32(track->codec_priv.data);
1807 codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc);
1809 } else if (!strcmp(track->codec_id, "V_QUICKTIME") &&
1810 (track->codec_priv.size >= 21) &&
1811 (track->codec_priv.data)) {
1812 fourcc = AV_RL32(track->codec_priv.data + 4);
1813 codec_id = ff_codec_get_id(ff_codec_movvideo_tags, fourcc);
1814 if (ff_codec_get_id(ff_codec_movvideo_tags, AV_RL32(track->codec_priv.data))) {
1815 fourcc = AV_RL32(track->codec_priv.data);
1816 codec_id = ff_codec_get_id(ff_codec_movvideo_tags, fourcc);
1818 if (codec_id == AV_CODEC_ID_NONE && AV_RL32(track->codec_priv.data+4) == AV_RL32("SMI "))
1819 codec_id = AV_CODEC_ID_SVQ3;
1820 if (codec_id == AV_CODEC_ID_NONE) {
1822 av_get_codec_tag_string(buf, sizeof(buf), fourcc);
1823 av_log(matroska->ctx, AV_LOG_ERROR,
1824 "mov FourCC not found %s.\n", buf);
1826 } else if (codec_id == AV_CODEC_ID_PCM_S16BE) {
1827 switch (track->audio.bitdepth) {
1829 codec_id = AV_CODEC_ID_PCM_U8;
1832 codec_id = AV_CODEC_ID_PCM_S24BE;
1835 codec_id = AV_CODEC_ID_PCM_S32BE;
1838 } else if (codec_id == AV_CODEC_ID_PCM_S16LE) {
1839 switch (track->audio.bitdepth) {
1841 codec_id = AV_CODEC_ID_PCM_U8;
1844 codec_id = AV_CODEC_ID_PCM_S24LE;
1847 codec_id = AV_CODEC_ID_PCM_S32LE;
1850 } else if (codec_id == AV_CODEC_ID_PCM_F32LE &&
1851 track->audio.bitdepth == 64) {
1852 codec_id = AV_CODEC_ID_PCM_F64LE;
1853 } else if (codec_id == AV_CODEC_ID_AAC && !track->codec_priv.size) {
1854 int profile = matroska_aac_profile(track->codec_id);
1855 int sri = matroska_aac_sri(track->audio.samplerate);
1856 extradata = av_mallocz(5 + FF_INPUT_BUFFER_PADDING_SIZE);
1858 return AVERROR(ENOMEM);
1859 extradata[0] = (profile << 3) | ((sri & 0x0E) >> 1);
1860 extradata[1] = ((sri & 0x01) << 7) | (track->audio.channels << 3);
1861 if (strstr(track->codec_id, "SBR")) {
1862 sri = matroska_aac_sri(track->audio.out_samplerate);
1863 extradata[2] = 0x56;
1864 extradata[3] = 0xE5;
1865 extradata[4] = 0x80 | (sri << 3);
1869 } else if (codec_id == AV_CODEC_ID_ALAC && track->codec_priv.size && track->codec_priv.size < INT_MAX - 12 - FF_INPUT_BUFFER_PADDING_SIZE) {
1870 /* Only ALAC's magic cookie is stored in Matroska's track headers.
1871 * Create the "atom size", "tag", and "tag version" fields the
1872 * decoder expects manually. */
1873 extradata_size = 12 + track->codec_priv.size;
1874 extradata = av_mallocz(extradata_size +
1875 FF_INPUT_BUFFER_PADDING_SIZE);
1877 return AVERROR(ENOMEM);
1878 AV_WB32(extradata, extradata_size);
1879 memcpy(&extradata[4], "alac", 4);
1880 AV_WB32(&extradata[8], 0);
1881 memcpy(&extradata[12], track->codec_priv.data,
1882 track->codec_priv.size);
1883 } else if (codec_id == AV_CODEC_ID_TTA) {
1884 extradata_size = 30;
1885 extradata = av_mallocz(extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
1887 return AVERROR(ENOMEM);
1888 ffio_init_context(&b, extradata, extradata_size, 1,
1889 NULL, NULL, NULL, NULL);
1890 avio_write(&b, "TTA1", 4);
1892 if (track->audio.channels > UINT16_MAX ||
1893 track->audio.bitdepth > UINT16_MAX) {
1894 av_log(matroska->ctx, AV_LOG_WARNING,
1895 "Too large audio channel number %"PRIu64
1896 " or bitdepth %"PRIu64". Skipping track.\n",
1897 track->audio.channels, track->audio.bitdepth);
1898 av_freep(&extradata);
1899 if (matroska->ctx->error_recognition & AV_EF_EXPLODE)
1900 return AVERROR_INVALIDDATA;
1904 avio_wl16(&b, track->audio.channels);
1905 avio_wl16(&b, track->audio.bitdepth);
1906 if (track->audio.out_samplerate < 0 || track->audio.out_samplerate > INT_MAX)
1907 return AVERROR_INVALIDDATA;
1908 avio_wl32(&b, track->audio.out_samplerate);
1909 avio_wl32(&b, av_rescale((matroska->duration * matroska->time_scale),
1910 track->audio.out_samplerate,
1911 AV_TIME_BASE * 1000));
1912 } else if (codec_id == AV_CODEC_ID_RV10 ||
1913 codec_id == AV_CODEC_ID_RV20 ||
1914 codec_id == AV_CODEC_ID_RV30 ||
1915 codec_id == AV_CODEC_ID_RV40) {
1916 extradata_offset = 26;
1917 } else if (codec_id == AV_CODEC_ID_RA_144) {
1918 track->audio.out_samplerate = 8000;
1919 track->audio.channels = 1;
1920 } else if ((codec_id == AV_CODEC_ID_RA_288 ||
1921 codec_id == AV_CODEC_ID_COOK ||
1922 codec_id == AV_CODEC_ID_ATRAC3 ||
1923 codec_id == AV_CODEC_ID_SIPR)
1924 && track->codec_priv.data) {
1927 ffio_init_context(&b, track->codec_priv.data,
1928 track->codec_priv.size,
1929 0, NULL, NULL, NULL, NULL);
1931 flavor = avio_rb16(&b);
1932 track->audio.coded_framesize = avio_rb32(&b);
1934 track->audio.sub_packet_h = avio_rb16(&b);
1935 track->audio.frame_size = avio_rb16(&b);
1936 track->audio.sub_packet_size = avio_rb16(&b);
1938 track->audio.coded_framesize <= 0 ||
1939 track->audio.sub_packet_h <= 0 ||
1940 track->audio.frame_size <= 0 ||
1941 track->audio.sub_packet_size <= 0)
1942 return AVERROR_INVALIDDATA;
1943 track->audio.buf = av_malloc_array(track->audio.sub_packet_h,
1944 track->audio.frame_size);
1945 if (!track->audio.buf)
1946 return AVERROR(ENOMEM);
1947 if (codec_id == AV_CODEC_ID_RA_288) {
1948 st->codec->block_align = track->audio.coded_framesize;
1949 track->codec_priv.size = 0;
1951 if (codec_id == AV_CODEC_ID_SIPR && flavor < 4) {
1952 static const int sipr_bit_rate[4] = { 6504, 8496, 5000, 16000 };
1953 track->audio.sub_packet_size = ff_sipr_subpk_size[flavor];
1954 st->codec->bit_rate = sipr_bit_rate[flavor];
1956 st->codec->block_align = track->audio.sub_packet_size;
1957 extradata_offset = 78;
1959 } else if (codec_id == AV_CODEC_ID_FLAC && track->codec_priv.size) {
1960 ret = matroska_parse_flac(s, track, &extradata_offset);
1963 } else if (codec_id == AV_CODEC_ID_PRORES && track->codec_priv.size == 4) {
1964 fourcc = AV_RL32(track->codec_priv.data);
1966 track->codec_priv.size -= extradata_offset;
1968 if (codec_id == AV_CODEC_ID_NONE)
1969 av_log(matroska->ctx, AV_LOG_INFO,
1970 "Unknown/unsupported AVCodecID %s.\n", track->codec_id);
1972 if (track->time_scale < 0.01)
1973 track->time_scale = 1.0;
1974 avpriv_set_pts_info(st, 64, matroska->time_scale * track->time_scale,
1975 1000 * 1000 * 1000); /* 64 bit pts in ns */
1977 /* convert the delay from ns to the track timebase */
1978 track->codec_delay = av_rescale_q(track->codec_delay,
1979 (AVRational){ 1, 1000000000 },
1982 st->codec->codec_id = codec_id;
1984 if (strcmp(track->language, "und"))
1985 av_dict_set(&st->metadata, "language", track->language, 0);
1986 av_dict_set(&st->metadata, "title", track->name, 0);
1988 if (track->flag_default)
1989 st->disposition |= AV_DISPOSITION_DEFAULT;
1990 if (track->flag_forced)
1991 st->disposition |= AV_DISPOSITION_FORCED;
1993 if (!st->codec->extradata) {
1995 st->codec->extradata = extradata;
1996 st->codec->extradata_size = extradata_size;
1997 } else if (track->codec_priv.data && track->codec_priv.size > 0) {
1998 if (ff_alloc_extradata(st->codec, track->codec_priv.size))
1999 return AVERROR(ENOMEM);
2000 memcpy(st->codec->extradata,
2001 track->codec_priv.data + extradata_offset,
2002 track->codec_priv.size);
2006 if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
2007 MatroskaTrackPlane *planes = track->operation.combine_planes.elem;
2009 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
2010 st->codec->codec_tag = fourcc;
2012 st->codec->bits_per_coded_sample = bit_depth;
2013 st->codec->width = track->video.pixel_width;
2014 st->codec->height = track->video.pixel_height;
2015 av_reduce(&st->sample_aspect_ratio.num,
2016 &st->sample_aspect_ratio.den,
2017 st->codec->height * track->video.display_width,
2018 st->codec->width * track->video.display_height,
2020 if (st->codec->codec_id != AV_CODEC_ID_HEVC)
2021 st->need_parsing = AVSTREAM_PARSE_HEADERS;
2023 if (track->default_duration) {
2024 av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
2025 1000000000, track->default_duration, 30000);
2026 #if FF_API_R_FRAME_RATE
2027 if ( st->avg_frame_rate.num < st->avg_frame_rate.den * 1000LL
2028 && st->avg_frame_rate.num > st->avg_frame_rate.den * 5LL)
2029 st->r_frame_rate = st->avg_frame_rate;
2033 /* export stereo mode flag as metadata tag */
2034 if (track->video.stereo_mode && track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB)
2035 av_dict_set(&st->metadata, "stereo_mode", ff_matroska_video_stereo_mode[track->video.stereo_mode], 0);
2037 /* export alpha mode flag as metadata tag */
2038 if (track->video.alpha_mode)
2039 av_dict_set(&st->metadata, "alpha_mode", "1", 0);
2041 /* if we have virtual track, mark the real tracks */
2042 for (j=0; j < track->operation.combine_planes.nb_elem; j++) {
2044 if (planes[j].type >= MATROSKA_VIDEO_STEREO_PLANE_COUNT)
2046 snprintf(buf, sizeof(buf), "%s_%d",
2047 ff_matroska_video_stereo_plane[planes[j].type], i);
2048 for (k=0; k < matroska->tracks.nb_elem; k++)
2049 if (planes[j].uid == tracks[k].uid && tracks[k].stream) {
2050 av_dict_set(&tracks[k].stream->metadata,
2051 "stereo_mode", buf, 0);
2055 // add stream level stereo3d side data if it is a supported format
2056 if (track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB &&
2057 track->video.stereo_mode != 10 && track->video.stereo_mode != 12) {
2058 int ret = ff_mkv_stereo3d_conv(st, track->video.stereo_mode);
2062 } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
2063 st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
2064 st->codec->sample_rate = track->audio.out_samplerate;
2065 st->codec->channels = track->audio.channels;
2066 if (!st->codec->bits_per_coded_sample)
2067 st->codec->bits_per_coded_sample = track->audio.bitdepth;
2068 if (st->codec->codec_id != AV_CODEC_ID_AAC)
2069 st->need_parsing = AVSTREAM_PARSE_HEADERS;
2070 if (track->codec_delay > 0) {
2071 st->codec->delay = av_rescale_q(track->codec_delay,
2073 (AVRational){1, st->codec->sample_rate});
2075 if (track->seek_preroll > 0) {
2076 av_codec_set_seek_preroll(st->codec,
2077 av_rescale_q(track->seek_preroll,
2078 (AVRational){1, 1000000000},
2079 (AVRational){1, st->codec->sample_rate}));
2081 } else if (codec_id == AV_CODEC_ID_WEBVTT) {
2082 st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
2084 if (!strcmp(track->codec_id, "D_WEBVTT/CAPTIONS")) {
2085 st->disposition |= AV_DISPOSITION_CAPTIONS;
2086 } else if (!strcmp(track->codec_id, "D_WEBVTT/DESCRIPTIONS")) {
2087 st->disposition |= AV_DISPOSITION_DESCRIPTIONS;
2088 } else if (!strcmp(track->codec_id, "D_WEBVTT/METADATA")) {
2089 st->disposition |= AV_DISPOSITION_METADATA;
2091 } else if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE) {
2092 st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
2093 if (st->codec->codec_id == AV_CODEC_ID_ASS)
2094 matroska->contains_ssa = 1;
2101 static int matroska_read_header(AVFormatContext *s)
2103 MatroskaDemuxContext *matroska = s->priv_data;
2104 EbmlList *attachments_list = &matroska->attachments;
2105 EbmlList *chapters_list = &matroska->chapters;
2106 MatroskaAttachment *attachments;
2107 MatroskaChapter *chapters;
2108 uint64_t max_start = 0;
2114 matroska->cues_parsing_deferred = 1;
2116 /* First read the EBML header. */
2117 if (ebml_parse(matroska, ebml_syntax, &ebml) || !ebml.doctype) {
2118 av_log(matroska->ctx, AV_LOG_ERROR, "EBML header parsing failed\n");
2119 ebml_free(ebml_syntax, &ebml);
2120 return AVERROR_INVALIDDATA;
2122 if (ebml.version > EBML_VERSION ||
2123 ebml.max_size > sizeof(uint64_t) ||
2124 ebml.id_length > sizeof(uint32_t) ||
2125 ebml.doctype_version > 3) {
2126 av_log(matroska->ctx, AV_LOG_ERROR,
2127 "EBML header using unsupported features\n"
2128 "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n",
2129 ebml.version, ebml.doctype, ebml.doctype_version);
2130 ebml_free(ebml_syntax, &ebml);
2131 return AVERROR_PATCHWELCOME;
2132 } else if (ebml.doctype_version == 3) {
2133 av_log(matroska->ctx, AV_LOG_WARNING,
2134 "EBML header using unsupported features\n"
2135 "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n",
2136 ebml.version, ebml.doctype, ebml.doctype_version);
2138 for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++)
2139 if (!strcmp(ebml.doctype, matroska_doctypes[i]))
2141 if (i >= FF_ARRAY_ELEMS(matroska_doctypes)) {
2142 av_log(s, AV_LOG_WARNING, "Unknown EBML doctype '%s'\n", ebml.doctype);
2143 if (matroska->ctx->error_recognition & AV_EF_EXPLODE) {
2144 ebml_free(ebml_syntax, &ebml);
2145 return AVERROR_INVALIDDATA;
2148 ebml_free(ebml_syntax, &ebml);
2150 /* The next thing is a segment. */
2151 pos = avio_tell(matroska->ctx->pb);
2152 res = ebml_parse(matroska, matroska_segments, matroska);
2153 // try resyncing until we find a EBML_STOP type element.
2155 res = matroska_resync(matroska, pos);
2158 pos = avio_tell(matroska->ctx->pb);
2159 res = ebml_parse(matroska, matroska_segment, matroska);
2161 matroska_execute_seekhead(matroska);
2163 if (!matroska->time_scale)
2164 matroska->time_scale = 1000000;
2165 if (matroska->duration)
2166 matroska->ctx->duration = matroska->duration * matroska->time_scale *
2167 1000 / AV_TIME_BASE;
2168 av_dict_set(&s->metadata, "title", matroska->title, 0);
2169 av_dict_set(&s->metadata, "encoder", matroska->muxingapp, 0);
2171 if (matroska->date_utc.size == 8)
2172 matroska_metadata_creation_time(&s->metadata, AV_RB64(matroska->date_utc.data));
2174 res = matroska_parse_tracks(s);
2178 attachments = attachments_list->elem;
2179 for (j = 0; j < attachments_list->nb_elem; j++) {
2180 if (!(attachments[j].filename && attachments[j].mime &&
2181 attachments[j].bin.data && attachments[j].bin.size > 0)) {
2182 av_log(matroska->ctx, AV_LOG_ERROR, "incomplete attachment\n");
2184 AVStream *st = avformat_new_stream(s, NULL);
2187 av_dict_set(&st->metadata, "filename", attachments[j].filename, 0);
2188 av_dict_set(&st->metadata, "mimetype", attachments[j].mime, 0);
2189 st->codec->codec_id = AV_CODEC_ID_NONE;
2191 for (i = 0; ff_mkv_image_mime_tags[i].id != AV_CODEC_ID_NONE; i++) {
2192 if (!strncmp(ff_mkv_image_mime_tags[i].str, attachments[j].mime,
2193 strlen(ff_mkv_image_mime_tags[i].str))) {
2194 st->codec->codec_id = ff_mkv_image_mime_tags[i].id;
2199 attachments[j].stream = st;
2201 if (st->codec->codec_id != AV_CODEC_ID_NONE) {
2202 st->disposition |= AV_DISPOSITION_ATTACHED_PIC;
2203 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
2205 av_init_packet(&st->attached_pic);
2206 if ((res = av_new_packet(&st->attached_pic, attachments[j].bin.size)) < 0)
2208 memcpy(st->attached_pic.data, attachments[j].bin.data, attachments[j].bin.size);
2209 st->attached_pic.stream_index = st->index;
2210 st->attached_pic.flags |= AV_PKT_FLAG_KEY;
2212 st->codec->codec_type = AVMEDIA_TYPE_ATTACHMENT;
2213 if (ff_alloc_extradata(st->codec, attachments[j].bin.size))
2215 memcpy(st->codec->extradata, attachments[j].bin.data,
2216 attachments[j].bin.size);
2218 for (i = 0; ff_mkv_mime_tags[i].id != AV_CODEC_ID_NONE; i++) {
2219 if (!strncmp(ff_mkv_mime_tags[i].str, attachments[j].mime,
2220 strlen(ff_mkv_mime_tags[i].str))) {
2221 st->codec->codec_id = ff_mkv_mime_tags[i].id;
2229 chapters = chapters_list->elem;
2230 for (i = 0; i < chapters_list->nb_elem; i++)
2231 if (chapters[i].start != AV_NOPTS_VALUE && chapters[i].uid &&
2232 (max_start == 0 || chapters[i].start > max_start)) {
2233 chapters[i].chapter =
2234 avpriv_new_chapter(s, chapters[i].uid,
2235 (AVRational) { 1, 1000000000 },
2236 chapters[i].start, chapters[i].end,
2238 if (chapters[i].chapter) {
2239 av_dict_set(&chapters[i].chapter->metadata,
2240 "title", chapters[i].title, 0);
2242 max_start = chapters[i].start;
2245 matroska_add_index_entries(matroska);
2247 matroska_convert_tags(s);
2253 * Put one packet in an application-supplied AVPacket struct.
2254 * Returns 0 on success or -1 on failure.
2256 static int matroska_deliver_packet(MatroskaDemuxContext *matroska,
2259 if (matroska->num_packets > 0) {
2260 memcpy(pkt, matroska->packets[0], sizeof(AVPacket));
2261 av_freep(&matroska->packets[0]);
2262 if (matroska->num_packets > 1) {
2264 memmove(&matroska->packets[0], &matroska->packets[1],
2265 (matroska->num_packets - 1) * sizeof(AVPacket *));
2266 newpackets = av_realloc(matroska->packets,
2267 (matroska->num_packets - 1) *
2268 sizeof(AVPacket *));
2270 matroska->packets = newpackets;
2272 av_freep(&matroska->packets);
2273 matroska->prev_pkt = NULL;
2275 matroska->num_packets--;
2283 * Free all packets in our internal queue.
2285 static void matroska_clear_queue(MatroskaDemuxContext *matroska)
2287 matroska->prev_pkt = NULL;
2288 if (matroska->packets) {
2290 for (n = 0; n < matroska->num_packets; n++) {
2291 av_free_packet(matroska->packets[n]);
2292 av_freep(&matroska->packets[n]);
2294 av_freep(&matroska->packets);
2295 matroska->num_packets = 0;
2299 static int matroska_parse_laces(MatroskaDemuxContext *matroska, uint8_t **buf,
2300 int *buf_size, int type,
2301 uint32_t **lace_buf, int *laces)
2303 int res = 0, n, size = *buf_size;
2304 uint8_t *data = *buf;
2305 uint32_t *lace_size;
2309 *lace_buf = av_mallocz(sizeof(int));
2311 return AVERROR(ENOMEM);
2313 *lace_buf[0] = size;
2317 av_assert0(size > 0);
2321 lace_size = av_mallocz(*laces * sizeof(int));
2323 return AVERROR(ENOMEM);
2326 case 0x1: /* Xiph lacing */
2330 for (n = 0; res == 0 && n < *laces - 1; n++) {
2332 if (size <= total) {
2333 res = AVERROR_INVALIDDATA;
2338 lace_size[n] += temp;
2345 if (size <= total) {
2346 res = AVERROR_INVALIDDATA;
2350 lace_size[n] = size - total;
2354 case 0x2: /* fixed-size lacing */
2355 if (size % (*laces)) {
2356 res = AVERROR_INVALIDDATA;
2359 for (n = 0; n < *laces; n++)
2360 lace_size[n] = size / *laces;
2363 case 0x3: /* EBML lacing */
2367 n = matroska_ebmlnum_uint(matroska, data, size, &num);
2368 if (n < 0 || num > INT_MAX) {
2369 av_log(matroska->ctx, AV_LOG_INFO,
2370 "EBML block data error\n");
2371 res = n<0 ? n : AVERROR_INVALIDDATA;
2376 total = lace_size[0] = num;
2377 for (n = 1; res == 0 && n < *laces - 1; n++) {
2380 r = matroska_ebmlnum_sint(matroska, data, size, &snum);
2381 if (r < 0 || lace_size[n - 1] + snum > (uint64_t)INT_MAX) {
2382 av_log(matroska->ctx, AV_LOG_INFO,
2383 "EBML block data error\n");
2384 res = r<0 ? r : AVERROR_INVALIDDATA;
2389 lace_size[n] = lace_size[n - 1] + snum;
2390 total += lace_size[n];
2392 if (size <= total) {
2393 res = AVERROR_INVALIDDATA;
2396 lace_size[*laces - 1] = size - total;
2402 *lace_buf = lace_size;
2408 static int matroska_parse_rm_audio(MatroskaDemuxContext *matroska,
2409 MatroskaTrack *track, AVStream *st,
2410 uint8_t *data, int size, uint64_t timecode,
2413 int a = st->codec->block_align;
2414 int sps = track->audio.sub_packet_size;
2415 int cfs = track->audio.coded_framesize;
2416 int h = track->audio.sub_packet_h;
2417 int y = track->audio.sub_packet_cnt;
2418 int w = track->audio.frame_size;
2421 if (!track->audio.pkt_cnt) {
2422 if (track->audio.sub_packet_cnt == 0)
2423 track->audio.buf_timecode = timecode;
2424 if (st->codec->codec_id == AV_CODEC_ID_RA_288) {
2425 if (size < cfs * h / 2) {
2426 av_log(matroska->ctx, AV_LOG_ERROR,
2427 "Corrupt int4 RM-style audio packet size\n");
2428 return AVERROR_INVALIDDATA;
2430 for (x = 0; x < h / 2; x++)
2431 memcpy(track->audio.buf + x * 2 * w + y * cfs,
2432 data + x * cfs, cfs);
2433 } else if (st->codec->codec_id == AV_CODEC_ID_SIPR) {
2435 av_log(matroska->ctx, AV_LOG_ERROR,
2436 "Corrupt sipr RM-style audio packet size\n");
2437 return AVERROR_INVALIDDATA;
2439 memcpy(track->audio.buf + y * w, data, w);
2441 if (size < sps * w / sps || h<=0 || w%sps) {
2442 av_log(matroska->ctx, AV_LOG_ERROR,
2443 "Corrupt generic RM-style audio packet size\n");
2444 return AVERROR_INVALIDDATA;
2446 for (x = 0; x < w / sps; x++)
2447 memcpy(track->audio.buf +
2448 sps * (h * x + ((h + 1) / 2) * (y & 1) + (y >> 1)),
2449 data + x * sps, sps);
2452 if (++track->audio.sub_packet_cnt >= h) {
2453 if (st->codec->codec_id == AV_CODEC_ID_SIPR)
2454 ff_rm_reorder_sipr_data(track->audio.buf, h, w);
2455 track->audio.sub_packet_cnt = 0;
2456 track->audio.pkt_cnt = h * w / a;
2460 while (track->audio.pkt_cnt) {
2462 AVPacket *pkt = av_mallocz(sizeof(AVPacket));
2464 return AVERROR(ENOMEM);
2466 ret = av_new_packet(pkt, a);
2472 track->audio.buf + a * (h * w / a - track->audio.pkt_cnt--),
2474 pkt->pts = track->audio.buf_timecode;
2475 track->audio.buf_timecode = AV_NOPTS_VALUE;
2477 pkt->stream_index = st->index;
2478 dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
2484 /* reconstruct full wavpack blocks from mangled matroska ones */
2485 static int matroska_parse_wavpack(MatroskaTrack *track, uint8_t *src,
2486 uint8_t **pdst, int *size)
2488 uint8_t *dst = NULL;
2493 int ret, offset = 0;
2495 if (srclen < 12 || track->stream->codec->extradata_size < 2)
2496 return AVERROR_INVALIDDATA;
2498 ver = AV_RL16(track->stream->codec->extradata);
2500 samples = AV_RL32(src);
2504 while (srclen >= 8) {
2509 uint32_t flags = AV_RL32(src);
2510 uint32_t crc = AV_RL32(src + 4);
2514 multiblock = (flags & 0x1800) != 0x1800;
2517 ret = AVERROR_INVALIDDATA;
2520 blocksize = AV_RL32(src);
2526 if (blocksize > srclen) {
2527 ret = AVERROR_INVALIDDATA;
2531 tmp = av_realloc(dst, dstlen + blocksize + 32);
2533 ret = AVERROR(ENOMEM);
2537 dstlen += blocksize + 32;
2539 AV_WL32(dst + offset, MKTAG('w', 'v', 'p', 'k')); // tag
2540 AV_WL32(dst + offset + 4, blocksize + 24); // blocksize - 8
2541 AV_WL16(dst + offset + 8, ver); // version
2542 AV_WL16(dst + offset + 10, 0); // track/index_no
2543 AV_WL32(dst + offset + 12, 0); // total samples
2544 AV_WL32(dst + offset + 16, 0); // block index
2545 AV_WL32(dst + offset + 20, samples); // number of samples
2546 AV_WL32(dst + offset + 24, flags); // flags
2547 AV_WL32(dst + offset + 28, crc); // crc
2548 memcpy(dst + offset + 32, src, blocksize); // block data
2551 srclen -= blocksize;
2552 offset += blocksize + 32;
2565 static int matroska_parse_webvtt(MatroskaDemuxContext *matroska,
2566 MatroskaTrack *track,
2568 uint8_t *data, int data_len,
2574 uint8_t *id, *settings, *text, *buf;
2575 int id_len, settings_len, text_len;
2580 return AVERROR_INVALIDDATA;
2583 q = data + data_len;
2588 if (*p == '\r' || *p == '\n') {
2597 if (p >= q || *p != '\n')
2598 return AVERROR_INVALIDDATA;
2604 if (*p == '\r' || *p == '\n') {
2605 settings_len = p - settings;
2613 if (p >= q || *p != '\n')
2614 return AVERROR_INVALIDDATA;
2619 while (text_len > 0) {
2620 const int len = text_len - 1;
2621 const uint8_t c = p[len];
2622 if (c != '\r' && c != '\n')
2628 return AVERROR_INVALIDDATA;
2630 pkt = av_mallocz(sizeof(*pkt));
2632 return AVERROR(ENOMEM);
2633 err = av_new_packet(pkt, text_len);
2636 return AVERROR(err);
2639 memcpy(pkt->data, text, text_len);
2642 buf = av_packet_new_side_data(pkt,
2643 AV_PKT_DATA_WEBVTT_IDENTIFIER,
2647 return AVERROR(ENOMEM);
2649 memcpy(buf, id, id_len);
2652 if (settings_len > 0) {
2653 buf = av_packet_new_side_data(pkt,
2654 AV_PKT_DATA_WEBVTT_SETTINGS,
2658 return AVERROR(ENOMEM);
2660 memcpy(buf, settings, settings_len);
2663 // Do we need this for subtitles?
2664 // pkt->flags = AV_PKT_FLAG_KEY;
2666 pkt->stream_index = st->index;
2667 pkt->pts = timecode;
2669 // Do we need this for subtitles?
2670 // pkt->dts = timecode;
2672 pkt->duration = duration;
2675 dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
2676 matroska->prev_pkt = pkt;
2681 static int matroska_parse_frame(MatroskaDemuxContext *matroska,
2682 MatroskaTrack *track, AVStream *st,
2683 uint8_t *data, int pkt_size,
2684 uint64_t timecode, uint64_t lace_duration,
2685 int64_t pos, int is_keyframe,
2686 uint8_t *additional, uint64_t additional_id, int additional_size,
2687 int64_t discard_padding)
2689 MatroskaTrackEncoding *encodings = track->encodings.elem;
2690 uint8_t *pkt_data = data;
2691 int offset = 0, res;
2694 if (encodings && !encodings->type && encodings->scope & 1) {
2695 res = matroska_decode_buffer(&pkt_data, &pkt_size, track);
2700 if (st->codec->codec_id == AV_CODEC_ID_WAVPACK) {
2702 res = matroska_parse_wavpack(track, pkt_data, &wv_data, &pkt_size);
2704 av_log(matroska->ctx, AV_LOG_ERROR,
2705 "Error parsing a wavpack block.\n");
2708 if (pkt_data != data)
2709 av_freep(&pkt_data);
2713 if (st->codec->codec_id == AV_CODEC_ID_PRORES &&
2714 AV_RB32(&data[4]) != MKBETAG('i', 'c', 'p', 'f'))
2717 pkt = av_mallocz(sizeof(AVPacket));
2719 if (pkt_data != data)
2720 av_freep(&pkt_data);
2721 return AVERROR(ENOMEM);
2723 /* XXX: prevent data copy... */
2724 if (av_new_packet(pkt, pkt_size + offset) < 0) {
2726 res = AVERROR(ENOMEM);
2730 if (st->codec->codec_id == AV_CODEC_ID_PRORES && offset == 8) {
2731 uint8_t *buf = pkt->data;
2732 bytestream_put_be32(&buf, pkt_size);
2733 bytestream_put_be32(&buf, MKBETAG('i', 'c', 'p', 'f'));
2736 memcpy(pkt->data + offset, pkt_data, pkt_size);
2738 if (pkt_data != data)
2739 av_freep(&pkt_data);
2741 pkt->flags = is_keyframe;
2742 pkt->stream_index = st->index;
2744 if (additional_size > 0) {
2745 uint8_t *side_data = av_packet_new_side_data(pkt,
2746 AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL,
2747 additional_size + 8);
2749 av_free_packet(pkt);
2751 return AVERROR(ENOMEM);
2753 AV_WB64(side_data, additional_id);
2754 memcpy(side_data + 8, additional, additional_size);
2757 if (discard_padding) {
2758 uint8_t *side_data = av_packet_new_side_data(pkt,
2759 AV_PKT_DATA_SKIP_SAMPLES,
2762 av_free_packet(pkt);
2764 return AVERROR(ENOMEM);
2766 AV_WL32(side_data, 0);
2767 AV_WL32(side_data + 4, av_rescale_q(discard_padding,
2768 (AVRational){1, 1000000000},
2769 (AVRational){1, st->codec->sample_rate}));
2772 if (track->ms_compat)
2773 pkt->dts = timecode;
2775 pkt->pts = timecode;
2777 if (st->codec->codec_id == AV_CODEC_ID_SUBRIP) {
2779 * For backward compatibility.
2780 * Historically, we have put subtitle duration
2781 * in convergence_duration, on the off chance
2782 * that the time_scale is less than 1us, which
2783 * could result in a 32bit overflow on the
2784 * normal duration field.
2786 pkt->convergence_duration = lace_duration;
2789 if (track->type != MATROSKA_TRACK_TYPE_SUBTITLE ||
2790 lace_duration <= INT_MAX) {
2792 * For non subtitle tracks, just store the duration
2795 * If it's a subtitle track and duration value does
2796 * not overflow a uint32, then also store it normally.
2798 pkt->duration = lace_duration;
2801 dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
2802 matroska->prev_pkt = pkt;
2807 if (pkt_data != data)
2808 av_freep(&pkt_data);
2812 static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data,
2813 int size, int64_t pos, uint64_t cluster_time,
2814 uint64_t block_duration, int is_keyframe,
2815 uint8_t *additional, uint64_t additional_id, int additional_size,
2816 int64_t cluster_pos, int64_t discard_padding)
2818 uint64_t timecode = AV_NOPTS_VALUE;
2819 MatroskaTrack *track;
2823 uint32_t *lace_size = NULL;
2824 int n, flags, laces = 0;
2826 int trust_default_duration = 1;
2828 if ((n = matroska_ebmlnum_uint(matroska, data, size, &num)) < 0) {
2829 av_log(matroska->ctx, AV_LOG_ERROR, "EBML block data error\n");
2835 track = matroska_find_track_by_num(matroska, num);
2836 if (!track || !track->stream) {
2837 av_log(matroska->ctx, AV_LOG_INFO,
2838 "Invalid stream %"PRIu64" or size %u\n", num, size);
2839 return AVERROR_INVALIDDATA;
2840 } else if (size <= 3)
2843 if (st->discard >= AVDISCARD_ALL)
2845 av_assert1(block_duration != AV_NOPTS_VALUE);
2847 block_time = sign_extend(AV_RB16(data), 16);
2851 if (is_keyframe == -1)
2852 is_keyframe = flags & 0x80 ? AV_PKT_FLAG_KEY : 0;
2854 if (cluster_time != (uint64_t) -1 &&
2855 (block_time >= 0 || cluster_time >= -block_time)) {
2856 timecode = cluster_time + block_time - track->codec_delay;
2857 if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE &&
2858 timecode < track->end_timecode)
2859 is_keyframe = 0; /* overlapping subtitles are not key frame */
2861 av_add_index_entry(st, cluster_pos, timecode, 0, 0,
2865 if (matroska->skip_to_keyframe &&
2866 track->type != MATROSKA_TRACK_TYPE_SUBTITLE) {
2867 if (timecode < matroska->skip_to_timecode)
2870 matroska->skip_to_keyframe = 0;
2871 else if (!st->skip_to_keyframe) {
2872 av_log(matroska->ctx, AV_LOG_ERROR, "File is broken, keyframes not correctly marked!\n");
2873 matroska->skip_to_keyframe = 0;
2877 res = matroska_parse_laces(matroska, &data, &size, (flags & 0x06) >> 1,
2878 &lace_size, &laces);
2883 if (track->audio.samplerate == 8000) {
2884 // If this is needed for more codecs, then add them here
2885 if (st->codec->codec_id == AV_CODEC_ID_AC3) {
2886 if (track->audio.samplerate != st->codec->sample_rate || !st->codec->frame_size)
2887 trust_default_duration = 0;
2891 if (!block_duration && trust_default_duration)
2892 block_duration = track->default_duration * laces / matroska->time_scale;
2894 if (cluster_time != (uint64_t)-1 && (block_time >= 0 || cluster_time >= -block_time))
2895 track->end_timecode =
2896 FFMAX(track->end_timecode, timecode + block_duration);
2898 for (n = 0; n < laces; n++) {
2899 int64_t lace_duration = block_duration*(n+1) / laces - block_duration*n / laces;
2901 if (lace_size[n] > size) {
2902 av_log(matroska->ctx, AV_LOG_ERROR, "Invalid packet size\n");
2906 if ((st->codec->codec_id == AV_CODEC_ID_RA_288 ||
2907 st->codec->codec_id == AV_CODEC_ID_COOK ||
2908 st->codec->codec_id == AV_CODEC_ID_SIPR ||
2909 st->codec->codec_id == AV_CODEC_ID_ATRAC3) &&
2910 st->codec->block_align && track->audio.sub_packet_size) {
2911 res = matroska_parse_rm_audio(matroska, track, st, data,
2917 } else if (st->codec->codec_id == AV_CODEC_ID_WEBVTT) {
2918 res = matroska_parse_webvtt(matroska, track, st,
2920 timecode, lace_duration,
2925 res = matroska_parse_frame(matroska, track, st, data, lace_size[n],
2926 timecode, lace_duration, pos,
2927 !n ? is_keyframe : 0,
2928 additional, additional_id, additional_size,
2934 if (timecode != AV_NOPTS_VALUE)
2935 timecode = lace_duration ? timecode + lace_duration : AV_NOPTS_VALUE;
2936 data += lace_size[n];
2937 size -= lace_size[n];
2945 static int matroska_parse_cluster_incremental(MatroskaDemuxContext *matroska)
2947 EbmlList *blocks_list;
2948 MatroskaBlock *blocks;
2950 res = ebml_parse(matroska,
2951 matroska_cluster_incremental_parsing,
2952 &matroska->current_cluster);
2955 if (matroska->current_cluster_pos)
2956 ebml_level_end(matroska);
2957 ebml_free(matroska_cluster, &matroska->current_cluster);
2958 memset(&matroska->current_cluster, 0, sizeof(MatroskaCluster));
2959 matroska->current_cluster_num_blocks = 0;
2960 matroska->current_cluster_pos = avio_tell(matroska->ctx->pb);
2961 matroska->prev_pkt = NULL;
2962 /* sizeof the ID which was already read */
2963 if (matroska->current_id)
2964 matroska->current_cluster_pos -= 4;
2965 res = ebml_parse(matroska,
2966 matroska_clusters_incremental,
2967 &matroska->current_cluster);
2968 /* Try parsing the block again. */
2970 res = ebml_parse(matroska,
2971 matroska_cluster_incremental_parsing,
2972 &matroska->current_cluster);
2976 matroska->current_cluster_num_blocks <
2977 matroska->current_cluster.blocks.nb_elem) {
2978 blocks_list = &matroska->current_cluster.blocks;
2979 blocks = blocks_list->elem;
2981 matroska->current_cluster_num_blocks = blocks_list->nb_elem;
2982 i = blocks_list->nb_elem - 1;
2983 if (blocks[i].bin.size > 0 && blocks[i].bin.data) {
2984 int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1;
2985 uint8_t* additional = blocks[i].additional.size > 0 ?
2986 blocks[i].additional.data : NULL;
2987 if (!blocks[i].non_simple)
2988 blocks[i].duration = 0;
2989 res = matroska_parse_block(matroska, blocks[i].bin.data,
2990 blocks[i].bin.size, blocks[i].bin.pos,
2991 matroska->current_cluster.timecode,
2992 blocks[i].duration, is_keyframe,
2993 additional, blocks[i].additional_id,
2994 blocks[i].additional.size,
2995 matroska->current_cluster_pos,
2996 blocks[i].discard_padding);
3003 static int matroska_parse_cluster(MatroskaDemuxContext *matroska)
3005 MatroskaCluster cluster = { 0 };
3006 EbmlList *blocks_list;
3007 MatroskaBlock *blocks;
3011 if (!matroska->contains_ssa)
3012 return matroska_parse_cluster_incremental(matroska);
3013 pos = avio_tell(matroska->ctx->pb);
3014 matroska->prev_pkt = NULL;
3015 if (matroska->current_id)
3016 pos -= 4; /* sizeof the ID which was already read */
3017 res = ebml_parse(matroska, matroska_clusters, &cluster);
3018 blocks_list = &cluster.blocks;
3019 blocks = blocks_list->elem;
3020 for (i = 0; i < blocks_list->nb_elem; i++)
3021 if (blocks[i].bin.size > 0 && blocks[i].bin.data) {
3022 int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1;
3023 res = matroska_parse_block(matroska, blocks[i].bin.data,
3024 blocks[i].bin.size, blocks[i].bin.pos,
3025 cluster.timecode, blocks[i].duration,
3026 is_keyframe, NULL, 0, 0, pos,
3027 blocks[i].discard_padding);
3029 ebml_free(matroska_cluster, &cluster);
3033 static int matroska_read_packet(AVFormatContext *s, AVPacket *pkt)
3035 MatroskaDemuxContext *matroska = s->priv_data;
3037 while (matroska_deliver_packet(matroska, pkt)) {
3038 int64_t pos = avio_tell(matroska->ctx->pb);
3041 if (matroska_parse_cluster(matroska) < 0)
3042 matroska_resync(matroska, pos);
3048 static int matroska_read_seek(AVFormatContext *s, int stream_index,
3049 int64_t timestamp, int flags)
3051 MatroskaDemuxContext *matroska = s->priv_data;
3052 MatroskaTrack *tracks = NULL;
3053 AVStream *st = s->streams[stream_index];
3054 int i, index, index_sub, index_min;
3056 /* Parse the CUES now since we need the index data to seek. */
3057 if (matroska->cues_parsing_deferred > 0) {
3058 matroska->cues_parsing_deferred = 0;
3059 matroska_parse_cues(matroska);
3062 if (!st->nb_index_entries)
3064 timestamp = FFMAX(timestamp, st->index_entries[0].timestamp);
3066 if ((index = av_index_search_timestamp(st, timestamp, flags)) < 0 || index == st->nb_index_entries - 1) {
3067 avio_seek(s->pb, st->index_entries[st->nb_index_entries - 1].pos,
3069 matroska->current_id = 0;
3070 while ((index = av_index_search_timestamp(st, timestamp, flags)) < 0 || index == st->nb_index_entries - 1) {
3071 matroska_clear_queue(matroska);
3072 if (matroska_parse_cluster(matroska) < 0)
3077 matroska_clear_queue(matroska);
3078 if (index < 0 || (matroska->cues_parsing_deferred < 0 && index == st->nb_index_entries - 1))
3082 tracks = matroska->tracks.elem;
3083 for (i = 0; i < matroska->tracks.nb_elem; i++) {
3084 tracks[i].audio.pkt_cnt = 0;
3085 tracks[i].audio.sub_packet_cnt = 0;
3086 tracks[i].audio.buf_timecode = AV_NOPTS_VALUE;
3087 tracks[i].end_timecode = 0;
3088 if (tracks[i].type == MATROSKA_TRACK_TYPE_SUBTITLE &&
3089 tracks[i].stream->discard != AVDISCARD_ALL) {
3090 index_sub = av_index_search_timestamp(
3091 tracks[i].stream, st->index_entries[index].timestamp,
3092 AVSEEK_FLAG_BACKWARD);
3093 while (index_sub >= 0 &&
3095 tracks[i].stream->index_entries[index_sub].pos < st->index_entries[index_min].pos &&
3096 st->index_entries[index].timestamp - tracks[i].stream->index_entries[index_sub].timestamp < 30000000000 / matroska->time_scale)
3101 avio_seek(s->pb, st->index_entries[index_min].pos, SEEK_SET);
3102 matroska->current_id = 0;
3103 if (flags & AVSEEK_FLAG_ANY) {
3104 st->skip_to_keyframe = 0;
3105 matroska->skip_to_timecode = timestamp;
3107 st->skip_to_keyframe = 1;
3108 matroska->skip_to_timecode = st->index_entries[index].timestamp;
3110 matroska->skip_to_keyframe = 1;
3112 matroska->num_levels = 0;
3113 ff_update_cur_dts(s, st, st->index_entries[index].timestamp);
3116 // slightly hackish but allows proper fallback to
3117 // the generic seeking code.
3118 matroska_clear_queue(matroska);
3119 matroska->current_id = 0;
3120 st->skip_to_keyframe =
3121 matroska->skip_to_keyframe = 0;
3123 matroska->num_levels = 0;
3127 static int matroska_read_close(AVFormatContext *s)
3129 MatroskaDemuxContext *matroska = s->priv_data;
3130 MatroskaTrack *tracks = matroska->tracks.elem;
3133 matroska_clear_queue(matroska);
3135 for (n = 0; n < matroska->tracks.nb_elem; n++)
3136 if (tracks[n].type == MATROSKA_TRACK_TYPE_AUDIO)
3137 av_freep(&tracks[n].audio.buf);
3138 ebml_free(matroska_cluster, &matroska->current_cluster);
3139 ebml_free(matroska_segment, matroska);
3145 int64_t start_time_ns;
3146 int64_t end_time_ns;
3147 int64_t start_offset;
3151 /* This function searches all the Cues and returns the CueDesc corresponding the
3152 * the timestamp ts. Returned CueDesc will be such that start_time_ns <= ts <
3153 * end_time_ns. All 4 fields will be set to -1 if ts >= file's duration.
3155 static CueDesc get_cue_desc(AVFormatContext *s, int64_t ts, int64_t cues_start) {
3156 MatroskaDemuxContext *matroska = s->priv_data;
3159 int nb_index_entries = s->streams[0]->nb_index_entries;
3160 AVIndexEntry *index_entries = s->streams[0]->index_entries;
3161 if (ts >= matroska->duration * matroska->time_scale) return (CueDesc) {-1, -1, -1, -1};
3162 for (i = 1; i < nb_index_entries; i++) {
3163 if (index_entries[i - 1].timestamp * matroska->time_scale <= ts &&
3164 index_entries[i].timestamp * matroska->time_scale > ts) {
3169 cue_desc.start_time_ns = index_entries[i].timestamp * matroska->time_scale;
3170 cue_desc.start_offset = index_entries[i].pos - matroska->segment_start;
3171 if (i != nb_index_entries - 1) {
3172 cue_desc.end_time_ns = index_entries[i + 1].timestamp * matroska->time_scale;
3173 cue_desc.end_offset = index_entries[i + 1].pos - matroska->segment_start;
3175 cue_desc.end_time_ns = matroska->duration * matroska->time_scale;
3176 // FIXME: this needs special handling for files where Cues appear
3177 // before Clusters. the current logic assumes Cues appear after
3179 cue_desc.end_offset = cues_start - matroska->segment_start;
3184 static int webm_clusters_start_with_keyframe(AVFormatContext *s)
3186 MatroskaDemuxContext *matroska = s->priv_data;
3187 int64_t cluster_pos, before_pos;
3189 if (s->streams[0]->nb_index_entries <= 0) return 0;
3190 // seek to the first cluster using cues.
3191 index = av_index_search_timestamp(s->streams[0], 0, 0);
3192 if (index < 0) return 0;
3193 cluster_pos = s->streams[0]->index_entries[index].pos;
3194 before_pos = avio_tell(s->pb);
3196 int64_t cluster_id = 0, cluster_length = 0;
3198 avio_seek(s->pb, cluster_pos, SEEK_SET);
3199 // read cluster id and length
3200 ebml_read_num(matroska, matroska->ctx->pb, 4, &cluster_id);
3201 ebml_read_length(matroska, matroska->ctx->pb, &cluster_length);
3202 if (cluster_id != 0xF43B675) { // done with all clusters
3205 avio_seek(s->pb, cluster_pos, SEEK_SET);
3206 matroska->current_id = 0;
3207 matroska_clear_queue(matroska);
3208 if (matroska_parse_cluster(matroska) < 0 ||
3209 matroska->num_packets <= 0) {
3212 pkt = matroska->packets[0];
3213 cluster_pos += cluster_length + 12; // 12 is the offset of the cluster id and length.
3214 if (!(pkt->flags & AV_PKT_FLAG_KEY)) {
3219 avio_seek(s->pb, before_pos, SEEK_SET);
3223 static int buffer_size_after_time_downloaded(int64_t time_ns, double search_sec, int64_t bps,
3224 double min_buffer, double* buffer,
3225 double* sec_to_download, AVFormatContext *s,
3228 double nano_seconds_per_second = 1000000000.0;
3229 double time_sec = time_ns / nano_seconds_per_second;
3231 int64_t time_to_search_ns = (int64_t)(search_sec * nano_seconds_per_second);
3232 int64_t end_time_ns = time_ns + time_to_search_ns;
3233 double sec_downloaded = 0.0;
3234 CueDesc desc_curr = get_cue_desc(s, time_ns, cues_start);
3235 if (desc_curr.start_time_ns == -1)
3237 *sec_to_download = 0.0;
3239 // Check for non cue start time.
3240 if (time_ns > desc_curr.start_time_ns) {
3241 int64_t cue_nano = desc_curr.end_time_ns - time_ns;
3242 double percent = (double)(cue_nano) / (desc_curr.end_time_ns - desc_curr.start_time_ns);
3243 double cueBytes = (desc_curr.end_offset - desc_curr.start_offset) * percent;
3244 double timeToDownload = (cueBytes * 8.0) / bps;
3246 sec_downloaded += (cue_nano / nano_seconds_per_second) - timeToDownload;
3247 *sec_to_download += timeToDownload;
3249 // Check if the search ends within the first cue.
3250 if (desc_curr.end_time_ns >= end_time_ns) {
3251 double desc_end_time_sec = desc_curr.end_time_ns / nano_seconds_per_second;
3252 double percent_to_sub = search_sec / (desc_end_time_sec - time_sec);
3253 sec_downloaded = percent_to_sub * sec_downloaded;
3254 *sec_to_download = percent_to_sub * *sec_to_download;
3257 if ((sec_downloaded + *buffer) <= min_buffer) {
3261 // Get the next Cue.
3262 desc_curr = get_cue_desc(s, desc_curr.end_time_ns, cues_start);
3265 while (desc_curr.start_time_ns != -1) {
3266 int64_t desc_bytes = desc_curr.end_offset - desc_curr.start_offset;
3267 int64_t desc_ns = desc_curr.end_time_ns - desc_curr.start_time_ns;
3268 double desc_sec = desc_ns / nano_seconds_per_second;
3269 double bits = (desc_bytes * 8.0);
3270 double time_to_download = bits / bps;
3272 sec_downloaded += desc_sec - time_to_download;
3273 *sec_to_download += time_to_download;
3275 if (desc_curr.end_time_ns >= end_time_ns) {
3276 double desc_end_time_sec = desc_curr.end_time_ns / nano_seconds_per_second;
3277 double percent_to_sub = search_sec / (desc_end_time_sec - time_sec);
3278 sec_downloaded = percent_to_sub * sec_downloaded;
3279 *sec_to_download = percent_to_sub * *sec_to_download;
3281 if ((sec_downloaded + *buffer) <= min_buffer)
3286 if ((sec_downloaded + *buffer) <= min_buffer) {
3291 desc_curr = get_cue_desc(s, desc_curr.end_time_ns, cues_start);
3293 *buffer = *buffer + sec_downloaded;
3297 /* This function computes the bandwidth of the WebM file with the help of
3298 * buffer_size_after_time_downloaded() function. Both of these functions are
3299 * adapted from WebM Tools project and are adapted to work with FFmpeg's
3300 * Matroska parsing mechanism.
3302 * Returns the bandwidth of the file on success; -1 on error.
3304 static int64_t webm_dash_manifest_compute_bandwidth(AVFormatContext *s, int64_t cues_start)
3306 MatroskaDemuxContext *matroska = s->priv_data;
3307 AVStream *st = s->streams[0];
3308 double bandwidth = 0.0;
3311 for (i = 0; i < st->nb_index_entries; i++) {
3312 int64_t prebuffer_ns = 1000000000;
3313 int64_t time_ns = st->index_entries[i].timestamp * matroska->time_scale;
3314 double nano_seconds_per_second = 1000000000.0;
3315 int64_t prebuffered_ns = time_ns + prebuffer_ns;
3316 double prebuffer_bytes = 0.0;
3317 int64_t temp_prebuffer_ns = prebuffer_ns;
3318 int64_t pre_bytes, pre_ns;
3319 double pre_sec, prebuffer, bits_per_second;
3320 CueDesc desc_beg = get_cue_desc(s, time_ns, cues_start);
3322 // Start with the first Cue.
3323 CueDesc desc_end = desc_beg;
3325 // Figure out how much data we have downloaded for the prebuffer. This will
3326 // be used later to adjust the bits per sample to try.
3327 while (desc_end.start_time_ns != -1 && desc_end.end_time_ns < prebuffered_ns) {
3328 // Prebuffered the entire Cue.
3329 prebuffer_bytes += desc_end.end_offset - desc_end.start_offset;
3330 temp_prebuffer_ns -= desc_end.end_time_ns - desc_end.start_time_ns;
3331 desc_end = get_cue_desc(s, desc_end.end_time_ns, cues_start);
3333 if (desc_end.start_time_ns == -1) {
3334 // The prebuffer is larger than the duration.
3335 if (matroska->duration * matroska->time_scale >= prebuffered_ns)
3337 bits_per_second = 0.0;
3339 // The prebuffer ends in the last Cue. Estimate how much data was
3341 pre_bytes = desc_end.end_offset - desc_end.start_offset;
3342 pre_ns = desc_end.end_time_ns - desc_end.start_time_ns;
3343 pre_sec = pre_ns / nano_seconds_per_second;
3345 pre_bytes * ((temp_prebuffer_ns / nano_seconds_per_second) / pre_sec);
3347 prebuffer = prebuffer_ns / nano_seconds_per_second;
3349 // Set this to 0.0 in case our prebuffer buffers the entire video.
3350 bits_per_second = 0.0;
3352 int64_t desc_bytes = desc_end.end_offset - desc_beg.start_offset;
3353 int64_t desc_ns = desc_end.end_time_ns - desc_beg.start_time_ns;
3354 double desc_sec = desc_ns / nano_seconds_per_second;
3355 double calc_bits_per_second = (desc_bytes * 8) / desc_sec;
3357 // Drop the bps by the percentage of bytes buffered.
3358 double percent = (desc_bytes - prebuffer_bytes) / desc_bytes;
3359 double mod_bits_per_second = calc_bits_per_second * percent;
3361 if (prebuffer < desc_sec) {
3363 (double)(matroska->duration * matroska->time_scale) / nano_seconds_per_second;
3365 // Add 1 so the bits per second should be a little bit greater than file
3367 int64_t bps = (int64_t)(mod_bits_per_second) + 1;
3368 const double min_buffer = 0.0;
3369 double buffer = prebuffer;
3370 double sec_to_download = 0.0;
3372 int rv = buffer_size_after_time_downloaded(prebuffered_ns, search_sec, bps,
3373 min_buffer, &buffer, &sec_to_download,
3377 } else if (rv == 0) {
3378 bits_per_second = (double)(bps);
3383 desc_end = get_cue_desc(s, desc_end.end_time_ns, cues_start);
3384 } while (desc_end.start_time_ns != -1);
3386 if (bandwidth < bits_per_second) bandwidth = bits_per_second;
3388 return (int64_t)bandwidth;
3391 static int webm_dash_manifest_cues(AVFormatContext *s)
3393 MatroskaDemuxContext *matroska = s->priv_data;
3394 EbmlList *seekhead_list = &matroska->seekhead;
3395 MatroskaSeekhead *seekhead = seekhead_list->elem;
3397 int64_t cues_start = -1, cues_end = -1, before_pos, bandwidth;
3400 // determine cues start and end positions
3401 for (i = 0; i < seekhead_list->nb_elem; i++)
3402 if (seekhead[i].id == MATROSKA_ID_CUES)
3405 if (i >= seekhead_list->nb_elem) return -1;
3407 before_pos = avio_tell(matroska->ctx->pb);
3408 cues_start = seekhead[i].pos + matroska->segment_start;
3409 if (avio_seek(matroska->ctx->pb, cues_start, SEEK_SET) == cues_start) {
3410 // cues_end is computed as cues_start + cues_length + length of the
3411 // Cues element ID + EBML length of the Cues element. cues_end is
3412 // inclusive and the above sum is reduced by 1.
3413 uint64_t cues_length = 0, cues_id = 0, bytes_read = 0;
3414 bytes_read += ebml_read_num(matroska, matroska->ctx->pb, 4, &cues_id);
3415 bytes_read += ebml_read_length(matroska, matroska->ctx->pb, &cues_length);
3416 cues_end = cues_start + cues_length + bytes_read - 1;
3418 avio_seek(matroska->ctx->pb, before_pos, SEEK_SET);
3419 if (cues_start == -1 || cues_end == -1) return -1;
3422 matroska_parse_cues(matroska);
3425 av_dict_set_int(&s->streams[0]->metadata, CUES_START, cues_start, 0);
3428 av_dict_set_int(&s->streams[0]->metadata, CUES_END, cues_end, 0);
3431 bandwidth = webm_dash_manifest_compute_bandwidth(s, cues_start);
3432 if (bandwidth < 0) return -1;
3433 av_dict_set_int(&s->streams[0]->metadata, BANDWIDTH, bandwidth, 0);
3435 // check if all clusters start with key frames
3436 av_dict_set_int(&s->streams[0]->metadata, CLUSTER_KEYFRAME, webm_clusters_start_with_keyframe(s), 0);
3438 // store cue point timestamps as a comma separated list for checking subsegment alignment in
3439 // the muxer. assumes that each timestamp cannot be more than 20 characters long.
3440 buf = av_malloc_array(s->streams[0]->nb_index_entries, 20 * sizeof(char));
3441 if (!buf) return -1;
3443 for (i = 0; i < s->streams[0]->nb_index_entries; i++) {
3444 snprintf(buf, (i + 1) * 20 * sizeof(char),
3445 "%s%" PRId64, buf, s->streams[0]->index_entries[i].timestamp);
3446 if (i != s->streams[0]->nb_index_entries - 1)
3447 strncat(buf, ",", sizeof(char));
3449 av_dict_set(&s->streams[0]->metadata, CUE_TIMESTAMPS, buf, 0);
3455 static int webm_dash_manifest_read_header(AVFormatContext *s)
3458 int ret = matroska_read_header(s);
3459 MatroskaTrack *tracks;
3460 MatroskaDemuxContext *matroska = s->priv_data;
3462 av_log(s, AV_LOG_ERROR, "Failed to read file headers\n");
3466 if (!matroska->is_live) {
3467 buf = av_asprintf("%g", matroska->duration);
3468 if (!buf) return AVERROR(ENOMEM);
3469 av_dict_set(&s->streams[0]->metadata, DURATION, buf, 0);
3472 // initialization range
3473 // 5 is the offset of Cluster ID.
3474 av_dict_set_int(&s->streams[0]->metadata, INITIALIZATION_RANGE, avio_tell(s->pb) - 5, 0);
3477 // basename of the file
3478 buf = strrchr(s->filename, '/');
3479 av_dict_set(&s->streams[0]->metadata, FILENAME, buf ? ++buf : s->filename, 0);
3482 tracks = matroska->tracks.elem;
3483 av_dict_set_int(&s->streams[0]->metadata, TRACK_NUMBER, tracks[0].num, 0);
3485 // parse the cues and populate Cue related fields
3486 return matroska->is_live ? 0 : webm_dash_manifest_cues(s);
3489 static int webm_dash_manifest_read_packet(AVFormatContext *s, AVPacket *pkt)
3494 #define OFFSET(x) offsetof(MatroskaDemuxContext, x)
3495 static const AVOption options[] = {
3496 { "live", "flag indicating that the input is a live file that only has the headers.", OFFSET(is_live), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, AV_OPT_FLAG_DECODING_PARAM },
3500 static const AVClass webm_dash_class = {
3501 .class_name = "WebM DASH Manifest demuxer",
3502 .item_name = av_default_item_name,
3504 .version = LIBAVUTIL_VERSION_INT,
3507 AVInputFormat ff_matroska_demuxer = {
3508 .name = "matroska,webm",
3509 .long_name = NULL_IF_CONFIG_SMALL("Matroska / WebM"),
3510 .extensions = "mkv,mk3d,mka,mks",
3511 .priv_data_size = sizeof(MatroskaDemuxContext),
3512 .read_probe = matroska_probe,
3513 .read_header = matroska_read_header,
3514 .read_packet = matroska_read_packet,
3515 .read_close = matroska_read_close,
3516 .read_seek = matroska_read_seek,
3517 .mime_type = "audio/webm,audio/x-matroska,video/webm,video/x-matroska"
3520 AVInputFormat ff_webm_dash_manifest_demuxer = {
3521 .name = "webm_dash_manifest",
3522 .long_name = NULL_IF_CONFIG_SMALL("WebM DASH Manifest"),
3523 .priv_data_size = sizeof(MatroskaDemuxContext),
3524 .read_header = webm_dash_manifest_read_header,
3525 .read_packet = webm_dash_manifest_read_packet,
3526 .read_close = matroska_read_close,
3527 .priv_class = &webm_dash_class,