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