blob: 3b45c3b04e904108e05874776416c4fc055d5bc1 [file] [log] [blame]
David Conradb061d892007-06-04 22:10:541/*
Aurelien Jacobsff33c5c2008-08-05 00:42:432 * Matroska file demuxer
Diego Biurrun5968d2d2008-08-05 08:28:573 * Copyright (c) 2003-2008 The FFmpeg Project
David Conradb061d892007-06-04 22:10:544 *
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/**
Diego Biurrunba87f082010-04-20 14:45:3423 * @file
David Conradb061d892007-06-04 22:10:5424 * Matroska file demuxer
Diego Biurrune873c032011-10-30 18:10:5025 * @author Ronald Bultje <[email protected]>
26 * @author with a little help from Moritz Bunkus <[email protected]>
27 * @author totally reworked by Aurelien Jacobs <[email protected]>
28 * @see specs available on the Matroska project page: http://www.matroska.org/
David Conradb061d892007-06-04 22:10:5429 */
30
Keiji Costantini84cfce92014-03-01 16:28:1531#include "config.h"
32
Diego Biurrund92024f2014-03-10 14:35:5933#include <inttypes.h>
Aurelien Jacobs3eb9bfb2008-09-04 23:26:1234#include <stdio.h>
Aurelien Jacobsb250f9c2009-01-13 23:44:1635#if CONFIG_BZLIB
Aurelien Jacobs54dddf02008-05-15 23:12:4136#include <bzlib.h>
37#endif
Keiji Costantini84cfce92014-03-01 16:28:1538#if CONFIG_ZLIB
39#include <zlib.h>
40#endif
41
42#include "libavutil/avstring.h"
Michael Niedermayerb3d9ab12014-03-07 22:46:3743#include "libavutil/base64.h"
Keiji Costantini84cfce92014-03-01 16:28:1544#include "libavutil/dict.h"
45#include "libavutil/intfloat.h"
46#include "libavutil/intreadwrite.h"
47#include "libavutil/lzo.h"
Anton Khirnoveb3b5502014-04-29 10:03:1348#include "libavutil/mathematics.h"
Michael Niedermayera52cb422014-11-02 18:19:0749#include "libavutil/time_internal.h"
Keiji Costantini84cfce92014-03-01 16:28:1550
51#include "libavcodec/bytestream.h"
Anton Khirnov4efdadc2014-05-25 12:05:5152#include "libavcodec/flac.h"
Keiji Costantini84cfce92014-03-01 16:28:1553#include "libavcodec/mpeg4audio.h"
54
55#include "avformat.h"
56#include "avio_internal.h"
57#include "internal.h"
58#include "isom.h"
59#include "matroska.h"
Anton Khirnov23f741f2014-05-26 10:48:5660#include "oggdec.h"
Keiji Costantini84cfce92014-03-01 16:28:1561/* For ff_codec_get_id(). */
62#include "riff.h"
63#include "rmsipr.h"
David Conradb061d892007-06-04 22:10:5464
Aurelien Jacobs789ed102008-08-05 00:40:0065typedef enum {
66 EBML_NONE,
67 EBML_UINT,
68 EBML_FLOAT,
69 EBML_STR,
70 EBML_UTF8,
71 EBML_BIN,
72 EBML_NEST,
73 EBML_PASS,
74 EBML_STOP,
Jan Gerberd03eea32013-11-15 18:00:3775 EBML_SINT,
Reimar Döffinger14d735b2011-02-06 10:32:0376 EBML_TYPE_COUNT
Aurelien Jacobs789ed102008-08-05 00:40:0077} EbmlType;
78
79typedef const struct EbmlSyntax {
80 uint32_t id;
81 EbmlType type;
82 int list_elem_size;
83 int data_offset;
84 union {
85 uint64_t u;
86 double f;
87 const char *s;
88 const struct EbmlSyntax *n;
89 } def;
90} EbmlSyntax;
91
92typedef struct {
93 int nb_elem;
94 void *elem;
95} EbmlList;
96
97typedef struct {
98 int size;
99 uint8_t *data;
100 int64_t pos;
101} EbmlBin;
102
Aurelien Jacobs63511322008-08-05 00:40:02103typedef struct {
104 uint64_t version;
105 uint64_t max_size;
106 uint64_t id_length;
107 char *doctype;
108 uint64_t doctype_version;
109} Ebml;
110
Aurelien Jacobs2cbc8812008-08-05 00:40:31111typedef struct {
112 uint64_t algo;
113 EbmlBin settings;
114} MatroskaTrackCompression;
David Conradb061d892007-06-04 22:10:54115
Aurelien Jacobs2cbc8812008-08-05 00:40:31116typedef struct {
Frank Galliganb8531032013-03-07 16:11:38117 uint64_t algo;
118 EbmlBin key_id;
119} MatroskaTrackEncryption;
120
121typedef struct {
Aurelien Jacobs2cbc8812008-08-05 00:40:31122 uint64_t scope;
123 uint64_t type;
124 MatroskaTrackCompression compression;
Frank Galliganb8531032013-03-07 16:11:38125 MatroskaTrackEncryption encryption;
Aurelien Jacobs2cbc8812008-08-05 00:40:31126} MatroskaTrackEncoding;
David Conradb061d892007-06-04 22:10:54127
Aurelien Jacobs2cbc8812008-08-05 00:40:31128typedef struct {
129 double frame_rate;
130 uint64_t display_width;
131 uint64_t display_height;
132 uint64_t pixel_width;
133 uint64_t pixel_height;
Aurelien Jacobsfdb5e022011-06-14 00:00:06134 EbmlBin color_space;
Aurelien Jacobs4c509fe2011-05-23 23:09:24135 uint64_t stereo_mode;
Vignesh Venkatasubramaniance6a8e52013-02-04 23:17:52136 uint64_t alpha_mode;
Aurelien Jacobs2cbc8812008-08-05 00:40:31137} MatroskaTrackVideo;
David Conradb061d892007-06-04 22:10:54138
Aurelien Jacobs2cbc8812008-08-05 00:40:31139typedef struct {
140 double samplerate;
141 double out_samplerate;
142 uint64_t bitdepth;
143 uint64_t channels;
David Conradb061d892007-06-04 22:10:54144
Aurelien Jacobs2cbc8812008-08-05 00:40:31145 /* real audio header (extracted from extradata) */
146 int coded_framesize;
147 int sub_packet_h;
148 int frame_size;
149 int sub_packet_size;
150 int sub_packet_cnt;
151 int pkt_cnt;
Reimar Döffingerb09e5062011-02-26 11:52:01152 uint64_t buf_timecode;
Aurelien Jacobs2cbc8812008-08-05 00:40:31153 uint8_t *buf;
154} MatroskaTrackAudio;
David Conradb061d892007-06-04 22:10:54155
Aurelien Jacobs2cbc8812008-08-05 00:40:31156typedef struct {
Kirill Gavrilove6ec9212011-05-21 15:14:14157 uint64_t uid;
158 uint64_t type;
159} MatroskaTrackPlane;
160
161typedef struct {
162 EbmlList combine_planes;
Kirill Gavrilove6ec9212011-05-21 15:14:14163} MatroskaTrackOperation;
164
165typedef struct {
Aurelien Jacobs2cbc8812008-08-05 00:40:31166 uint64_t num;
Aurelien Jacobs325ace32009-02-15 15:34:22167 uint64_t uid;
Aurelien Jacobs2cbc8812008-08-05 00:40:31168 uint64_t type;
Aurelien Jacobs38766e02009-02-15 15:29:09169 char *name;
Aurelien Jacobs2cbc8812008-08-05 00:40:31170 char *codec_id;
171 EbmlBin codec_priv;
172 char *language;
Anton Khirnov7ff97082008-06-01 13:54:11173 double time_scale;
David Conradb061d892007-06-04 22:10:54174 uint64_t default_duration;
Aurelien Jacobs4eff9742008-08-05 00:39:53175 uint64_t flag_default;
Aurelien Jacobs7a617a82010-07-02 16:38:44176 uint64_t flag_forced;
Vignesh Venkatasubramaniand6f86d72013-10-14 17:42:08177 uint64_t seek_preroll;
Aurelien Jacobs2cbc8812008-08-05 00:40:31178 MatroskaTrackVideo video;
179 MatroskaTrackAudio audio;
Kirill Gavrilove6ec9212011-05-21 15:14:14180 MatroskaTrackOperation operation;
Aurelien Jacobs2cbc8812008-08-05 00:40:31181 EbmlList encodings;
Anton Khirnoveb3b5502014-04-29 10:03:13182 uint64_t codec_delay;
Aurelien Jacobsfc4d3352008-08-05 00:40:06183
184 AVStream *stream;
Aurelien Jacobs82360e62008-09-09 12:07:10185 int64_t end_timecode;
Joakim Plate3e93c8e2010-03-03 21:46:43186 int ms_compat;
Vignesh Venkatasubramanian30c5c452013-02-13 21:51:48187 uint64_t max_block_additional_id;
David Conradb061d892007-06-04 22:10:54188} MatroskaTrack;
189
Aurelien Jacobse5929fd2008-08-05 00:40:15190typedef struct {
Aurelien Jacobs325ace32009-02-15 15:34:22191 uint64_t uid;
Aurelien Jacobsb414cb82008-08-05 00:40:24192 char *filename;
193 char *mime;
194 EbmlBin bin;
Aurelien Jacobs929e9de2009-02-15 15:53:55195
196 AVStream *stream;
Diego Biurrunf69befe2014-03-07 12:54:18197} MatroskaAttachment;
Aurelien Jacobsb414cb82008-08-05 00:40:24198
199typedef struct {
Aurelien Jacobs6bbd7c72008-08-05 00:40:21200 uint64_t start;
201 uint64_t end;
202 uint64_t uid;
203 char *title;
Aurelien Jacobs6cb6e152009-02-15 15:25:14204
205 AVChapter *chapter;
Aurelien Jacobs6bbd7c72008-08-05 00:40:21206} MatroskaChapter;
207
208typedef struct {
Aurelien Jacobse5929fd2008-08-05 00:40:15209 uint64_t track;
210 uint64_t pos;
211} MatroskaIndexPos;
212
213typedef struct {
214 uint64_t time;
215 EbmlList pos;
216} MatroskaIndex;
217
Aurelien Jacobs13b350a2008-08-05 00:40:36218typedef struct {
Aurelien Jacobs44015c52008-08-08 23:50:38219 char *name;
220 char *string;
Aurelien Jacobsf702df32009-02-15 16:05:37221 char *lang;
222 uint64_t def;
Aurelien Jacobs44015c52008-08-08 23:50:38223 EbmlList sub;
224} MatroskaTag;
225
226typedef struct {
Aurelien Jacobs929e9de2009-02-15 15:53:55227 char *type;
228 uint64_t typevalue;
229 uint64_t trackuid;
230 uint64_t chapteruid;
231 uint64_t attachuid;
232} MatroskaTagTarget;
233
234typedef struct {
235 MatroskaTagTarget target;
236 EbmlList tag;
237} MatroskaTags;
238
239typedef struct {
Aurelien Jacobs13b350a2008-08-05 00:40:36240 uint64_t id;
241 uint64_t pos;
242} MatroskaSeekhead;
243
Aurelien Jacobsc171af92008-08-05 00:41:19244typedef struct {
Aurelien Jacobs8d75b5a2007-06-04 22:35:16245 uint64_t start;
246 uint64_t length;
David Conradb061d892007-06-04 22:10:54247} MatroskaLevel;
248
Aurelien Jacobsc171af92008-08-05 00:41:19249typedef struct {
Dale Curtis8336eb62012-04-19 18:12:24250 uint64_t timecode;
251 EbmlList blocks;
252} MatroskaCluster;
253
254typedef struct {
David Conradb061d892007-06-04 22:10:54255 AVFormatContext *ctx;
256
Diego Biurrun5968d2d2008-08-05 08:28:57257 /* EBML stuff */
David Conradb061d892007-06-04 22:10:54258 int num_levels;
259 MatroskaLevel levels[EBML_MAX_DEPTH];
260 int level_up;
Aurelien Jacobsc3ade622010-06-11 16:34:01261 uint32_t current_id;
David Conradb061d892007-06-04 22:10:54262
Aurelien Jacobs29708582008-08-05 00:40:27263 uint64_t time_scale;
264 double duration;
265 char *title;
James Almer2c759d72013-11-24 08:31:48266 char *muxingapp;
Aaron Colwell2e061132012-03-05 18:02:48267 EbmlBin date_utc;
Aurelien Jacobs2cbc8812008-08-05 00:40:31268 EbmlList tracks;
Aurelien Jacobsb414cb82008-08-05 00:40:24269 EbmlList attachments;
Aurelien Jacobs6bbd7c72008-08-05 00:40:21270 EbmlList chapters;
Aurelien Jacobse5929fd2008-08-05 00:40:15271 EbmlList index;
Aurelien Jacobs44015c52008-08-08 23:50:38272 EbmlList tags;
Aurelien Jacobs13b350a2008-08-05 00:40:36273 EbmlList seekhead;
David Conradb061d892007-06-04 22:10:54274
David Conradb061d892007-06-04 22:10:54275 /* byte position of the segment inside the stream */
Diego Biurrunbc5c9182008-10-03 10:16:29276 int64_t segment_start;
David Conradb061d892007-06-04 22:10:54277
Diego Biurrun5968d2d2008-08-05 08:28:57278 /* the packet queue */
David Conradb061d892007-06-04 22:10:54279 AVPacket **packets;
280 int num_packets;
Aurelien Jacobsd5e34dc2008-09-28 23:06:25281 AVPacket *prev_pkt;
David Conradb061d892007-06-04 22:10:54282
Aurelien Jacobs8d75b5a2007-06-04 22:35:16283 int done;
David Conradb061d892007-06-04 22:10:54284
David Conradb061d892007-06-04 22:10:54285 /* What to skip before effectively reading a packet. */
286 int skip_to_keyframe;
Aurelien Jacobs20f74662008-09-09 12:01:51287 uint64_t skip_to_timecode;
Aaron Colwell31ad14c2011-07-09 05:48:43288
289 /* File has a CUES element, but we defer parsing until it is needed. */
290 int cues_parsing_deferred;
Dale Curtis8336eb62012-04-19 18:12:24291
292 int current_cluster_num_blocks;
293 int64_t current_cluster_pos;
294 MatroskaCluster current_cluster;
295
296 /* File has SSA subtitles which prevent incremental cluster parsing. */
297 int contains_ssa;
David Conradb061d892007-06-04 22:10:54298} MatroskaDemuxContext;
299
Aurelien Jacobs209472b2008-08-05 00:41:05300typedef struct {
301 uint64_t duration;
302 int64_t reference;
Aurelien Jacobs194d4b42009-08-10 18:06:14303 uint64_t non_simple;
Aurelien Jacobs209472b2008-08-05 00:41:05304 EbmlBin bin;
Vignesh Venkatasubramanian30c5c452013-02-13 21:51:48305 uint64_t additional_id;
306 EbmlBin additional;
Jan Gerberf4b1ca92013-11-14 11:58:28307 int64_t discard_padding;
Aurelien Jacobs209472b2008-08-05 00:41:05308} MatroskaBlock;
309
Aurelien Jacobs63511322008-08-05 00:40:02310static EbmlSyntax ebml_header[] = {
Keiji Costantini84cfce92014-03-01 16:28:15311 { EBML_ID_EBMLREADVERSION, EBML_UINT, 0, offsetof(Ebml, version), { .u = EBML_VERSION } },
312 { EBML_ID_EBMLMAXSIZELENGTH, EBML_UINT, 0, offsetof(Ebml, max_size), { .u = 8 } },
313 { EBML_ID_EBMLMAXIDLENGTH, EBML_UINT, 0, offsetof(Ebml, id_length), { .u = 4 } },
314 { EBML_ID_DOCTYPE, EBML_STR, 0, offsetof(Ebml, doctype), { .s = "(none)" } },
315 { EBML_ID_DOCTYPEREADVERSION, EBML_UINT, 0, offsetof(Ebml, doctype_version), { .u = 1 } },
316 { EBML_ID_EBMLVERSION, EBML_NONE },
317 { EBML_ID_DOCTYPEVERSION, EBML_NONE },
Aurelien Jacobs63511322008-08-05 00:40:02318 { 0 }
319};
320
321static EbmlSyntax ebml_syntax[] = {
Keiji Costantini84cfce92014-03-01 16:28:15322 { EBML_ID_HEADER, EBML_NEST, 0, 0, { .n = ebml_header } },
Aurelien Jacobs63511322008-08-05 00:40:02323 { 0 }
324};
325
Aurelien Jacobs29708582008-08-05 00:40:27326static EbmlSyntax matroska_info[] = {
Keiji Costantini84cfce92014-03-01 16:28:15327 { MATROSKA_ID_TIMECODESCALE, EBML_UINT, 0, offsetof(MatroskaDemuxContext, time_scale), { .u = 1000000 } },
328 { MATROSKA_ID_DURATION, EBML_FLOAT, 0, offsetof(MatroskaDemuxContext, duration) },
329 { MATROSKA_ID_TITLE, EBML_UTF8, 0, offsetof(MatroskaDemuxContext, title) },
330 { MATROSKA_ID_WRITINGAPP, EBML_NONE },
Michael Niedermayerb3d9ab12014-03-07 22:46:37331 { MATROSKA_ID_MUXINGAPP, EBML_UTF8, 0, offsetof(MatroskaDemuxContext, muxingapp) },
332 { MATROSKA_ID_DATEUTC, EBML_BIN, 0, offsetof(MatroskaDemuxContext, date_utc) },
Keiji Costantini84cfce92014-03-01 16:28:15333 { MATROSKA_ID_SEGMENTUID, EBML_NONE },
Aurelien Jacobs29708582008-08-05 00:40:27334 { 0 }
335};
336
Aurelien Jacobs2cbc8812008-08-05 00:40:31337static EbmlSyntax matroska_track_video[] = {
Keiji Costantini84cfce92014-03-01 16:28:15338 { MATROSKA_ID_VIDEOFRAMERATE, EBML_FLOAT, 0, offsetof(MatroskaTrackVideo, frame_rate) },
Michael Niedermayerb3d9ab12014-03-07 22:46:37339 { MATROSKA_ID_VIDEODISPLAYWIDTH, EBML_UINT, 0, offsetof(MatroskaTrackVideo, display_width), { .u=-1 } },
340 { MATROSKA_ID_VIDEODISPLAYHEIGHT, EBML_UINT, 0, offsetof(MatroskaTrackVideo, display_height), { .u=-1 } },
Keiji Costantini84cfce92014-03-01 16:28:15341 { MATROSKA_ID_VIDEOPIXELWIDTH, EBML_UINT, 0, offsetof(MatroskaTrackVideo, pixel_width) },
342 { MATROSKA_ID_VIDEOPIXELHEIGHT, EBML_UINT, 0, offsetof(MatroskaTrackVideo, pixel_height) },
Michael Niedermayerb3d9ab12014-03-07 22:46:37343 { MATROSKA_ID_VIDEOCOLORSPACE, EBML_BIN, 0, offsetof(MatroskaTrackVideo, color_space) },
Michael Niedermayerb3d9ab12014-03-07 22:46:37344 { MATROSKA_ID_VIDEOALPHAMODE, EBML_UINT, 0, offsetof(MatroskaTrackVideo, alpha_mode) },
Keiji Costantini84cfce92014-03-01 16:28:15345 { MATROSKA_ID_VIDEOPIXELCROPB, EBML_NONE },
346 { MATROSKA_ID_VIDEOPIXELCROPT, EBML_NONE },
347 { MATROSKA_ID_VIDEOPIXELCROPL, EBML_NONE },
348 { MATROSKA_ID_VIDEOPIXELCROPR, EBML_NONE },
349 { MATROSKA_ID_VIDEODISPLAYUNIT, EBML_NONE },
350 { MATROSKA_ID_VIDEOFLAGINTERLACED, EBML_NONE },
Vittorio Giovarad4ae8ac2014-08-12 21:28:49351 { MATROSKA_ID_VIDEOSTEREOMODE, EBML_UINT, 0, offsetof(MatroskaTrackVideo, stereo_mode), { .u = MATROSKA_VIDEO_STEREOMODE_TYPE_NB } },
Keiji Costantini84cfce92014-03-01 16:28:15352 { MATROSKA_ID_VIDEOASPECTRATIO, EBML_NONE },
Aurelien Jacobs2cbc8812008-08-05 00:40:31353 { 0 }
354};
355
356static EbmlSyntax matroska_track_audio[] = {
Keiji Costantini84cfce92014-03-01 16:28:15357 { MATROSKA_ID_AUDIOSAMPLINGFREQ, EBML_FLOAT, 0, offsetof(MatroskaTrackAudio, samplerate), { .f = 8000.0 } },
358 { MATROSKA_ID_AUDIOOUTSAMPLINGFREQ, EBML_FLOAT, 0, offsetof(MatroskaTrackAudio, out_samplerate) },
359 { MATROSKA_ID_AUDIOBITDEPTH, EBML_UINT, 0, offsetof(MatroskaTrackAudio, bitdepth) },
360 { MATROSKA_ID_AUDIOCHANNELS, EBML_UINT, 0, offsetof(MatroskaTrackAudio, channels), { .u = 1 } },
Aurelien Jacobs2cbc8812008-08-05 00:40:31361 { 0 }
362};
363
364static EbmlSyntax matroska_track_encoding_compression[] = {
Keiji Costantini84cfce92014-03-01 16:28:15365 { MATROSKA_ID_ENCODINGCOMPALGO, EBML_UINT, 0, offsetof(MatroskaTrackCompression, algo), { .u = 0 } },
366 { MATROSKA_ID_ENCODINGCOMPSETTINGS, EBML_BIN, 0, offsetof(MatroskaTrackCompression, settings) },
Aurelien Jacobs2cbc8812008-08-05 00:40:31367 { 0 }
368};
369
Frank Galliganb8531032013-03-07 16:11:38370static EbmlSyntax matroska_track_encoding_encryption[] = {
Michael Niedermayerb3d9ab12014-03-07 22:46:37371 { MATROSKA_ID_ENCODINGENCALGO, EBML_UINT, 0, offsetof(MatroskaTrackEncryption,algo), {.u = 0} },
Frank Galliganb8531032013-03-07 16:11:38372 { MATROSKA_ID_ENCODINGENCKEYID, EBML_BIN, 0, offsetof(MatroskaTrackEncryption,key_id) },
373 { MATROSKA_ID_ENCODINGENCAESSETTINGS, EBML_NONE },
374 { MATROSKA_ID_ENCODINGSIGALGO, EBML_NONE },
375 { MATROSKA_ID_ENCODINGSIGHASHALGO, EBML_NONE },
376 { MATROSKA_ID_ENCODINGSIGKEYID, EBML_NONE },
377 { MATROSKA_ID_ENCODINGSIGNATURE, EBML_NONE },
378 { 0 }
379};
Aurelien Jacobs2cbc8812008-08-05 00:40:31380static EbmlSyntax matroska_track_encoding[] = {
Keiji Costantini84cfce92014-03-01 16:28:15381 { MATROSKA_ID_ENCODINGSCOPE, EBML_UINT, 0, offsetof(MatroskaTrackEncoding, scope), { .u = 1 } },
382 { MATROSKA_ID_ENCODINGTYPE, EBML_UINT, 0, offsetof(MatroskaTrackEncoding, type), { .u = 0 } },
383 { MATROSKA_ID_ENCODINGCOMPRESSION, EBML_NEST, 0, offsetof(MatroskaTrackEncoding, compression), { .n = matroska_track_encoding_compression } },
Michael Niedermayerb3d9ab12014-03-07 22:46:37384 { MATROSKA_ID_ENCODINGENCRYPTION, EBML_NEST, 0, offsetof(MatroskaTrackEncoding, encryption), { .n = matroska_track_encoding_encryption } },
Keiji Costantini84cfce92014-03-01 16:28:15385 { MATROSKA_ID_ENCODINGORDER, EBML_NONE },
Aurelien Jacobs2cbc8812008-08-05 00:40:31386 { 0 }
387};
388
389static EbmlSyntax matroska_track_encodings[] = {
Keiji Costantini84cfce92014-03-01 16:28:15390 { MATROSKA_ID_TRACKCONTENTENCODING, EBML_NEST, sizeof(MatroskaTrackEncoding), offsetof(MatroskaTrack, encodings), { .n = matroska_track_encoding } },
Aurelien Jacobs2cbc8812008-08-05 00:40:31391 { 0 }
392};
393
Kirill Gavrilove6ec9212011-05-21 15:14:14394static EbmlSyntax matroska_track_plane[] = {
395 { MATROSKA_ID_TRACKPLANEUID, EBML_UINT, 0, offsetof(MatroskaTrackPlane,uid) },
396 { MATROSKA_ID_TRACKPLANETYPE, EBML_UINT, 0, offsetof(MatroskaTrackPlane,type) },
397 { 0 }
398};
399
400static EbmlSyntax matroska_track_combine_planes[] = {
Michael Niedermayerb3d9ab12014-03-07 22:46:37401 { MATROSKA_ID_TRACKPLANE, EBML_NEST, sizeof(MatroskaTrackPlane), offsetof(MatroskaTrackOperation,combine_planes), {.n = matroska_track_plane} },
Kirill Gavrilove6ec9212011-05-21 15:14:14402 { 0 }
403};
404
405static EbmlSyntax matroska_track_operation[] = {
Michael Niedermayerb3d9ab12014-03-07 22:46:37406 { MATROSKA_ID_TRACKCOMBINEPLANES, EBML_NEST, 0, 0, {.n = matroska_track_combine_planes} },
Kirill Gavrilove6ec9212011-05-21 15:14:14407 { 0 }
408};
409
Aurelien Jacobs2cbc8812008-08-05 00:40:31410static EbmlSyntax matroska_track[] = {
Keiji Costantini84cfce92014-03-01 16:28:15411 { MATROSKA_ID_TRACKNUMBER, EBML_UINT, 0, offsetof(MatroskaTrack, num) },
412 { MATROSKA_ID_TRACKNAME, EBML_UTF8, 0, offsetof(MatroskaTrack, name) },
413 { MATROSKA_ID_TRACKUID, EBML_UINT, 0, offsetof(MatroskaTrack, uid) },
414 { MATROSKA_ID_TRACKTYPE, EBML_UINT, 0, offsetof(MatroskaTrack, type) },
415 { MATROSKA_ID_CODECID, EBML_STR, 0, offsetof(MatroskaTrack, codec_id) },
416 { MATROSKA_ID_CODECPRIVATE, EBML_BIN, 0, offsetof(MatroskaTrack, codec_priv) },
Anton Khirnoveb3b5502014-04-29 10:03:13417 { MATROSKA_ID_CODECDELAY, EBML_UINT, 0, offsetof(MatroskaTrack, codec_delay) },
Michael Niedermayerb3d9ab12014-03-07 22:46:37418 { MATROSKA_ID_TRACKLANGUAGE, EBML_UTF8, 0, offsetof(MatroskaTrack, language), { .s = "eng" } },
Keiji Costantini84cfce92014-03-01 16:28:15419 { MATROSKA_ID_TRACKDEFAULTDURATION, EBML_UINT, 0, offsetof(MatroskaTrack, default_duration) },
Michael Niedermayerb3d9ab12014-03-07 22:46:37420 { MATROSKA_ID_TRACKTIMECODESCALE, EBML_FLOAT, 0, offsetof(MatroskaTrack, time_scale), { .f = 1.0 } },
421 { MATROSKA_ID_TRACKFLAGDEFAULT, EBML_UINT, 0, offsetof(MatroskaTrack, flag_default), { .u = 1 } },
422 { MATROSKA_ID_TRACKFLAGFORCED, EBML_UINT, 0, offsetof(MatroskaTrack, flag_forced), { .u = 0 } },
Keiji Costantini84cfce92014-03-01 16:28:15423 { MATROSKA_ID_TRACKVIDEO, EBML_NEST, 0, offsetof(MatroskaTrack, video), { .n = matroska_track_video } },
424 { MATROSKA_ID_TRACKAUDIO, EBML_NEST, 0, offsetof(MatroskaTrack, audio), { .n = matroska_track_audio } },
Michael Niedermayerb3d9ab12014-03-07 22:46:37425 { MATROSKA_ID_TRACKOPERATION, EBML_NEST, 0, offsetof(MatroskaTrack, operation), { .n = matroska_track_operation } },
Keiji Costantini84cfce92014-03-01 16:28:15426 { MATROSKA_ID_TRACKCONTENTENCODINGS, EBML_NEST, 0, 0, { .n = matroska_track_encodings } },
Michael Niedermayerb3d9ab12014-03-07 22:46:37427 { MATROSKA_ID_TRACKMAXBLKADDID, EBML_UINT, 0, offsetof(MatroskaTrack, max_block_additional_id) },
Michael Niedermayerb3d9ab12014-03-07 22:46:37428 { MATROSKA_ID_SEEKPREROLL, EBML_UINT, 0, offsetof(MatroskaTrack, seek_preroll) },
Keiji Costantini84cfce92014-03-01 16:28:15429 { MATROSKA_ID_TRACKFLAGENABLED, EBML_NONE },
430 { MATROSKA_ID_TRACKFLAGLACING, EBML_NONE },
431 { MATROSKA_ID_CODECNAME, EBML_NONE },
432 { MATROSKA_ID_CODECDECODEALL, EBML_NONE },
433 { MATROSKA_ID_CODECINFOURL, EBML_NONE },
434 { MATROSKA_ID_CODECDOWNLOADURL, EBML_NONE },
435 { MATROSKA_ID_TRACKMINCACHE, EBML_NONE },
436 { MATROSKA_ID_TRACKMAXCACHE, EBML_NONE },
Aurelien Jacobs2cbc8812008-08-05 00:40:31437 { 0 }
438};
439
440static EbmlSyntax matroska_tracks[] = {
Keiji Costantini84cfce92014-03-01 16:28:15441 { MATROSKA_ID_TRACKENTRY, EBML_NEST, sizeof(MatroskaTrack), offsetof(MatroskaDemuxContext, tracks), { .n = matroska_track } },
Aurelien Jacobs2cbc8812008-08-05 00:40:31442 { 0 }
443};
444
Aurelien Jacobsb414cb82008-08-05 00:40:24445static EbmlSyntax matroska_attachment[] = {
Diego Biurrunf69befe2014-03-07 12:54:18446 { MATROSKA_ID_FILEUID, EBML_UINT, 0, offsetof(MatroskaAttachment, uid) },
447 { MATROSKA_ID_FILENAME, EBML_UTF8, 0, offsetof(MatroskaAttachment, filename) },
448 { MATROSKA_ID_FILEMIMETYPE, EBML_STR, 0, offsetof(MatroskaAttachment, mime) },
449 { MATROSKA_ID_FILEDATA, EBML_BIN, 0, offsetof(MatroskaAttachment, bin) },
Keiji Costantini84cfce92014-03-01 16:28:15450 { MATROSKA_ID_FILEDESC, EBML_NONE },
Aurelien Jacobsb414cb82008-08-05 00:40:24451 { 0 }
452};
453
454static EbmlSyntax matroska_attachments[] = {
Diego Biurrunf69befe2014-03-07 12:54:18455 { MATROSKA_ID_ATTACHEDFILE, EBML_NEST, sizeof(MatroskaAttachment), offsetof(MatroskaDemuxContext, attachments), { .n = matroska_attachment } },
Aurelien Jacobsb414cb82008-08-05 00:40:24456 { 0 }
457};
458
Aurelien Jacobs6bbd7c72008-08-05 00:40:21459static EbmlSyntax matroska_chapter_display[] = {
Keiji Costantini84cfce92014-03-01 16:28:15460 { MATROSKA_ID_CHAPSTRING, EBML_UTF8, 0, offsetof(MatroskaChapter, title) },
461 { MATROSKA_ID_CHAPLANG, EBML_NONE },
Aurelien Jacobs6bbd7c72008-08-05 00:40:21462 { 0 }
463};
464
465static EbmlSyntax matroska_chapter_entry[] = {
Keiji Costantini84cfce92014-03-01 16:28:15466 { MATROSKA_ID_CHAPTERTIMESTART, EBML_UINT, 0, offsetof(MatroskaChapter, start), { .u = AV_NOPTS_VALUE } },
467 { MATROSKA_ID_CHAPTERTIMEEND, EBML_UINT, 0, offsetof(MatroskaChapter, end), { .u = AV_NOPTS_VALUE } },
468 { MATROSKA_ID_CHAPTERUID, EBML_UINT, 0, offsetof(MatroskaChapter, uid) },
469 { MATROSKA_ID_CHAPTERDISPLAY, EBML_NEST, 0, 0, { .n = matroska_chapter_display } },
Aurelien Jacobs6bbd7c72008-08-05 00:40:21470 { MATROSKA_ID_CHAPTERFLAGHIDDEN, EBML_NONE },
Aurelien Jacobs5df3cc62008-08-13 21:15:15471 { MATROSKA_ID_CHAPTERFLAGENABLED, EBML_NONE },
472 { MATROSKA_ID_CHAPTERPHYSEQUIV, EBML_NONE },
473 { MATROSKA_ID_CHAPTERATOM, EBML_NONE },
Aurelien Jacobs6bbd7c72008-08-05 00:40:21474 { 0 }
475};
476
477static EbmlSyntax matroska_chapter[] = {
Keiji Costantini84cfce92014-03-01 16:28:15478 { MATROSKA_ID_CHAPTERATOM, EBML_NEST, sizeof(MatroskaChapter), offsetof(MatroskaDemuxContext, chapters), { .n = matroska_chapter_entry } },
Aurelien Jacobs6bbd7c72008-08-05 00:40:21479 { MATROSKA_ID_EDITIONUID, EBML_NONE },
480 { MATROSKA_ID_EDITIONFLAGHIDDEN, EBML_NONE },
481 { MATROSKA_ID_EDITIONFLAGDEFAULT, EBML_NONE },
Aurelien Jacobs5df3cc62008-08-13 21:15:15482 { MATROSKA_ID_EDITIONFLAGORDERED, EBML_NONE },
Aurelien Jacobs6bbd7c72008-08-05 00:40:21483 { 0 }
484};
485
486static EbmlSyntax matroska_chapters[] = {
Keiji Costantini84cfce92014-03-01 16:28:15487 { MATROSKA_ID_EDITIONENTRY, EBML_NEST, 0, 0, { .n = matroska_chapter } },
Aurelien Jacobs6bbd7c72008-08-05 00:40:21488 { 0 }
489};
490
Aurelien Jacobse5929fd2008-08-05 00:40:15491static EbmlSyntax matroska_index_pos[] = {
Keiji Costantini84cfce92014-03-01 16:28:15492 { MATROSKA_ID_CUETRACK, EBML_UINT, 0, offsetof(MatroskaIndexPos, track) },
493 { MATROSKA_ID_CUECLUSTERPOSITION, EBML_UINT, 0, offsetof(MatroskaIndexPos, pos) },
James Almer5ab7b3b2013-09-15 09:32:36494 { MATROSKA_ID_CUERELATIVEPOSITION,EBML_NONE },
James Almer56f17402013-09-21 01:15:49495 { MATROSKA_ID_CUEDURATION, EBML_NONE },
Aurelien Jacobs5df3cc62008-08-13 21:15:15496 { MATROSKA_ID_CUEBLOCKNUMBER, EBML_NONE },
Aurelien Jacobse5929fd2008-08-05 00:40:15497 { 0 }
498};
499
500static EbmlSyntax matroska_index_entry[] = {
Keiji Costantini84cfce92014-03-01 16:28:15501 { MATROSKA_ID_CUETIME, EBML_UINT, 0, offsetof(MatroskaIndex, time) },
502 { MATROSKA_ID_CUETRACKPOSITION, EBML_NEST, sizeof(MatroskaIndexPos), offsetof(MatroskaIndex, pos), { .n = matroska_index_pos } },
Aurelien Jacobse5929fd2008-08-05 00:40:15503 { 0 }
504};
505
506static EbmlSyntax matroska_index[] = {
Keiji Costantini84cfce92014-03-01 16:28:15507 { MATROSKA_ID_POINTENTRY, EBML_NEST, sizeof(MatroskaIndex), offsetof(MatroskaDemuxContext, index), { .n = matroska_index_entry } },
Aurelien Jacobse5929fd2008-08-05 00:40:15508 { 0 }
509};
510
Aurelien Jacobs44015c52008-08-08 23:50:38511static EbmlSyntax matroska_simpletag[] = {
Keiji Costantini84cfce92014-03-01 16:28:15512 { MATROSKA_ID_TAGNAME, EBML_UTF8, 0, offsetof(MatroskaTag, name) },
513 { MATROSKA_ID_TAGSTRING, EBML_UTF8, 0, offsetof(MatroskaTag, string) },
514 { MATROSKA_ID_TAGLANG, EBML_STR, 0, offsetof(MatroskaTag, lang), { .s = "und" } },
515 { MATROSKA_ID_TAGDEFAULT, EBML_UINT, 0, offsetof(MatroskaTag, def) },
516 { MATROSKA_ID_TAGDEFAULT_BUG, EBML_UINT, 0, offsetof(MatroskaTag, def) },
517 { MATROSKA_ID_SIMPLETAG, EBML_NEST, sizeof(MatroskaTag), offsetof(MatroskaTag, sub), { .n = matroska_simpletag } },
Aurelien Jacobs44015c52008-08-08 23:50:38518 { 0 }
519};
520
Aurelien Jacobs929e9de2009-02-15 15:53:55521static EbmlSyntax matroska_tagtargets[] = {
Keiji Costantini84cfce92014-03-01 16:28:15522 { MATROSKA_ID_TAGTARGETS_TYPE, EBML_STR, 0, offsetof(MatroskaTagTarget, type) },
523 { MATROSKA_ID_TAGTARGETS_TYPEVALUE, EBML_UINT, 0, offsetof(MatroskaTagTarget, typevalue), { .u = 50 } },
524 { MATROSKA_ID_TAGTARGETS_TRACKUID, EBML_UINT, 0, offsetof(MatroskaTagTarget, trackuid) },
525 { MATROSKA_ID_TAGTARGETS_CHAPTERUID, EBML_UINT, 0, offsetof(MatroskaTagTarget, chapteruid) },
526 { MATROSKA_ID_TAGTARGETS_ATTACHUID, EBML_UINT, 0, offsetof(MatroskaTagTarget, attachuid) },
Aurelien Jacobs929e9de2009-02-15 15:53:55527 { 0 }
528};
529
Aurelien Jacobs44015c52008-08-08 23:50:38530static EbmlSyntax matroska_tag[] = {
Keiji Costantini84cfce92014-03-01 16:28:15531 { MATROSKA_ID_SIMPLETAG, EBML_NEST, sizeof(MatroskaTag), offsetof(MatroskaTags, tag), { .n = matroska_simpletag } },
532 { MATROSKA_ID_TAGTARGETS, EBML_NEST, 0, offsetof(MatroskaTags, target), { .n = matroska_tagtargets } },
Aurelien Jacobs44015c52008-08-08 23:50:38533 { 0 }
534};
535
Aurelien Jacobs434d4962008-08-05 00:40:18536static EbmlSyntax matroska_tags[] = {
Keiji Costantini84cfce92014-03-01 16:28:15537 { MATROSKA_ID_TAG, EBML_NEST, sizeof(MatroskaTags), offsetof(MatroskaDemuxContext, tags), { .n = matroska_tag } },
Aurelien Jacobs434d4962008-08-05 00:40:18538 { 0 }
539};
540
Aurelien Jacobs13b350a2008-08-05 00:40:36541static EbmlSyntax matroska_seekhead_entry[] = {
Keiji Costantini84cfce92014-03-01 16:28:15542 { MATROSKA_ID_SEEKID, EBML_UINT, 0, offsetof(MatroskaSeekhead, id) },
543 { MATROSKA_ID_SEEKPOSITION, EBML_UINT, 0, offsetof(MatroskaSeekhead, pos), { .u = -1 } },
Aurelien Jacobs13b350a2008-08-05 00:40:36544 { 0 }
545};
546
547static EbmlSyntax matroska_seekhead[] = {
Keiji Costantini84cfce92014-03-01 16:28:15548 { MATROSKA_ID_SEEKENTRY, EBML_NEST, sizeof(MatroskaSeekhead), offsetof(MatroskaDemuxContext, seekhead), { .n = matroska_seekhead_entry } },
Aurelien Jacobs13b350a2008-08-05 00:40:36549 { 0 }
550};
551
Aurelien Jacobsce6f28b2008-08-05 00:40:58552static EbmlSyntax matroska_segment[] = {
Keiji Costantini84cfce92014-03-01 16:28:15553 { MATROSKA_ID_INFO, EBML_NEST, 0, 0, { .n = matroska_info } },
554 { MATROSKA_ID_TRACKS, EBML_NEST, 0, 0, { .n = matroska_tracks } },
555 { MATROSKA_ID_ATTACHMENTS, EBML_NEST, 0, 0, { .n = matroska_attachments } },
556 { MATROSKA_ID_CHAPTERS, EBML_NEST, 0, 0, { .n = matroska_chapters } },
557 { MATROSKA_ID_CUES, EBML_NEST, 0, 0, { .n = matroska_index } },
558 { MATROSKA_ID_TAGS, EBML_NEST, 0, 0, { .n = matroska_tags } },
559 { MATROSKA_ID_SEEKHEAD, EBML_NEST, 0, 0, { .n = matroska_seekhead } },
560 { MATROSKA_ID_CLUSTER, EBML_STOP },
Aurelien Jacobsce6f28b2008-08-05 00:40:58561 { 0 }
562};
563
564static EbmlSyntax matroska_segments[] = {
Keiji Costantini84cfce92014-03-01 16:28:15565 { MATROSKA_ID_SEGMENT, EBML_NEST, 0, 0, { .n = matroska_segment } },
Aurelien Jacobsce6f28b2008-08-05 00:40:58566 { 0 }
567};
568
Vignesh Venkatasubramanian30c5c452013-02-13 21:51:48569static EbmlSyntax matroska_blockmore[] = {
570 { MATROSKA_ID_BLOCKADDID, EBML_UINT, 0, offsetof(MatroskaBlock,additional_id) },
571 { MATROSKA_ID_BLOCKADDITIONAL, EBML_BIN, 0, offsetof(MatroskaBlock,additional) },
572 { 0 }
573};
574
575static EbmlSyntax matroska_blockadditions[] = {
Michael Niedermayerb3d9ab12014-03-07 22:46:37576 { MATROSKA_ID_BLOCKMORE, EBML_NEST, 0, 0, {.n = matroska_blockmore} },
Vignesh Venkatasubramanian30c5c452013-02-13 21:51:48577 { 0 }
578};
579
Aurelien Jacobs209472b2008-08-05 00:41:05580static EbmlSyntax matroska_blockgroup[] = {
Keiji Costantini84cfce92014-03-01 16:28:15581 { MATROSKA_ID_BLOCK, EBML_BIN, 0, offsetof(MatroskaBlock, bin) },
Michael Niedermayerb3d9ab12014-03-07 22:46:37582 { MATROSKA_ID_BLOCKADDITIONS, EBML_NEST, 0, 0, { .n = matroska_blockadditions} },
Keiji Costantini84cfce92014-03-01 16:28:15583 { MATROSKA_ID_SIMPLEBLOCK, EBML_BIN, 0, offsetof(MatroskaBlock, bin) },
Michael Niedermayerb3d9ab12014-03-07 22:46:37584 { MATROSKA_ID_BLOCKDURATION, EBML_UINT, 0, offsetof(MatroskaBlock, duration) },
585 { MATROSKA_ID_DISCARDPADDING, EBML_SINT, 0, offsetof(MatroskaBlock, discard_padding) },
586 { MATROSKA_ID_BLOCKREFERENCE, EBML_SINT, 0, offsetof(MatroskaBlock, reference) },
Anton Khirnov564b7e02013-05-15 13:48:15587 { MATROSKA_ID_CODECSTATE, EBML_NONE },
Keiji Costantini84cfce92014-03-01 16:28:15588 { 1, EBML_UINT, 0, offsetof(MatroskaBlock, non_simple), { .u = 1 } },
Aurelien Jacobs209472b2008-08-05 00:41:05589 { 0 }
590};
591
592static EbmlSyntax matroska_cluster[] = {
Keiji Costantini84cfce92014-03-01 16:28:15593 { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, offsetof(MatroskaCluster, timecode) },
594 { MATROSKA_ID_BLOCKGROUP, EBML_NEST, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } },
595 { MATROSKA_ID_SIMPLEBLOCK, EBML_PASS, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } },
596 { MATROSKA_ID_CLUSTERPOSITION, EBML_NONE },
597 { MATROSKA_ID_CLUSTERPREVSIZE, EBML_NONE },
Aurelien Jacobs209472b2008-08-05 00:41:05598 { 0 }
599};
600
601static EbmlSyntax matroska_clusters[] = {
Keiji Costantini84cfce92014-03-01 16:28:15602 { MATROSKA_ID_CLUSTER, EBML_NEST, 0, 0, { .n = matroska_cluster } },
603 { MATROSKA_ID_INFO, EBML_NONE },
604 { MATROSKA_ID_CUES, EBML_NONE },
605 { MATROSKA_ID_TAGS, EBML_NONE },
606 { MATROSKA_ID_SEEKHEAD, EBML_NONE },
Aurelien Jacobs209472b2008-08-05 00:41:05607 { 0 }
608};
609
Dale Curtis8336eb62012-04-19 18:12:24610static EbmlSyntax matroska_cluster_incremental_parsing[] = {
Keiji Costantini84cfce92014-03-01 16:28:15611 { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, offsetof(MatroskaCluster, timecode) },
612 { MATROSKA_ID_BLOCKGROUP, EBML_NEST, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } },
613 { MATROSKA_ID_SIMPLEBLOCK, EBML_PASS, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } },
614 { MATROSKA_ID_CLUSTERPOSITION, EBML_NONE },
615 { MATROSKA_ID_CLUSTERPREVSIZE, EBML_NONE },
616 { MATROSKA_ID_INFO, EBML_NONE },
617 { MATROSKA_ID_CUES, EBML_NONE },
618 { MATROSKA_ID_TAGS, EBML_NONE },
619 { MATROSKA_ID_SEEKHEAD, EBML_NONE },
620 { MATROSKA_ID_CLUSTER, EBML_STOP },
Dale Curtis8336eb62012-04-19 18:12:24621 { 0 }
622};
623
624static EbmlSyntax matroska_cluster_incremental[] = {
Keiji Costantini84cfce92014-03-01 16:28:15625 { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, offsetof(MatroskaCluster, timecode) },
626 { MATROSKA_ID_BLOCKGROUP, EBML_STOP },
627 { MATROSKA_ID_SIMPLEBLOCK, EBML_STOP },
628 { MATROSKA_ID_CLUSTERPOSITION, EBML_NONE },
629 { MATROSKA_ID_CLUSTERPREVSIZE, EBML_NONE },
Dale Curtis8336eb62012-04-19 18:12:24630 { 0 }
631};
632
633static EbmlSyntax matroska_clusters_incremental[] = {
Keiji Costantini84cfce92014-03-01 16:28:15634 { MATROSKA_ID_CLUSTER, EBML_NEST, 0, 0, { .n = matroska_cluster_incremental } },
635 { MATROSKA_ID_INFO, EBML_NONE },
636 { MATROSKA_ID_CUES, EBML_NONE },
637 { MATROSKA_ID_TAGS, EBML_NONE },
638 { MATROSKA_ID_SEEKHEAD, EBML_NONE },
Dale Curtis8336eb62012-04-19 18:12:24639 { 0 }
640};
641
Alex Converseb0f29db2012-02-20 08:42:33642static const char *const matroska_doctypes[] = { "matroska", "webm" };
James Zern470491f2010-05-22 01:41:32643
Reimar Döffingerd4931702012-02-13 22:06:19644static int matroska_resync(MatroskaDemuxContext *matroska, int64_t last_pos)
645{
646 AVIOContext *pb = matroska->ctx->pb;
647 uint32_t id;
648 matroska->current_id = 0;
649 matroska->num_levels = 0;
650
Sean McGovern8835c552013-05-27 22:11:50651 /* seek to next position to resync from */
652 if (avio_seek(pb, last_pos + 1, SEEK_SET) < 0)
Reimar Döffingerd4931702012-02-13 22:06:19653 goto eof;
654
655 id = avio_rb32(pb);
656
657 // try to find a toplevel element
James Almerd34ec642014-08-07 20:12:41658 while (!avio_feof(pb)) {
Sean McGovern8835c552013-05-27 22:11:50659 if (id == MATROSKA_ID_INFO || id == MATROSKA_ID_TRACKS ||
660 id == MATROSKA_ID_CUES || id == MATROSKA_ID_TAGS ||
Reimar Döffingerd4931702012-02-13 22:06:19661 id == MATROSKA_ID_SEEKHEAD || id == MATROSKA_ID_ATTACHMENTS ||
Sean McGovern8835c552013-05-27 22:11:50662 id == MATROSKA_ID_CLUSTER || id == MATROSKA_ID_CHAPTERS) {
Keiji Costantini84cfce92014-03-01 16:28:15663 matroska->current_id = id;
664 return 0;
Reimar Döffingerd4931702012-02-13 22:06:19665 }
666 id = (id << 8) | avio_r8(pb);
667 }
Keiji Costantini84cfce92014-03-01 16:28:15668
Reimar Döffingerd4931702012-02-13 22:06:19669eof:
670 matroska->done = 1;
671 return AVERROR_EOF;
672}
673
David Conradb061d892007-06-04 22:10:54674/*
Diego Biurrun5968d2d2008-08-05 08:28:57675 * Return: Whether we reached the end of a level in the hierarchy or not.
David Conradb061d892007-06-04 22:10:54676 */
Aurelien Jacobs592110c2008-08-05 00:42:08677static int ebml_level_end(MatroskaDemuxContext *matroska)
David Conradb061d892007-06-04 22:10:54678{
Anton Khirnov471fe572011-02-20 10:04:12679 AVIOContext *pb = matroska->ctx->pb;
Anton Khirnov384c9c22011-03-03 19:11:45680 int64_t pos = avio_tell(pb);
David Conradb061d892007-06-04 22:10:54681
Aurelien Jacobs592110c2008-08-05 00:42:08682 if (matroska->num_levels > 0) {
David Conradb061d892007-06-04 22:10:54683 MatroskaLevel *level = &matroska->levels[matroska->num_levels - 1];
Aurelien Jacobs8dbe48f2010-06-11 16:43:47684 if (pos - level->start >= level->length || matroska->current_id) {
David Conradb061d892007-06-04 22:10:54685 matroska->num_levels--;
Aurelien Jacobs592110c2008-08-05 00:42:08686 return 1;
David Conradb061d892007-06-04 22:10:54687 }
688 }
Aurelien Jacobs592110c2008-08-05 00:42:08689 return 0;
David Conradb061d892007-06-04 22:10:54690}
691
692/*
693 * Read: an "EBML number", which is defined as a variable-length
694 * array of bytes. The first byte indicates the length by giving a
695 * number of 0-bits followed by a one. The position of the first
696 * "one" bit inside the first byte indicates the length of this
697 * number.
Diego Biurrun5968d2d2008-08-05 08:28:57698 * Returns: number of bytes read, < 0 on error
David Conradb061d892007-06-04 22:10:54699 */
Anton Khirnov471fe572011-02-20 10:04:12700static int ebml_read_num(MatroskaDemuxContext *matroska, AVIOContext *pb,
Aurelien Jacobsf7b96872008-08-05 00:42:05701 int max_size, uint64_t *number)
David Conradb061d892007-06-04 22:10:54702{
Reimar Döffingerff6a5fc2010-09-02 19:17:46703 int read = 1, n = 1;
704 uint64_t total = 0;
David Conradb061d892007-06-04 22:10:54705
Anton Khirnove63a3622011-02-21 15:43:01706 /* The first byte tells us the length in bytes - avio_r8() can normally
David Conradb061d892007-06-04 22:10:54707 * return 0, but since that's not a valid first ebmlID byte, we can
708 * use it safely here to catch EOS. */
Anton Khirnove63a3622011-02-21 15:43:01709 if (!(total = avio_r8(pb))) {
David Conradb061d892007-06-04 22:10:54710 /* we might encounter EOS here */
James Almerd34ec642014-08-07 20:12:41711 if (!avio_feof(pb)) {
Anton Khirnov384c9c22011-03-03 19:11:45712 int64_t pos = avio_tell(pb);
David Conradb061d892007-06-04 22:10:54713 av_log(matroska->ctx, AV_LOG_ERROR,
714 "Read error at pos. %"PRIu64" (0x%"PRIx64")\n",
715 pos, pos);
Anton Khirnov721113b2012-07-21 08:48:39716 return pb->error ? pb->error : AVERROR(EIO);
David Conradb061d892007-06-04 22:10:54717 }
Anton Khirnov721113b2012-07-21 08:48:39718 return AVERROR_EOF;
David Conradb061d892007-06-04 22:10:54719 }
720
721 /* get the length of the EBML number */
Reimar Döffingerff6a5fc2010-09-02 19:17:46722 read = 8 - ff_log2_tab[total];
David Conradb061d892007-06-04 22:10:54723 if (read > max_size) {
Anton Khirnov384c9c22011-03-03 19:11:45724 int64_t pos = avio_tell(pb) - 1;
David Conradb061d892007-06-04 22:10:54725 av_log(matroska->ctx, AV_LOG_ERROR,
726 "Invalid EBML number size tag 0x%02x at pos %"PRIu64" (0x%"PRIx64")\n",
727 (uint8_t) total, pos, pos);
728 return AVERROR_INVALIDDATA;
729 }
730
731 /* read out length */
Reimar Döffingerff6a5fc2010-09-02 19:17:46732 total ^= 1 << ff_log2_tab[total];
David Conradb061d892007-06-04 22:10:54733 while (n++ < read)
Anton Khirnove63a3622011-02-21 15:43:01734 total = (total << 8) | avio_r8(pb);
David Conradb061d892007-06-04 22:10:54735
736 *number = total;
737
738 return read;
739}
740
Reimar Döffinger1b4d3272010-09-06 17:51:44741/**
742 * Read a EBML length value.
743 * This needs special handling for the "unknown length" case which has multiple
744 * encodings.
745 */
Anton Khirnov471fe572011-02-20 10:04:12746static int ebml_read_length(MatroskaDemuxContext *matroska, AVIOContext *pb,
Reimar Döffinger1b4d3272010-09-06 17:51:44747 uint64_t *number)
748{
749 int res = ebml_read_num(matroska, pb, 8, number);
750 if (res > 0 && *number + 1 == 1ULL << (7 * res))
751 *number = 0xffffffffffffffULL;
752 return res;
753}
754
David Conradb061d892007-06-04 22:10:54755/*
David Conradb061d892007-06-04 22:10:54756 * Read the next element as an unsigned int.
757 * 0 is success, < 0 is failure.
758 */
Anton Khirnov471fe572011-02-20 10:04:12759static int ebml_read_uint(AVIOContext *pb, int size, uint64_t *num)
David Conradb061d892007-06-04 22:10:54760{
Aurelien Jacobsc6cd2b32008-08-05 00:41:55761 int n = 0;
David Conradb061d892007-06-04 22:10:54762
Aurelien Jacobs4a194c82010-09-05 21:37:40763 if (size > 8)
David Conradb061d892007-06-04 22:10:54764 return AVERROR_INVALIDDATA;
David Conradb061d892007-06-04 22:10:54765
Diego Biurrun5968d2d2008-08-05 08:28:57766 /* big-endian ordering; build up number */
David Conradb061d892007-06-04 22:10:54767 *num = 0;
768 while (n++ < size)
Anton Khirnove63a3622011-02-21 15:43:01769 *num = (*num << 8) | avio_r8(pb);
David Conradb061d892007-06-04 22:10:54770
771 return 0;
772}
773
774/*
Jan Gerberd03eea32013-11-15 18:00:37775 * Read the next element as a signed int.
776 * 0 is success, < 0 is failure.
777 */
778static int ebml_read_sint(AVIOContext *pb, int size, int64_t *num)
779{
780 int n = 1;
781
782 if (size > 8)
783 return AVERROR_INVALIDDATA;
784
785 if (size == 0) {
786 *num = 0;
787 } else {
Michael Niedermayercddd15b2013-11-15 20:30:30788 *num = sign_extend(avio_r8(pb), 8);
Jan Gerberd03eea32013-11-15 18:00:37789
790 /* big-endian ordering; build up number */
791 while (n++ < size)
792 *num = (*num << 8) | avio_r8(pb);
793 }
794
795 return 0;
796}
797
798/*
David Conradb061d892007-06-04 22:10:54799 * Read the next element as a float.
800 * 0 is success, < 0 is failure.
801 */
Anton Khirnov471fe572011-02-20 10:04:12802static int ebml_read_float(AVIOContext *pb, int size, double *num)
David Conradb061d892007-06-04 22:10:54803{
Keiji Costantini84cfce92014-03-01 16:28:15804 if (size == 0)
Aurelien Jacobs4a194c82010-09-05 21:37:40805 *num = 0;
Keiji Costantini84cfce92014-03-01 16:28:15806 else if (size == 4)
Mans Rullgard3383a532011-11-27 14:04:16807 *num = av_int2float(avio_rb32(pb));
Keiji Costantini84cfce92014-03-01 16:28:15808 else if (size == 8)
Mans Rullgard3383a532011-11-27 14:04:16809 *num = av_int2double(avio_rb64(pb));
Keiji Costantini84cfce92014-03-01 16:28:15810 else
David Conradb061d892007-06-04 22:10:54811 return AVERROR_INVALIDDATA;
David Conradb061d892007-06-04 22:10:54812
813 return 0;
814}
815
816/*
817 * Read the next element as an ASCII string.
818 * 0 is success, < 0 is failure.
819 */
Anton Khirnov471fe572011-02-20 10:04:12820static int ebml_read_ascii(AVIOContext *pb, int size, char **str)
David Conradb061d892007-06-04 22:10:54821{
Ronald S. Bultjecd40c312012-02-25 00:12:18822 char *res;
823
Diego Biurrun5968d2d2008-08-05 08:28:57824 /* EBML strings are usually not 0-terminated, so we allocate one
David Conradb061d892007-06-04 22:10:54825 * byte more, read the string and NULL-terminate it ourselves. */
Ronald S. Bultjecd40c312012-02-25 00:12:18826 if (!(res = av_malloc(size + 1)))
Panagiotis Issaris769e10f2007-07-19 15:21:30827 return AVERROR(ENOMEM);
Ronald S. Bultjecd40c312012-02-25 00:12:18828 if (avio_read(pb, (uint8_t *) res, size) != size) {
829 av_free(res);
Panagiotis Issaris6f3e0b22007-07-19 15:23:32830 return AVERROR(EIO);
David Conradb061d892007-06-04 22:10:54831 }
Ronald S. Bultjecd40c312012-02-25 00:12:18832 (res)[size] = '\0';
833 av_free(*str);
834 *str = res;
David Conradb061d892007-06-04 22:10:54835
836 return 0;
837}
838
839/*
Aurelien Jacobs737c40d2008-08-05 00:42:39840 * Read the next element as binary data.
841 * 0 is success, < 0 is failure.
842 */
Anton Khirnov471fe572011-02-20 10:04:12843static int ebml_read_binary(AVIOContext *pb, int length, EbmlBin *bin)
Aurelien Jacobs737c40d2008-08-05 00:42:39844{
Michael Niedermayerc63e76b2012-11-09 21:58:10845 av_fast_padded_malloc(&bin->data, &bin->size, length);
846 if (!bin->data)
Aurelien Jacobs737c40d2008-08-05 00:42:39847 return AVERROR(ENOMEM);
848
849 bin->size = length;
Anton Khirnov384c9c22011-03-03 19:11:45850 bin->pos = avio_tell(pb);
Anton Khirnove63a3622011-02-21 15:43:01851 if (avio_read(pb, bin->data, length) != length) {
David Conrad5549aa62010-05-18 21:21:37852 av_freep(&bin->data);
Michael Niedermayer5e1bacf2012-12-04 02:30:40853 bin->size = 0;
Aurelien Jacobs737c40d2008-08-05 00:42:39854 return AVERROR(EIO);
David Conrad5549aa62010-05-18 21:21:37855 }
Aurelien Jacobs737c40d2008-08-05 00:42:39856
857 return 0;
858}
859
860/*
David Conradb061d892007-06-04 22:10:54861 * Read the next element, but only the header. The contents
862 * are supposed to be sub-elements which can be read separately.
863 * 0 is success, < 0 is failure.
864 */
Aurelien Jacobsbddd1d92010-06-11 17:16:43865static int ebml_read_master(MatroskaDemuxContext *matroska, uint64_t length)
David Conradb061d892007-06-04 22:10:54866{
Anton Khirnov471fe572011-02-20 10:04:12867 AVIOContext *pb = matroska->ctx->pb;
David Conradb061d892007-06-04 22:10:54868 MatroskaLevel *level;
David Conradb061d892007-06-04 22:10:54869
David Conradb061d892007-06-04 22:10:54870 if (matroska->num_levels >= EBML_MAX_DEPTH) {
871 av_log(matroska->ctx, AV_LOG_ERROR,
872 "File moves beyond max. allowed depth (%d)\n", EBML_MAX_DEPTH);
Panagiotis Issaris85565db2007-07-19 15:38:33873 return AVERROR(ENOSYS);
David Conradb061d892007-06-04 22:10:54874 }
875
Keiji Costantini84cfce92014-03-01 16:28:15876 level = &matroska->levels[matroska->num_levels++];
877 level->start = avio_tell(pb);
David Conradb061d892007-06-04 22:10:54878 level->length = length;
879
880 return 0;
881}
882
883/*
David Conradb061d892007-06-04 22:10:54884 * Read signed/unsigned "EBML" numbers.
Diego Biurrun5968d2d2008-08-05 08:28:57885 * Return: number of bytes processed, < 0 on error
David Conradb061d892007-06-04 22:10:54886 */
Aurelien Jacobsc1e01132008-08-05 00:42:52887static int matroska_ebmlnum_uint(MatroskaDemuxContext *matroska,
888 uint8_t *data, uint32_t size, uint64_t *num)
David Conradb061d892007-06-04 22:10:54889{
Anton Khirnov471fe572011-02-20 10:04:12890 AVIOContext pb;
Anton Khirnovae993132011-02-20 10:04:13891 ffio_init_context(&pb, data, size, 0, NULL, NULL, NULL, NULL);
David Conrad465c28b2010-05-18 21:21:32892 return ebml_read_num(matroska, &pb, FFMIN(size, 8), num);
David Conradb061d892007-06-04 22:10:54893}
894
895/*
896 * Same as above, but signed.
897 */
Aurelien Jacobsc1e01132008-08-05 00:42:52898static int matroska_ebmlnum_sint(MatroskaDemuxContext *matroska,
899 uint8_t *data, uint32_t size, int64_t *num)
David Conradb061d892007-06-04 22:10:54900{
901 uint64_t unum;
902 int res;
903
904 /* read as unsigned number first */
Aurelien Jacobsc1e01132008-08-05 00:42:52905 if ((res = matroska_ebmlnum_uint(matroska, data, size, &unum)) < 0)
David Conradb061d892007-06-04 22:10:54906 return res;
907
908 /* make signed (weird way) */
Keiji Costantini84cfce92014-03-01 16:28:15909 *num = unum - ((1LL << (7 * res - 1)) - 1);
David Conradb061d892007-06-04 22:10:54910
911 return res;
912}
913
Aurelien Jacobs789ed102008-08-05 00:40:00914static int ebml_parse_elem(MatroskaDemuxContext *matroska,
Aurelien Jacobs737c40d2008-08-05 00:42:39915 EbmlSyntax *syntax, void *data);
Aurelien Jacobs789ed102008-08-05 00:40:00916
917static int ebml_parse_id(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
918 uint32_t id, void *data)
919{
920 int i;
Keiji Costantini84cfce92014-03-01 16:28:15921 for (i = 0; syntax[i].id; i++)
Aurelien Jacobs789ed102008-08-05 00:40:00922 if (id == syntax[i].id)
923 break;
Aurelien Jacobs8dbe48f2010-06-11 16:43:47924 if (!syntax[i].id && id == MATROSKA_ID_CLUSTER &&
Keiji Costantini84cfce92014-03-01 16:28:15925 matroska->num_levels > 0 &&
926 matroska->levels[matroska->num_levels - 1].length == 0xffffffffffffff)
Aurelien Jacobs8dbe48f2010-06-11 16:43:47927 return 0; // we reached the end of an unknown size cluster
Anton Khirnov5b7a88f2012-07-07 15:15:27928 if (!syntax[i].id && id != EBML_ID_VOID && id != EBML_ID_CRC32) {
Diego Biurrund92024f2014-03-10 14:35:59929 av_log(matroska->ctx, AV_LOG_INFO, "Unknown entry 0x%"PRIX32"\n", id);
Anton Khirnov5b7a88f2012-07-07 15:15:27930 if (matroska->ctx->error_recognition & AV_EF_EXPLODE)
931 return AVERROR_INVALIDDATA;
932 }
Aurelien Jacobs789ed102008-08-05 00:40:00933 return ebml_parse_elem(matroska, &syntax[i], data);
934}
935
Aurelien Jacobs66a37e02008-08-05 00:42:17936static int ebml_parse(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
937 void *data)
938{
Aurelien Jacobsc3ade622010-06-11 16:34:01939 if (!matroska->current_id) {
Aurelien Jacobs73917812010-06-11 16:45:38940 uint64_t id;
941 int res = ebml_read_num(matroska, matroska->ctx->pb, 4, &id);
942 if (res < 0)
943 return res;
Keiji Costantini84cfce92014-03-01 16:28:15944 matroska->current_id = id | 1 << 7 * res;
Aurelien Jacobsc3ade622010-06-11 16:34:01945 }
946 return ebml_parse_id(matroska, syntax, matroska->current_id, data);
Aurelien Jacobs66a37e02008-08-05 00:42:17947}
948
Aurelien Jacobs9bcb92c2008-08-05 00:42:13949static int ebml_parse_nest(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
Aurelien Jacobs6314cca2008-08-05 00:42:23950 void *data)
Aurelien Jacobs789ed102008-08-05 00:40:00951{
Aurelien Jacobsc005b3f2008-08-05 00:42:10952 int i, res = 0;
Aurelien Jacobs789ed102008-08-05 00:40:00953
Keiji Costantini84cfce92014-03-01 16:28:15954 for (i = 0; syntax[i].id; i++)
Aurelien Jacobs789ed102008-08-05 00:40:00955 switch (syntax[i].type) {
956 case EBML_UINT:
Keiji Costantini84cfce92014-03-01 16:28:15957 *(uint64_t *) ((char *) data + syntax[i].data_offset) = syntax[i].def.u;
Aurelien Jacobs789ed102008-08-05 00:40:00958 break;
959 case EBML_FLOAT:
Keiji Costantini84cfce92014-03-01 16:28:15960 *(double *) ((char *) data + syntax[i].data_offset) = syntax[i].def.f;
Aurelien Jacobs789ed102008-08-05 00:40:00961 break;
962 case EBML_STR:
963 case EBML_UTF8:
Anton Khirnov668643b2013-09-04 06:55:17964 // the default may be NULL
965 if (syntax[i].def.s) {
Keiji Costantini84cfce92014-03-01 16:28:15966 uint8_t **dst = (uint8_t **) ((uint8_t *) data + syntax[i].data_offset);
Anton Khirnov668643b2013-09-04 06:55:17967 *dst = av_strdup(syntax[i].def.s);
968 if (!*dst)
969 return AVERROR(ENOMEM);
970 }
Aurelien Jacobs789ed102008-08-05 00:40:00971 break;
972 }
973
Aurelien Jacobs6314cca2008-08-05 00:42:23974 while (!res && !ebml_level_end(matroska))
Aurelien Jacobs66a37e02008-08-05 00:42:17975 res = ebml_parse(matroska, syntax, data);
Aurelien Jacobs789ed102008-08-05 00:40:00976
977 return res;
978}
979
Aurelien Jacobs737c40d2008-08-05 00:42:39980static int ebml_parse_elem(MatroskaDemuxContext *matroska,
981 EbmlSyntax *syntax, void *data)
982{
Reimar Döffinger14d735b2011-02-06 10:32:03983 static const uint64_t max_lengths[EBML_TYPE_COUNT] = {
984 [EBML_UINT] = 8,
985 [EBML_FLOAT] = 8,
986 // max. 16 MB for strings
987 [EBML_STR] = 0x1000000,
988 [EBML_UTF8] = 0x1000000,
989 // max. 256 MB for binary data
990 [EBML_BIN] = 0x10000000,
991 // no limits for anything else
992 };
Anton Khirnov471fe572011-02-20 10:04:12993 AVIOContext *pb = matroska->ctx->pb;
Aurelien Jacobs737c40d2008-08-05 00:42:39994 uint32_t id = syntax->id;
995 uint64_t length;
996 int res;
Michael Niedermayer32805f82013-09-11 10:13:44997 void *newelem;
Aurelien Jacobs737c40d2008-08-05 00:42:39998
Keiji Costantini84cfce92014-03-01 16:28:15999 data = (char *) data + syntax->data_offset;
Aurelien Jacobs737c40d2008-08-05 00:42:391000 if (syntax->list_elem_size) {
1001 EbmlList *list = data;
Michael Niedermayerb3d9ab12014-03-07 22:46:371002 newelem = av_realloc_array(list->elem, list->nb_elem + 1, syntax->list_elem_size);
Michael Niedermayer32805f82013-09-11 10:13:441003 if (!newelem)
1004 return AVERROR(ENOMEM);
1005 list->elem = newelem;
Keiji Costantini84cfce92014-03-01 16:28:151006 data = (char *) list->elem + list->nb_elem * syntax->list_elem_size;
Aurelien Jacobs737c40d2008-08-05 00:42:391007 memset(data, 0, syntax->list_elem_size);
1008 list->nb_elem++;
1009 }
1010
Aurelien Jacobsc3ade622010-06-11 16:34:011011 if (syntax->type != EBML_PASS && syntax->type != EBML_STOP) {
1012 matroska->current_id = 0;
Reimar Döffinger1b4d3272010-09-06 17:51:441013 if ((res = ebml_read_length(matroska, pb, &length)) < 0)
Aurelien Jacobs737c40d2008-08-05 00:42:391014 return res;
Reimar Döffinger14d735b2011-02-06 10:32:031015 if (max_lengths[syntax->type] && length > max_lengths[syntax->type]) {
1016 av_log(matroska->ctx, AV_LOG_ERROR,
1017 "Invalid length 0x%"PRIx64" > 0x%"PRIx64" for syntax element %i\n",
1018 length, max_lengths[syntax->type], syntax->type);
1019 return AVERROR_INVALIDDATA;
1020 }
Aurelien Jacobsc3ade622010-06-11 16:34:011021 }
Aurelien Jacobs737c40d2008-08-05 00:42:391022
1023 switch (syntax->type) {
Keiji Costantini84cfce92014-03-01 16:28:151024 case EBML_UINT:
1025 res = ebml_read_uint(pb, length, data);
1026 break;
Michael Niedermayerb3d9ab12014-03-07 22:46:371027 case EBML_SINT:
1028 res = ebml_read_sint(pb, length, data);
1029 break;
Keiji Costantini84cfce92014-03-01 16:28:151030 case EBML_FLOAT:
1031 res = ebml_read_float(pb, length, data);
1032 break;
Aurelien Jacobs737c40d2008-08-05 00:42:391033 case EBML_STR:
Keiji Costantini84cfce92014-03-01 16:28:151034 case EBML_UTF8:
1035 res = ebml_read_ascii(pb, length, data);
1036 break;
1037 case EBML_BIN:
1038 res = ebml_read_binary(pb, length, data);
1039 break;
1040 case EBML_NEST:
1041 if ((res = ebml_read_master(matroska, length)) < 0)
1042 return res;
1043 if (id == MATROSKA_ID_SEGMENT)
1044 matroska->segment_start = avio_tell(matroska->ctx->pb);
1045 return ebml_parse_nest(matroska, syntax->def.n, data);
1046 case EBML_PASS:
1047 return ebml_parse_id(matroska, syntax->def.n, id, data);
1048 case EBML_STOP:
1049 return 1;
Michael Niedermayer668c8732012-08-04 00:27:511050 default:
Michael Niedermayerb3d9ab12014-03-07 22:46:371051 if (ffio_limit(pb, length) != length)
Michael Niedermayer668c8732012-08-04 00:27:511052 return AVERROR(EIO);
Keiji Costantini84cfce92014-03-01 16:28:151053 return avio_skip(pb, length) < 0 ? AVERROR(EIO) : 0;
Aurelien Jacobs737c40d2008-08-05 00:42:391054 }
1055 if (res == AVERROR_INVALIDDATA)
1056 av_log(matroska->ctx, AV_LOG_ERROR, "Invalid element\n");
1057 else if (res == AVERROR(EIO))
1058 av_log(matroska->ctx, AV_LOG_ERROR, "Read error\n");
1059 return res;
1060}
1061
Aurelien Jacobs789ed102008-08-05 00:40:001062static void ebml_free(EbmlSyntax *syntax, void *data)
1063{
1064 int i, j;
Keiji Costantini84cfce92014-03-01 16:28:151065 for (i = 0; syntax[i].id; i++) {
1066 void *data_off = (char *) data + syntax[i].data_offset;
Aurelien Jacobs789ed102008-08-05 00:40:001067 switch (syntax[i].type) {
1068 case EBML_STR:
Keiji Costantini84cfce92014-03-01 16:28:151069 case EBML_UTF8:
1070 av_freep(data_off);
1071 break;
1072 case EBML_BIN:
1073 av_freep(&((EbmlBin *) data_off)->data);
1074 break;
Aurelien Jacobs789ed102008-08-05 00:40:001075 case EBML_NEST:
1076 if (syntax[i].list_elem_size) {
1077 EbmlList *list = data_off;
1078 char *ptr = list->elem;
Keiji Costantini84cfce92014-03-01 16:28:151079 for (j = 0; j < list->nb_elem;
1080 j++, ptr += syntax[i].list_elem_size)
Aurelien Jacobs789ed102008-08-05 00:40:001081 ebml_free(syntax[i].def.n, ptr);
1082 av_free(list->elem);
1083 } else
1084 ebml_free(syntax[i].def.n, data_off);
Keiji Costantini84cfce92014-03-01 16:28:151085 default:
1086 break;
Aurelien Jacobs789ed102008-08-05 00:40:001087 }
1088 }
1089}
1090
Aurelien Jacobs737c40d2008-08-05 00:42:391091/*
1092 * Autodetecting...
1093 */
1094static int matroska_probe(AVProbeData *p)
1095{
1096 uint64_t total = 0;
James Zern470491f2010-05-22 01:41:321097 int len_mask = 0x80, size = 1, n = 1, i;
Aurelien Jacobs737c40d2008-08-05 00:42:391098
Diego Biurrun5968d2d2008-08-05 08:28:571099 /* EBML header? */
Aurelien Jacobs737c40d2008-08-05 00:42:391100 if (AV_RB32(p->buf) != EBML_ID_HEADER)
1101 return 0;
1102
1103 /* length of header */
1104 total = p->buf[4];
1105 while (size <= 8 && !(total & len_mask)) {
1106 size++;
1107 len_mask >>= 1;
1108 }
1109 if (size > 8)
Keiji Costantini84cfce92014-03-01 16:28:151110 return 0;
Aurelien Jacobs737c40d2008-08-05 00:42:391111 total &= (len_mask - 1);
1112 while (n < size)
1113 total = (total << 8) | p->buf[4 + n++];
1114
Diego Biurrun5968d2d2008-08-05 08:28:571115 /* Does the probe data contain the whole header? */
Aurelien Jacobs737c40d2008-08-05 00:42:391116 if (p->buf_size < 4 + size + total)
Keiji Costantini84cfce92014-03-01 16:28:151117 return 0;
Aurelien Jacobs737c40d2008-08-05 00:42:391118
James Zern470491f2010-05-22 01:41:321119 /* The header should contain a known document type. For now,
Aurelien Jacobs737c40d2008-08-05 00:42:391120 * we don't parse the whole header but simply check for the
1121 * availability of that array of characters inside the header.
1122 * Not fully fool-proof, but good enough. */
James Zern470491f2010-05-22 01:41:321123 for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++) {
1124 int probelen = strlen(matroska_doctypes[i]);
Chris Evans69619a12011-07-20 00:51:481125 if (total < probelen)
1126 continue;
Keiji Costantini84cfce92014-03-01 16:28:151127 for (n = 4 + size; n <= 4 + size + total - probelen; n++)
1128 if (!memcmp(p->buf + n, matroska_doctypes[i], probelen))
James Zern470491f2010-05-22 01:41:321129 return AVPROBE_SCORE_MAX;
1130 }
Aurelien Jacobs737c40d2008-08-05 00:42:391131
David Conradc7b913c2010-05-22 01:41:351132 // probably valid EBML header but no recognized doctype
Diego Biurrune0f8be62013-03-25 15:12:511133 return AVPROBE_SCORE_EXTENSION;
Aurelien Jacobs737c40d2008-08-05 00:42:391134}
1135
1136static MatroskaTrack *matroska_find_track_by_num(MatroskaDemuxContext *matroska,
1137 int num)
1138{
1139 MatroskaTrack *tracks = matroska->tracks.elem;
1140 int i;
1141
Keiji Costantini84cfce92014-03-01 16:28:151142 for (i = 0; i < matroska->tracks.nb_elem; i++)
Aurelien Jacobs737c40d2008-08-05 00:42:391143 if (tracks[i].num == num)
1144 return &tracks[i];
1145
1146 av_log(matroska->ctx, AV_LOG_ERROR, "Invalid track number %d\n", num);
1147 return NULL;
1148}
1149
Keiji Costantini84cfce92014-03-01 16:28:151150static int matroska_decode_buffer(uint8_t **buf, int *buf_size,
Aurelien Jacobsf7b96872008-08-05 00:42:051151 MatroskaTrack *track)
Evgeniy Stepanov935ec5a2008-06-22 15:49:441152{
Aurelien Jacobs2cbc8812008-08-05 00:40:311153 MatroskaTrackEncoding *encodings = track->encodings.elem;
Keiji Costantini84cfce92014-03-01 16:28:151154 uint8_t *data = *buf;
Evgeniy Stepanov935ec5a2008-06-22 15:49:441155 int isize = *buf_size;
Keiji Costantini84cfce92014-03-01 16:28:151156 uint8_t *pkt_data = NULL;
Diego Biurrun529506b2012-02-12 09:58:461157 uint8_t av_unused *newpktdata;
Evgeniy Stepanov935ec5a2008-06-22 15:49:441158 int pkt_size = isize;
1159 int result = 0;
1160 int olen;
1161
Michael Niedermayer4b7c5232012-06-14 23:29:301162 if (pkt_size >= 10000000U)
Luca Barbatoc9a39ce2012-09-14 18:03:371163 return AVERROR_INVALIDDATA;
Aurelien Jacobs4f906882010-08-17 14:05:231164
Aurelien Jacobs2cbc8812008-08-05 00:40:311165 switch (encodings[0].compression.algo) {
Keiji Costantini84cfce92014-03-01 16:28:151166 case MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP:
1167 {
Luca Barbato8d4dd552012-09-14 16:51:491168 int header_size = encodings[0].compression.settings.size;
1169 uint8_t *header = encodings[0].compression.settings.data;
1170
Michael Niedermayer1df2e3c2012-09-20 11:30:441171 if (header_size && !header) {
Michael Niedermayer0efcf162012-11-23 17:10:021172 av_log(NULL, AV_LOG_ERROR, "Compression size but no data in headerstrip\n");
Michael Niedermayer26776972012-04-17 15:12:221173 return -1;
1174 }
Michael Niedermayer1df2e3c2012-09-20 11:30:441175
Luca Barbato8d4dd552012-09-14 16:51:491176 if (!header_size)
1177 return 0;
1178
1179 pkt_size = isize + header_size;
1180 pkt_data = av_malloc(pkt_size);
1181 if (!pkt_data)
1182 return AVERROR(ENOMEM);
1183
1184 memcpy(pkt_data, header, header_size);
1185 memcpy(pkt_data + header_size, data, isize);
1186 break;
1187 }
Diego Biurrun2a91ada2012-10-18 17:48:271188#if CONFIG_LZO
Evgeniy Stepanov935ec5a2008-06-22 15:49:441189 case MATROSKA_TRACK_ENCODING_COMP_LZO:
1190 do {
Keiji Costantini84cfce92014-03-01 16:28:151191 olen = pkt_size *= 3;
Luca Barbato581281e2012-09-14 16:39:581192 newpktdata = av_realloc(pkt_data, pkt_size + AV_LZO_OUTPUT_PADDING);
1193 if (!newpktdata) {
Luca Barbatoc9a39ce2012-09-14 18:03:371194 result = AVERROR(ENOMEM);
Luca Barbato581281e2012-09-14 16:39:581195 goto failed;
1196 }
1197 pkt_data = newpktdata;
Keiji Costantini84cfce92014-03-01 16:28:151198 result = av_lzo1x_decode(pkt_data, &olen, data, &isize);
1199 } while (result == AV_LZO_OUTPUT_FULL && pkt_size < 10000000);
Luca Barbatoc9a39ce2012-09-14 18:03:371200 if (result) {
1201 result = AVERROR_INVALIDDATA;
Evgeniy Stepanov935ec5a2008-06-22 15:49:441202 goto failed;
Luca Barbatoc9a39ce2012-09-14 18:03:371203 }
Evgeniy Stepanov935ec5a2008-06-22 15:49:441204 pkt_size -= olen;
1205 break;
Diego Biurrun2a91ada2012-10-18 17:48:271206#endif
Aurelien Jacobsb250f9c2009-01-13 23:44:161207#if CONFIG_ZLIB
Keiji Costantini84cfce92014-03-01 16:28:151208 case MATROSKA_TRACK_ENCODING_COMP_ZLIB:
1209 {
1210 z_stream zstream = { 0 };
Evgeniy Stepanov935ec5a2008-06-22 15:49:441211 if (inflateInit(&zstream) != Z_OK)
1212 return -1;
Keiji Costantini84cfce92014-03-01 16:28:151213 zstream.next_in = data;
Evgeniy Stepanov935ec5a2008-06-22 15:49:441214 zstream.avail_in = isize;
1215 do {
Keiji Costantini84cfce92014-03-01 16:28:151216 pkt_size *= 3;
Michael Niedermayer77d2ef12011-07-28 12:59:541217 newpktdata = av_realloc(pkt_data, pkt_size);
1218 if (!newpktdata) {
1219 inflateEnd(&zstream);
1220 goto failed;
1221 }
Keiji Costantini84cfce92014-03-01 16:28:151222 pkt_data = newpktdata;
Evgeniy Stepanov935ec5a2008-06-22 15:49:441223 zstream.avail_out = pkt_size - zstream.total_out;
Keiji Costantini84cfce92014-03-01 16:28:151224 zstream.next_out = pkt_data + zstream.total_out;
Michael Niedermayer956c9012011-07-28 12:59:541225 if (pkt_data) {
1226 result = inflate(&zstream, Z_NO_FLUSH);
1227 } else
1228 result = Z_MEM_ERROR;
Keiji Costantini84cfce92014-03-01 16:28:151229 } while (result == Z_OK && pkt_size < 10000000);
Evgeniy Stepanov935ec5a2008-06-22 15:49:441230 pkt_size = zstream.total_out;
1231 inflateEnd(&zstream);
Luca Barbatoc9a39ce2012-09-14 18:03:371232 if (result != Z_STREAM_END) {
1233 if (result == Z_MEM_ERROR)
1234 result = AVERROR(ENOMEM);
1235 else
1236 result = AVERROR_INVALIDDATA;
Evgeniy Stepanov935ec5a2008-06-22 15:49:441237 goto failed;
Luca Barbatoc9a39ce2012-09-14 18:03:371238 }
Evgeniy Stepanov935ec5a2008-06-22 15:49:441239 break;
1240 }
1241#endif
Aurelien Jacobsb250f9c2009-01-13 23:44:161242#if CONFIG_BZLIB
Keiji Costantini84cfce92014-03-01 16:28:151243 case MATROSKA_TRACK_ENCODING_COMP_BZLIB:
1244 {
1245 bz_stream bzstream = { 0 };
Evgeniy Stepanov935ec5a2008-06-22 15:49:441246 if (BZ2_bzDecompressInit(&bzstream, 0, 0) != BZ_OK)
1247 return -1;
Keiji Costantini84cfce92014-03-01 16:28:151248 bzstream.next_in = data;
Evgeniy Stepanov935ec5a2008-06-22 15:49:441249 bzstream.avail_in = isize;
1250 do {
Keiji Costantini84cfce92014-03-01 16:28:151251 pkt_size *= 3;
Michael Niedermayer77d2ef12011-07-28 12:59:541252 newpktdata = av_realloc(pkt_data, pkt_size);
1253 if (!newpktdata) {
1254 BZ2_bzDecompressEnd(&bzstream);
1255 goto failed;
1256 }
Keiji Costantini84cfce92014-03-01 16:28:151257 pkt_data = newpktdata;
Evgeniy Stepanov935ec5a2008-06-22 15:49:441258 bzstream.avail_out = pkt_size - bzstream.total_out_lo32;
Keiji Costantini84cfce92014-03-01 16:28:151259 bzstream.next_out = pkt_data + bzstream.total_out_lo32;
Michael Niedermayer956c9012011-07-28 12:59:541260 if (pkt_data) {
1261 result = BZ2_bzDecompress(&bzstream);
1262 } else
1263 result = BZ_MEM_ERROR;
Keiji Costantini84cfce92014-03-01 16:28:151264 } while (result == BZ_OK && pkt_size < 10000000);
Evgeniy Stepanov935ec5a2008-06-22 15:49:441265 pkt_size = bzstream.total_out_lo32;
1266 BZ2_bzDecompressEnd(&bzstream);
Luca Barbatoc9a39ce2012-09-14 18:03:371267 if (result != BZ_STREAM_END) {
1268 if (result == BZ_MEM_ERROR)
1269 result = AVERROR(ENOMEM);
1270 else
1271 result = AVERROR_INVALIDDATA;
Evgeniy Stepanov935ec5a2008-06-22 15:49:441272 goto failed;
Luca Barbatoc9a39ce2012-09-14 18:03:371273 }
Evgeniy Stepanov935ec5a2008-06-22 15:49:441274 break;
1275 }
1276#endif
Aurelien Jacobs28f27e02008-08-20 23:08:071277 default:
Luca Barbatoc9a39ce2012-09-14 18:03:371278 return AVERROR_INVALIDDATA;
Evgeniy Stepanov935ec5a2008-06-22 15:49:441279 }
1280
Keiji Costantini84cfce92014-03-01 16:28:151281 *buf = pkt_data;
Evgeniy Stepanov935ec5a2008-06-22 15:49:441282 *buf_size = pkt_size;
1283 return 0;
Keiji Costantini84cfce92014-03-01 16:28:151284
1285failed:
Evgeniy Stepanov935ec5a2008-06-22 15:49:441286 av_free(pkt_data);
Luca Barbatoc9a39ce2012-09-14 18:03:371287 return result;
Evgeniy Stepanov935ec5a2008-06-22 15:49:441288}
1289
Aurelien Jacobs929e9de2009-02-15 15:53:551290static void matroska_convert_tag(AVFormatContext *s, EbmlList *list,
Anton Khirnovd2d67e42011-05-22 10:46:291291 AVDictionary **metadata, char *prefix)
Aurelien Jacobs44015c52008-08-08 23:50:381292{
1293 MatroskaTag *tags = list->elem;
Aurelien Jacobs929e9de2009-02-15 15:53:551294 char key[1024];
1295 int i;
Aurelien Jacobs44015c52008-08-08 23:50:381296
Keiji Costantini84cfce92014-03-01 16:28:151297 for (i = 0; i < list->nb_elem; i++) {
1298 const char *lang = tags[i].lang &&
1299 strcmp(tags[i].lang, "und") ? tags[i].lang : NULL;
Anton Khirnovbf800c72010-11-03 06:29:041300
1301 if (!tags[i].name) {
1302 av_log(s, AV_LOG_WARNING, "Skipping invalid tag with no TagName.\n");
1303 continue;
1304 }
Keiji Costantini84cfce92014-03-01 16:28:151305 if (prefix)
1306 snprintf(key, sizeof(key), "%s/%s", prefix, tags[i].name);
1307 else
1308 av_strlcpy(key, tags[i].name, sizeof(key));
Aurelien Jacobsf702df32009-02-15 16:05:371309 if (tags[i].def || !lang) {
Keiji Costantini84cfce92014-03-01 16:28:151310 av_dict_set(metadata, key, tags[i].string, 0);
1311 if (tags[i].sub.nb_elem)
1312 matroska_convert_tag(s, &tags[i].sub, metadata, key);
Aurelien Jacobsf702df32009-02-15 16:05:371313 }
1314 if (lang) {
1315 av_strlcat(key, "-", sizeof(key));
1316 av_strlcat(key, lang, sizeof(key));
Anton Khirnovd2d67e42011-05-22 10:46:291317 av_dict_set(metadata, key, tags[i].string, 0);
Aurelien Jacobsf702df32009-02-15 16:05:371318 if (tags[i].sub.nb_elem)
1319 matroska_convert_tag(s, &tags[i].sub, metadata, key);
1320 }
Aurelien Jacobs929e9de2009-02-15 15:53:551321 }
Anton Khirnovad7768f2010-10-16 13:20:411322 ff_metadata_conv(metadata, NULL, ff_mkv_metadata_conv);
Aurelien Jacobs929e9de2009-02-15 15:53:551323}
1324
1325static void matroska_convert_tags(AVFormatContext *s)
1326{
1327 MatroskaDemuxContext *matroska = s->priv_data;
1328 MatroskaTags *tags = matroska->tags.elem;
1329 int i, j;
1330
Keiji Costantini84cfce92014-03-01 16:28:151331 for (i = 0; i < matroska->tags.nb_elem; i++) {
Aurelien Jacobs929e9de2009-02-15 15:53:551332 if (tags[i].target.attachuid) {
Diego Biurrunf69befe2014-03-07 12:54:181333 MatroskaAttachment *attachment = matroska->attachments.elem;
Keiji Costantini84cfce92014-03-01 16:28:151334 for (j = 0; j < matroska->attachments.nb_elem; j++)
1335 if (attachment[j].uid == tags[i].target.attachuid &&
1336 attachment[j].stream)
Aurelien Jacobs929e9de2009-02-15 15:53:551337 matroska_convert_tag(s, &tags[i].tag,
1338 &attachment[j].stream->metadata, NULL);
1339 } else if (tags[i].target.chapteruid) {
1340 MatroskaChapter *chapter = matroska->chapters.elem;
Keiji Costantini84cfce92014-03-01 16:28:151341 for (j = 0; j < matroska->chapters.nb_elem; j++)
1342 if (chapter[j].uid == tags[i].target.chapteruid &&
1343 chapter[j].chapter)
Aurelien Jacobs929e9de2009-02-15 15:53:551344 matroska_convert_tag(s, &tags[i].tag,
1345 &chapter[j].chapter->metadata, NULL);
1346 } else if (tags[i].target.trackuid) {
1347 MatroskaTrack *track = matroska->tracks.elem;
Keiji Costantini84cfce92014-03-01 16:28:151348 for (j = 0; j < matroska->tracks.nb_elem; j++)
Aurelien Jacobs2851b1f2011-03-23 23:28:191349 if (track[j].uid == tags[i].target.trackuid && track[j].stream)
Aurelien Jacobs929e9de2009-02-15 15:53:551350 matroska_convert_tag(s, &tags[i].tag,
1351 &track[j].stream->metadata, NULL);
1352 } else {
Aurelien Jacobs4f909c72009-06-13 22:29:381353 matroska_convert_tag(s, &tags[i].tag, &s->metadata,
1354 tags[i].target.type);
Aurelien Jacobs929e9de2009-02-15 15:53:551355 }
Aurelien Jacobs44015c52008-08-08 23:50:381356 }
1357}
1358
Keiji Costantini84cfce92014-03-01 16:28:151359static int matroska_parse_seekhead_entry(MatroskaDemuxContext *matroska,
1360 int idx)
Aurelien Jacobs13b350a2008-08-05 00:40:361361{
1362 EbmlList *seekhead_list = &matroska->seekhead;
Keiji Costantini84cfce92014-03-01 16:28:151363 uint32_t level_up = matroska->level_up;
1364 uint32_t saved_id = matroska->current_id;
Aurelien Jacobs13b350a2008-08-05 00:40:361365 MatroskaSeekhead *seekhead = seekhead_list->elem;
Anton Khirnov384c9c22011-03-03 19:11:451366 int64_t before_pos = avio_tell(matroska->ctx->pb);
Aurelien Jacobs13b350a2008-08-05 00:40:361367 MatroskaLevel level;
Aaron Colwell31ad14c2011-07-09 05:48:431368 int64_t offset;
1369 int ret = 0;
David Conradb061d892007-06-04 22:10:541370
Keiji Costantini84cfce92014-03-01 16:28:151371 if (idx >= seekhead_list->nb_elem ||
1372 seekhead[idx].id == MATROSKA_ID_SEEKHEAD ||
1373 seekhead[idx].id == MATROSKA_ID_CLUSTER)
Aaron Colwell31ad14c2011-07-09 05:48:431374 return 0;
David Conradb061d892007-06-04 22:10:541375
Anton Khirnovf47ac3c2011-07-09 06:11:301376 /* seek */
Aaron Colwell31ad14c2011-07-09 05:48:431377 offset = seekhead[idx].pos + matroska->segment_start;
1378 if (avio_seek(matroska->ctx->pb, offset, SEEK_SET) == offset) {
Diego Biurrun5968d2d2008-08-05 08:28:571379 /* We don't want to lose our seekhead level, so we add
Aurelien Jacobs43485712008-08-05 00:40:431380 * a dummy. This is a crude hack. */
1381 if (matroska->num_levels == EBML_MAX_DEPTH) {
1382 av_log(matroska->ctx, AV_LOG_INFO,
1383 "Max EBML element depth (%d) reached, "
1384 "cannot parse further.\n", EBML_MAX_DEPTH);
Aaron Colwell31ad14c2011-07-09 05:48:431385 ret = AVERROR_INVALIDDATA;
1386 } else {
Keiji Costantini84cfce92014-03-01 16:28:151387 level.start = 0;
1388 level.length = (uint64_t) -1;
Anton Khirnovf47ac3c2011-07-09 06:11:301389 matroska->levels[matroska->num_levels] = level;
1390 matroska->num_levels++;
Keiji Costantini84cfce92014-03-01 16:28:151391 matroska->current_id = 0;
David Conradb061d892007-06-04 22:10:541392
Dustin Brody4a9628f2011-09-08 22:43:321393 ret = ebml_parse(matroska, matroska_segment, matroska);
David Conradb061d892007-06-04 22:10:541394
Anton Khirnovf47ac3c2011-07-09 06:11:301395 /* remove dummy level */
1396 while (matroska->num_levels) {
1397 uint64_t length = matroska->levels[--matroska->num_levels].length;
Keiji Costantini84cfce92014-03-01 16:28:151398 if (length == (uint64_t) -1)
Anton Khirnovf47ac3c2011-07-09 06:11:301399 break;
1400 }
Aurelien Jacobs43485712008-08-05 00:40:431401 }
David Conradb061d892007-06-04 22:10:541402 }
Aurelien Jacobs43485712008-08-05 00:40:431403 /* seek back */
Anton Khirnov6b4aa5d2011-02-28 13:57:541404 avio_seek(matroska->ctx->pb, before_pos, SEEK_SET);
Keiji Costantini84cfce92014-03-01 16:28:151405 matroska->level_up = level_up;
Aurelien Jacobsc3ade622010-06-11 16:34:011406 matroska->current_id = saved_id;
Aaron Colwell31ad14c2011-07-09 05:48:431407
1408 return ret;
1409}
1410
1411static void matroska_execute_seekhead(MatroskaDemuxContext *matroska)
1412{
1413 EbmlList *seekhead_list = &matroska->seekhead;
Aaron Colwell31ad14c2011-07-09 05:48:431414 int64_t before_pos = avio_tell(matroska->ctx->pb);
Aurelien Jacobsf06a4882008-08-05 00:41:011415 int i;
David Conradb061d892007-06-04 22:10:541416
Reimar Döffinger120a0832010-06-08 19:31:081417 // we should not do any seeking in the streaming case
Anton Khirnov8978fed2011-03-05 20:06:461418 if (!matroska->ctx->pb->seekable ||
Reimar Döffinger120a0832010-06-08 19:31:081419 (matroska->ctx->flags & AVFMT_FLAG_IGNIDX))
1420 return;
1421
Aaron Colwell31ad14c2011-07-09 05:48:431422 for (i = 0; i < seekhead_list->nb_elem; i++) {
Chris Evansf35e0372012-01-04 15:33:341423 MatroskaSeekhead *seekhead = seekhead_list->elem;
Aaron Colwell31ad14c2011-07-09 05:48:431424 if (seekhead[i].pos <= before_pos)
Aurelien Jacobs13b350a2008-08-05 00:40:361425 continue;
David Conradb061d892007-06-04 22:10:541426
Aaron Colwell31ad14c2011-07-09 05:48:431427 // defer cues parsing until we actually need cue data.
1428 if (seekhead[i].id == MATROSKA_ID_CUES) {
1429 matroska->cues_parsing_deferred = 1;
Aurelien Jacobs43485712008-08-05 00:40:431430 continue;
Aurelien Jacobs43485712008-08-05 00:40:431431 }
David Conradb061d892007-06-04 22:10:541432
Reimar Döffinger47e015e2012-02-12 13:09:031433 if (matroska_parse_seekhead_entry(matroska, i) < 0) {
1434 // mark index as broken
1435 matroska->cues_parsing_deferred = -1;
Aaron Colwell31ad14c2011-07-09 05:48:431436 break;
Reimar Döffinger47e015e2012-02-12 13:09:031437 }
Aaron Colwell31ad14c2011-07-09 05:48:431438 }
1439}
David Conradb061d892007-06-04 22:10:541440
Michael Niedermayerb3d9ab12014-03-07 22:46:371441static void matroska_add_index_entries(MatroskaDemuxContext *matroska)
Keiji Costantini84cfce92014-03-01 16:28:151442{
Aaron Colwell31ad14c2011-07-09 05:48:431443 EbmlList *index_list;
1444 MatroskaIndex *index;
1445 int index_scale = 1;
1446 int i, j;
David Conradb061d892007-06-04 22:10:541447
Aaron Colwell31ad14c2011-07-09 05:48:431448 index_list = &matroska->index;
Keiji Costantini84cfce92014-03-01 16:28:151449 index = index_list->elem;
1450 if (index_list->nb_elem &&
1451 index[0].time > 1E14 / matroska->time_scale) {
Aaron Colwell31ad14c2011-07-09 05:48:431452 av_log(matroska->ctx, AV_LOG_WARNING, "Working around broken index.\n");
1453 index_scale = matroska->time_scale;
1454 }
1455 for (i = 0; i < index_list->nb_elem; i++) {
Keiji Costantini84cfce92014-03-01 16:28:151456 EbmlList *pos_list = &index[i].pos;
Aaron Colwell31ad14c2011-07-09 05:48:431457 MatroskaIndexPos *pos = pos_list->elem;
1458 for (j = 0; j < pos_list->nb_elem; j++) {
Keiji Costantini84cfce92014-03-01 16:28:151459 MatroskaTrack *track = matroska_find_track_by_num(matroska,
1460 pos[j].track);
Aaron Colwell31ad14c2011-07-09 05:48:431461 if (track && track->stream)
1462 av_add_index_entry(track->stream,
1463 pos[j].pos + matroska->segment_start,
Keiji Costantini84cfce92014-03-01 16:28:151464 index[i].time / index_scale, 0, 0,
Aaron Colwell31ad14c2011-07-09 05:48:431465 AVINDEX_KEYFRAME);
Aurelien Jacobs43485712008-08-05 00:40:431466 }
David Conradb061d892007-06-04 22:10:541467 }
David Conradb061d892007-06-04 22:10:541468}
1469
Aaron Colwell6c4cc0f2011-09-22 14:51:001470static void matroska_parse_cues(MatroskaDemuxContext *matroska) {
1471 EbmlList *seekhead_list = &matroska->seekhead;
1472 MatroskaSeekhead *seekhead = seekhead_list->elem;
1473 int i;
1474
1475 for (i = 0; i < seekhead_list->nb_elem; i++)
1476 if (seekhead[i].id == MATROSKA_ID_CUES)
1477 break;
Michael Niedermayerac75e0c2013-03-22 17:04:171478 av_assert1(i <= seekhead_list->nb_elem);
Aaron Colwell6c4cc0f2011-09-22 14:51:001479
Reimar Döffinger47e015e2012-02-12 13:09:031480 if (matroska_parse_seekhead_entry(matroska, i) < 0)
1481 matroska->cues_parsing_deferred = -1;
Aaron Colwell6c4cc0f2011-09-22 14:51:001482 matroska_add_index_entries(matroska);
1483}
1484
Aurelien Jacobsf7b96872008-08-05 00:42:051485static int matroska_aac_profile(char *codec_id)
David Conradb061d892007-06-04 22:10:541486{
Keiji Costantini84cfce92014-03-01 16:28:151487 static const char *const aac_profiles[] = { "MAIN", "LC", "SSR" };
David Conradb061d892007-06-04 22:10:541488 int profile;
1489
Keiji Costantini84cfce92014-03-01 16:28:151490 for (profile = 0; profile < FF_ARRAY_ELEMS(aac_profiles); profile++)
David Conradb061d892007-06-04 22:10:541491 if (strstr(codec_id, aac_profiles[profile]))
1492 break;
1493 return profile + 1;
1494}
1495
Aurelien Jacobsf7b96872008-08-05 00:42:051496static int matroska_aac_sri(int samplerate)
David Conradb061d892007-06-04 22:10:541497{
David Conradb061d892007-06-04 22:10:541498 int sri;
1499
Keiji Costantini84cfce92014-03-01 16:28:151500 for (sri = 0; sri < FF_ARRAY_ELEMS(avpriv_mpeg4audio_sample_rates); sri++)
Anton Khirnov59a9a232011-10-17 07:28:531501 if (avpriv_mpeg4audio_sample_rates[sri] == samplerate)
David Conradb061d892007-06-04 22:10:541502 break;
1503 return sri;
1504}
1505
Aaron Colwell2e061132012-03-05 18:02:481506static void matroska_metadata_creation_time(AVDictionary **metadata, int64_t date_utc)
1507{
1508 char buffer[32];
1509 /* Convert to seconds and adjust by number of seconds between 2001-01-01 and Epoch */
1510 time_t creation_time = date_utc / 1000000000 + 978307200;
Michael Niedermayera52cb422014-11-02 18:19:071511 struct tm tmpbuf, *ptm = gmtime_r(&creation_time, &tmpbuf);
Aaron Colwell2e061132012-03-05 18:02:481512 if (!ptm) return;
Michael Niedermayerf0390632014-10-26 14:51:581513 if (strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", ptm))
1514 av_dict_set(metadata, "creation_time", buffer, 0);
Aaron Colwell2e061132012-03-05 18:02:481515}
1516
Anton Khirnov4efdadc2014-05-25 12:05:511517static int matroska_parse_flac(AVFormatContext *s,
1518 MatroskaTrack *track,
1519 int *offset)
1520{
Anton Khirnov23f741f2014-05-26 10:48:561521 AVStream *st = track->stream;
Anton Khirnov4efdadc2014-05-25 12:05:511522 uint8_t *p = track->codec_priv.data;
1523 int size = track->codec_priv.size;
1524
1525 if (size < 8 + FLAC_STREAMINFO_SIZE || p[4] & 0x7f) {
1526 av_log(s, AV_LOG_WARNING, "Invalid FLAC private data\n");
1527 track->codec_priv.size = 0;
1528 return 0;
1529 }
1530 *offset = 8;
1531 track->codec_priv.size = 8 + FLAC_STREAMINFO_SIZE;
1532
Anton Khirnov23f741f2014-05-26 10:48:561533 p += track->codec_priv.size;
1534 size -= track->codec_priv.size;
1535
1536 /* parse the remaining metadata blocks if present */
1537 while (size >= 4) {
1538 int block_last, block_type, block_size;
1539
1540 flac_parse_block_header(p, &block_last, &block_type, &block_size);
1541
1542 p += 4;
1543 size -= 4;
1544 if (block_size > size)
1545 return 0;
1546
1547 /* check for the channel mask */
1548 if (block_type == FLAC_METADATA_TYPE_VORBIS_COMMENT) {
1549 AVDictionary *dict = NULL;
1550 AVDictionaryEntry *chmask;
1551
1552 ff_vorbis_comment(s, &dict, p, block_size, 0);
1553 chmask = av_dict_get(dict, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", NULL, 0);
1554 if (chmask) {
1555 uint64_t mask = strtol(chmask->value, NULL, 0);
1556 if (!mask || mask & ~0x3ffffULL) {
1557 av_log(s, AV_LOG_WARNING,
1558 "Invalid value of WAVEFORMATEXTENSIBLE_CHANNEL_MASK\n");
1559 } else
1560 st->codec->channel_layout = mask;
1561 }
1562 av_dict_free(&dict);
1563 }
1564
1565 p += block_size;
1566 size -= block_size;
1567 }
1568
Anton Khirnov4efdadc2014-05-25 12:05:511569 return 0;
1570}
1571
Anton Khirnov6df478b2014-05-25 07:07:321572static int matroska_parse_tracks(AVFormatContext *s)
David Conradb061d892007-06-04 22:10:541573{
1574 MatroskaDemuxContext *matroska = s->priv_data;
Anton Khirnov6df478b2014-05-25 07:07:321575 MatroskaTrack *tracks = matroska->tracks.elem;
Aurelien Jacobs9a9a3b02008-08-05 00:40:491576 AVStream *st;
Anton Khirnov4efdadc2014-05-25 12:05:511577 int i, j, ret;
Michael Niedermayer69de2292014-05-28 10:41:351578 int k;
David Conradb061d892007-06-04 22:10:541579
Keiji Costantini84cfce92014-03-01 16:28:151580 for (i = 0; i < matroska->tracks.nb_elem; i++) {
Aurelien Jacobsd88d8062008-08-05 00:40:521581 MatroskaTrack *track = &tracks[i];
Anton Khirnov36ef5362012-08-05 09:11:041582 enum AVCodecID codec_id = AV_CODEC_ID_NONE;
Aurelien Jacobsdc6c36c2011-08-17 22:21:211583 EbmlList *encodings_list = &track->encodings;
Aurelien Jacobs9c25baf2008-08-05 00:40:551584 MatroskaTrackEncoding *encodings = encodings_list->elem;
Aurelien Jacobsd88d8062008-08-05 00:40:521585 uint8_t *extradata = NULL;
1586 int extradata_size = 0;
1587 int extradata_offset = 0;
Aurelien Jacobs5fec3a22011-06-13 23:58:111588 uint32_t fourcc = 0;
Anton Khirnov471fe572011-02-20 10:04:121589 AVIOContext b;
Frank Galliganb8531032013-03-07 16:11:381590 char* key_id_base64 = NULL;
Carl Eugen Hoyos96fc2902014-02-25 23:02:511591 int bit_depth = -1;
David Conradb061d892007-06-04 22:10:541592
Aurelien Jacobsd88d8062008-08-05 00:40:521593 /* Apply some sanity checks. */
Aurelien Jacobs9c25baf2008-08-05 00:40:551594 if (track->type != MATROSKA_TRACK_TYPE_VIDEO &&
1595 track->type != MATROSKA_TRACK_TYPE_AUDIO &&
Matthew Heaney818ebe92013-08-08 22:40:031596 track->type != MATROSKA_TRACK_TYPE_SUBTITLE &&
1597 track->type != MATROSKA_TRACK_TYPE_METADATA) {
Aurelien Jacobs9c25baf2008-08-05 00:40:551598 av_log(matroska->ctx, AV_LOG_INFO,
1599 "Unknown or unsupported track type %"PRIu64"\n",
1600 track->type);
1601 continue;
1602 }
Gabriel Dumef929ab02014-08-14 20:31:241603 if (!track->codec_id)
Aurelien Jacobsd88d8062008-08-05 00:40:521604 continue;
David Conradb061d892007-06-04 22:10:541605
Aurelien Jacobs9c25baf2008-08-05 00:40:551606 if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
Mans Rullgard3c583002012-04-18 12:48:201607 if (!track->default_duration && track->video.frame_rate > 0)
Keiji Costantini84cfce92014-03-01 16:28:151608 track->default_duration = 1000000000 / track->video.frame_rate;
Michael Niedermayerf51ce342013-04-03 21:40:131609 if (track->video.display_width == -1)
Aurelien Jacobs9c25baf2008-08-05 00:40:551610 track->video.display_width = track->video.pixel_width;
Michael Niedermayerf51ce342013-04-03 21:40:131611 if (track->video.display_height == -1)
Aurelien Jacobs9c25baf2008-08-05 00:40:551612 track->video.display_height = track->video.pixel_height;
Aurelien Jacobsfdb5e022011-06-14 00:00:061613 if (track->video.color_space.size == 4)
1614 fourcc = AV_RL32(track->video.color_space.data);
Aurelien Jacobs9c25baf2008-08-05 00:40:551615 } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
1616 if (!track->audio.out_samplerate)
1617 track->audio.out_samplerate = track->audio.samplerate;
1618 }
1619 if (encodings_list->nb_elem > 1) {
1620 av_log(matroska->ctx, AV_LOG_ERROR,
Dustin Brodyd7d2f0e2011-09-15 07:34:381621 "Multiple combined encodings not supported");
Aurelien Jacobs9c25baf2008-08-05 00:40:551622 } else if (encodings_list->nb_elem == 1) {
Frank Galliganb8531032013-03-07 16:11:381623 if (encodings[0].type) {
1624 if (encodings[0].encryption.key_id.size > 0) {
1625 /* Save the encryption key id to be stored later as a
1626 metadata tag. */
1627 const int b64_size = AV_BASE64_SIZE(encodings[0].encryption.key_id.size);
1628 key_id_base64 = av_malloc(b64_size);
1629 if (key_id_base64 == NULL)
1630 return AVERROR(ENOMEM);
1631
1632 av_base64_encode(key_id_base64, b64_size,
1633 encodings[0].encryption.key_id.data,
1634 encodings[0].encryption.key_id.size);
1635 } else {
1636 encodings[0].scope = 0;
1637 av_log(matroska->ctx, AV_LOG_ERROR,
1638 "Unsupported encoding type");
1639 }
1640 } else if (
Aurelien Jacobsb250f9c2009-01-13 23:44:161641#if CONFIG_ZLIB
Keiji Costantini84cfce92014-03-01 16:28:151642 encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_ZLIB &&
Aurelien Jacobs9c25baf2008-08-05 00:40:551643#endif
Aurelien Jacobsb250f9c2009-01-13 23:44:161644#if CONFIG_BZLIB
Aurelien Jacobs9c25baf2008-08-05 00:40:551645 encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_BZLIB &&
1646#endif
Diego Biurrun2a91ada2012-10-18 17:48:271647#if CONFIG_LZO
Keiji Costantini84cfce92014-03-01 16:28:151648 encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_LZO &&
Diego Biurrun2a91ada2012-10-18 17:48:271649#endif
Frank Galliganb8531032013-03-07 16:11:381650 encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP) {
Aurelien Jacobs9c25baf2008-08-05 00:40:551651 encodings[0].scope = 0;
1652 av_log(matroska->ctx, AV_LOG_ERROR,
1653 "Unsupported encoding type");
Keiji Costantini84cfce92014-03-01 16:28:151654 } else if (track->codec_priv.size && encodings[0].scope & 2) {
Aurelien Jacobs9c25baf2008-08-05 00:40:551655 uint8_t *codec_priv = track->codec_priv.data;
Luca Barbato8d4dd552012-09-14 16:51:491656 int ret = matroska_decode_buffer(&track->codec_priv.data,
1657 &track->codec_priv.size,
1658 track);
1659 if (ret < 0) {
Aurelien Jacobs9c25baf2008-08-05 00:40:551660 track->codec_priv.data = NULL;
1661 track->codec_priv.size = 0;
1662 av_log(matroska->ctx, AV_LOG_ERROR,
1663 "Failed to decode codec private data\n");
Aurelien Jacobs9c25baf2008-08-05 00:40:551664 }
Luca Barbato8d4dd552012-09-14 16:51:491665
Aurelien Jacobs9c25baf2008-08-05 00:40:551666 if (codec_priv != track->codec_priv.data)
1667 av_free(codec_priv);
1668 }
1669 }
1670
Keiji Costantini84cfce92014-03-01 16:28:151671 for (j = 0; ff_mkv_codec_tags[j].id != AV_CODEC_ID_NONE; j++) {
1672 if (!strncmp(ff_mkv_codec_tags[j].str, track->codec_id,
1673 strlen(ff_mkv_codec_tags[j].str))) {
1674 codec_id = ff_mkv_codec_tags[j].id;
Aurelien Jacobsd88d8062008-08-05 00:40:521675 break;
David Conradb061d892007-06-04 22:10:541676 }
Aurelien Jacobsd88d8062008-08-05 00:40:521677 }
David Conradb061d892007-06-04 22:10:541678
Anton Khirnov3b3bbdd2011-06-18 09:43:241679 st = track->stream = avformat_new_stream(s, NULL);
Michael Niedermayerfb33bff2014-08-15 18:33:211680 if (!st) {
Frank Galliganb8531032013-03-07 16:11:381681 av_free(key_id_base64);
Aurelien Jacobsd88d8062008-08-05 00:40:521682 return AVERROR(ENOMEM);
Frank Galliganb8531032013-03-07 16:11:381683 }
1684
1685 if (key_id_base64) {
1686 /* export encryption key id as base64 metadata tag */
1687 av_dict_set(&st->metadata, "enc_key_id", key_id_base64, 0);
1688 av_freep(&key_id_base64);
1689 }
Aurelien Jacobsd88d8062008-08-05 00:40:521690
Keiji Costantini84cfce92014-03-01 16:28:151691 if (!strcmp(track->codec_id, "V_MS/VFW/FOURCC") &&
Michael Niedermayerb3d9ab12014-03-07 22:46:371692 track->codec_priv.size >= 40 &&
Gabriel Dume4b1f5e52014-08-14 20:31:251693 track->codec_priv.data) {
Keiji Costantini84cfce92014-03-01 16:28:151694 track->ms_compat = 1;
Michael Niedermayerb3d9ab12014-03-07 22:46:371695 bit_depth = AV_RL16(track->codec_priv.data + 14);
1696 fourcc = AV_RL32(track->codec_priv.data + 16);
Keiji Costantini84cfce92014-03-01 16:28:151697 codec_id = ff_codec_get_id(ff_codec_bmp_tags,
Michael Niedermayerb3d9ab12014-03-07 22:46:371698 fourcc);
Carl Eugen Hoyosade58512014-04-27 07:34:131699 if (!codec_id)
1700 codec_id = ff_codec_get_id(ff_codec_movvideo_tags,
1701 fourcc);
Keiji Costantini84cfce92014-03-01 16:28:151702 extradata_offset = 40;
1703 } else if (!strcmp(track->codec_id, "A_MS/ACM") &&
1704 track->codec_priv.size >= 14 &&
Gabriel Dume4b1f5e52014-08-14 20:31:251705 track->codec_priv.data) {
Max Hornca402f32011-04-12 15:44:201706 int ret;
Keiji Costantini84cfce92014-03-01 16:28:151707 ffio_init_context(&b, track->codec_priv.data,
1708 track->codec_priv.size,
Michael Niedermayerd0b45042013-01-04 12:00:141709 0, NULL, NULL, NULL, NULL);
Max Hornca402f32011-04-12 15:44:201710 ret = ff_get_wav_header(&b, st->codec, track->codec_priv.size);
1711 if (ret < 0)
1712 return ret;
Keiji Costantini84cfce92014-03-01 16:28:151713 codec_id = st->codec->codec_id;
Aurelien Jacobs038146e2009-10-01 21:14:051714 extradata_offset = FFMIN(track->codec_priv.size, 18);
Michael Niedermayer48218582014-01-19 17:35:331715 } else if (!strcmp(track->codec_id, "A_QUICKTIME")
1716 && (track->codec_priv.size >= 86)
Michael Niedermayer81a663f2014-08-15 19:31:591717 && (track->codec_priv.data)) {
Michael Niedermayer48218582014-01-19 17:35:331718 fourcc = AV_RL32(track->codec_priv.data + 4);
1719 codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc);
1720 if (ff_codec_get_id(ff_codec_movaudio_tags, AV_RL32(track->codec_priv.data))) {
1721 fourcc = AV_RL32(track->codec_priv.data);
1722 codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc);
1723 }
Keiji Costantini84cfce92014-03-01 16:28:151724 } else if (!strcmp(track->codec_id, "V_QUICKTIME") &&
Michael Niedermayerb3d9ab12014-03-07 22:46:371725 (track->codec_priv.size >= 21) &&
Gabriel Dume4b1f5e52014-08-14 20:31:251726 (track->codec_priv.data)) {
Michael Niedermayerb3d9ab12014-03-07 22:46:371727 fourcc = AV_RL32(track->codec_priv.data + 4);
Michael Niedermayer6cb20852012-02-15 23:49:161728 codec_id = ff_codec_get_id(ff_codec_movvideo_tags, fourcc);
Michael Niedermayer5800b082014-01-19 17:35:331729 if (ff_codec_get_id(ff_codec_movvideo_tags, AV_RL32(track->codec_priv.data))) {
Michael Niedermayerb3d9ab12014-03-07 22:46:371730 fourcc = AV_RL32(track->codec_priv.data);
Michael Niedermayer5800b082014-01-19 17:35:331731 codec_id = ff_codec_get_id(ff_codec_movvideo_tags, fourcc);
1732 }
Michael Niedermayer9d134322014-01-19 19:13:381733 if (codec_id == AV_CODEC_ID_NONE && AV_RL32(track->codec_priv.data+4) == AV_RL32("SMI "))
1734 codec_id = AV_CODEC_ID_SVQ3;
Anton Khirnov36ef5362012-08-05 09:11:041735 } else if (codec_id == AV_CODEC_ID_PCM_S16BE) {
Aurelien Jacobseb9cf502008-08-20 00:49:451736 switch (track->audio.bitdepth) {
Keiji Costantini84cfce92014-03-01 16:28:151737 case 8:
1738 codec_id = AV_CODEC_ID_PCM_U8;
1739 break;
1740 case 24:
1741 codec_id = AV_CODEC_ID_PCM_S24BE;
1742 break;
1743 case 32:
1744 codec_id = AV_CODEC_ID_PCM_S32BE;
1745 break;
Aurelien Jacobseb9cf502008-08-20 00:49:451746 }
Anton Khirnov36ef5362012-08-05 09:11:041747 } else if (codec_id == AV_CODEC_ID_PCM_S16LE) {
Aurelien Jacobseb9cf502008-08-20 00:49:451748 switch (track->audio.bitdepth) {
Keiji Costantini84cfce92014-03-01 16:28:151749 case 8:
1750 codec_id = AV_CODEC_ID_PCM_U8;
1751 break;
1752 case 24:
1753 codec_id = AV_CODEC_ID_PCM_S24LE;
1754 break;
1755 case 32:
1756 codec_id = AV_CODEC_ID_PCM_S32LE;
1757 break;
Aurelien Jacobseb9cf502008-08-20 00:49:451758 }
Keiji Costantini84cfce92014-03-01 16:28:151759 } else if (codec_id == AV_CODEC_ID_PCM_F32LE &&
1760 track->audio.bitdepth == 64) {
Anton Khirnov36ef5362012-08-05 09:11:041761 codec_id = AV_CODEC_ID_PCM_F64LE;
1762 } else if (codec_id == AV_CODEC_ID_AAC && !track->codec_priv.size) {
Aurelien Jacobsd88d8062008-08-05 00:40:521763 int profile = matroska_aac_profile(track->codec_id);
Keiji Costantini84cfce92014-03-01 16:28:151764 int sri = matroska_aac_sri(track->audio.samplerate);
1765 extradata = av_mallocz(5 + FF_INPUT_BUFFER_PADDING_SIZE);
Gabriel Dumef929ab02014-08-14 20:31:241766 if (!extradata)
Aurelien Jacobs28f450a2008-08-05 00:40:091767 return AVERROR(ENOMEM);
Keiji Costantini84cfce92014-03-01 16:28:151768 extradata[0] = (profile << 3) | ((sri & 0x0E) >> 1);
1769 extradata[1] = ((sri & 0x01) << 7) | (track->audio.channels << 3);
Aurelien Jacobsd88d8062008-08-05 00:40:521770 if (strstr(track->codec_id, "SBR")) {
Keiji Costantini84cfce92014-03-01 16:28:151771 sri = matroska_aac_sri(track->audio.out_samplerate);
1772 extradata[2] = 0x56;
1773 extradata[3] = 0xE5;
1774 extradata[4] = 0x80 | (sri << 3);
Aurelien Jacobsd88d8062008-08-05 00:40:521775 extradata_size = 5;
Aurelien Jacobs16f97ab2008-08-05 00:41:101776 } else
Aurelien Jacobsd88d8062008-08-05 00:40:521777 extradata_size = 2;
Paul B Mahol9644fc92013-06-07 10:06:151778 } else if (codec_id == AV_CODEC_ID_ALAC && track->codec_priv.size && track->codec_priv.size < INT_MAX - 12 - FF_INPUT_BUFFER_PADDING_SIZE) {
1779 /* Only ALAC's magic cookie is stored in Matroska's track headers.
Keiji Costantini84cfce92014-03-01 16:28:151780 * Create the "atom size", "tag", and "tag version" fields the
1781 * decoder expects manually. */
Paul B Mahol9644fc92013-06-07 10:06:151782 extradata_size = 12 + track->codec_priv.size;
Keiji Costantini84cfce92014-03-01 16:28:151783 extradata = av_mallocz(extradata_size +
1784 FF_INPUT_BUFFER_PADDING_SIZE);
Gabriel Dumef929ab02014-08-14 20:31:241785 if (!extradata)
Paul B Mahol9644fc92013-06-07 10:06:151786 return AVERROR(ENOMEM);
1787 AV_WB32(extradata, extradata_size);
1788 memcpy(&extradata[4], "alac", 4);
1789 AV_WB32(&extradata[8], 0);
1790 memcpy(&extradata[12], track->codec_priv.data,
Keiji Costantini84cfce92014-03-01 16:28:151791 track->codec_priv.size);
Anton Khirnov36ef5362012-08-05 09:11:041792 } else if (codec_id == AV_CODEC_ID_TTA) {
Aurelien Jacobsd88d8062008-08-05 00:40:521793 extradata_size = 30;
Michael Niedermayerb3d9ab12014-03-07 22:46:371794 extradata = av_mallocz(extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
Gabriel Dumef929ab02014-08-14 20:31:241795 if (!extradata)
Aurelien Jacobsd88d8062008-08-05 00:40:521796 return AVERROR(ENOMEM);
Anton Khirnovae993132011-02-20 10:04:131797 ffio_init_context(&b, extradata, extradata_size, 1,
Keiji Costantini84cfce92014-03-01 16:28:151798 NULL, NULL, NULL, NULL);
Anton Khirnove9eb8d02011-02-21 18:28:171799 avio_write(&b, "TTA1", 4);
1800 avio_wl16(&b, 1);
1801 avio_wl16(&b, track->audio.channels);
1802 avio_wl16(&b, track->audio.bitdepth);
Michael Niedermayer338f8b22013-08-18 00:20:541803 if (track->audio.out_samplerate < 0 || track->audio.out_samplerate > INT_MAX)
1804 return AVERROR_INVALIDDATA;
Anton Khirnove9eb8d02011-02-21 18:28:171805 avio_wl32(&b, track->audio.out_samplerate);
Michael Niedermayerb3d9ab12014-03-07 22:46:371806 avio_wl32(&b, av_rescale((matroska->duration * matroska->time_scale),
1807 track->audio.out_samplerate,
1808 AV_TIME_BASE * 1000));
Keiji Costantini84cfce92014-03-01 16:28:151809 } else if (codec_id == AV_CODEC_ID_RV10 ||
1810 codec_id == AV_CODEC_ID_RV20 ||
1811 codec_id == AV_CODEC_ID_RV30 ||
1812 codec_id == AV_CODEC_ID_RV40) {
Aurelien Jacobsd88d8062008-08-05 00:40:521813 extradata_offset = 26;
Anton Khirnov36ef5362012-08-05 09:11:041814 } else if (codec_id == AV_CODEC_ID_RA_144) {
Aurelien Jacobsd88d8062008-08-05 00:40:521815 track->audio.out_samplerate = 8000;
Keiji Costantini84cfce92014-03-01 16:28:151816 track->audio.channels = 1;
Michael Niedermayerb3d9ab12014-03-07 22:46:371817 } else if ((codec_id == AV_CODEC_ID_RA_288 ||
1818 codec_id == AV_CODEC_ID_COOK ||
1819 codec_id == AV_CODEC_ID_ATRAC3 ||
1820 codec_id == AV_CODEC_ID_SIPR)
1821 && track->codec_priv.data) {
Aurelien Jacobs6b102282010-03-12 23:49:061822 int flavor;
Michael Niedermayer0b271362012-04-14 17:33:241823
Keiji Costantini84cfce92014-03-01 16:28:151824 ffio_init_context(&b, track->codec_priv.data,
1825 track->codec_priv.size,
1826 0, NULL, NULL, NULL, NULL);
Anton Khirnov45a8a022011-03-15 08:14:381827 avio_skip(&b, 22);
Anton Khirnove63a3622011-02-21 15:43:011828 flavor = avio_rb16(&b);
1829 track->audio.coded_framesize = avio_rb32(&b);
Anton Khirnov45a8a022011-03-15 08:14:381830 avio_skip(&b, 12);
Anton Khirnove63a3622011-02-21 15:43:011831 track->audio.sub_packet_h = avio_rb16(&b);
1832 track->audio.frame_size = avio_rb16(&b);
1833 track->audio.sub_packet_size = avio_rb16(&b);
Michael Niedermayerb3d9ab12014-03-07 22:46:371834 if (flavor < 0 ||
Keiji Costantini84cfce92014-03-01 16:28:151835 track->audio.coded_framesize <= 0 ||
1836 track->audio.sub_packet_h <= 0 ||
1837 track->audio.frame_size <= 0 ||
Martin Storsjö569d18a2013-09-16 12:36:241838 track->audio.sub_packet_size <= 0)
1839 return AVERROR_INVALIDDATA;
Michael Niedermayerb3d9ab12014-03-07 22:46:371840 track->audio.buf = av_malloc_array(track->audio.sub_packet_h,
1841 track->audio.frame_size);
Paul B Mahol3e2a5b32013-09-16 18:03:271842 if (!track->audio.buf)
1843 return AVERROR(ENOMEM);
Anton Khirnov36ef5362012-08-05 09:11:041844 if (codec_id == AV_CODEC_ID_RA_288) {
Aurelien Jacobsd88d8062008-08-05 00:40:521845 st->codec->block_align = track->audio.coded_framesize;
1846 track->codec_priv.size = 0;
1847 } else {
Anton Khirnov36ef5362012-08-05 09:11:041848 if (codec_id == AV_CODEC_ID_SIPR && flavor < 4) {
Michael Niedermayer62cf5c12013-08-04 19:18:491849 static const int sipr_bit_rate[4] = { 6504, 8496, 5000, 16000 };
Aurelien Jacobs6b102282010-03-12 23:49:061850 track->audio.sub_packet_size = ff_sipr_subpk_size[flavor];
Keiji Costantini84cfce92014-03-01 16:28:151851 st->codec->bit_rate = sipr_bit_rate[flavor];
Aurelien Jacobs6b102282010-03-12 23:49:061852 }
Aurelien Jacobsd88d8062008-08-05 00:40:521853 st->codec->block_align = track->audio.sub_packet_size;
Keiji Costantini84cfce92014-03-01 16:28:151854 extradata_offset = 78;
David Conradb061d892007-06-04 22:10:541855 }
Anton Khirnov4efdadc2014-05-25 12:05:511856 } else if (codec_id == AV_CODEC_ID_FLAC && track->codec_priv.size) {
1857 ret = matroska_parse_flac(s, track, &extradata_offset);
1858 if (ret < 0)
1859 return ret;
Carl Eugen Hoyos3d5c8592014-04-06 18:54:481860 } else if (codec_id == AV_CODEC_ID_PRORES && track->codec_priv.size == 4) {
1861 fourcc = AV_RL32(track->codec_priv.data);
David Conradb061d892007-06-04 22:10:541862 }
Aurelien Jacobse2644402009-08-24 13:40:301863 track->codec_priv.size -= extradata_offset;
Aurelien Jacobsd88d8062008-08-05 00:40:521864
Anton Khirnov36ef5362012-08-05 09:11:041865 if (codec_id == AV_CODEC_ID_NONE)
Aurelien Jacobsd88d8062008-08-05 00:40:521866 av_log(matroska->ctx, AV_LOG_INFO,
Anton Khirnov36ef5362012-08-05 09:11:041867 "Unknown/unsupported AVCodecID %s.\n", track->codec_id);
Aurelien Jacobsd88d8062008-08-05 00:40:521868
Aurelien Jacobs3fc9d7c2008-09-09 11:23:481869 if (track->time_scale < 0.01)
1870 track->time_scale = 1.0;
Keiji Costantini84cfce92014-03-01 16:28:151871 avpriv_set_pts_info(st, 64, matroska->time_scale * track->time_scale,
1872 1000 * 1000 * 1000); /* 64 bit pts in ns */
Aurelien Jacobsd88d8062008-08-05 00:40:521873
Anton Khirnoveb3b5502014-04-29 10:03:131874 /* convert the delay from ns to the track timebase */
1875 track->codec_delay = av_rescale_q(track->codec_delay,
1876 (AVRational){ 1, 1000000000 },
1877 st->time_base);
1878
Aurelien Jacobsd88d8062008-08-05 00:40:521879 st->codec->codec_id = codec_id;
Alex Sukhanov251c96a2013-12-23 09:41:351880
Aurelien Jacobsd88d8062008-08-05 00:40:521881 if (strcmp(track->language, "und"))
Anton Khirnovd2d67e42011-05-22 10:46:291882 av_dict_set(&st->metadata, "language", track->language, 0);
1883 av_dict_set(&st->metadata, "title", track->name, 0);
Aurelien Jacobsd88d8062008-08-05 00:40:521884
1885 if (track->flag_default)
1886 st->disposition |= AV_DISPOSITION_DEFAULT;
Aurelien Jacobs7a617a82010-07-02 16:38:441887 if (track->flag_forced)
1888 st->disposition |= AV_DISPOSITION_FORCED;
Aurelien Jacobsd88d8062008-08-05 00:40:521889
Aurelien Jacobsff0d5a72009-10-01 21:14:461890 if (!st->codec->extradata) {
Keiji Costantini84cfce92014-03-01 16:28:151891 if (extradata) {
1892 st->codec->extradata = extradata;
Aurelien Jacobs553e9f72009-10-01 21:15:361893 st->codec->extradata_size = extradata_size;
Keiji Costantini84cfce92014-03-01 16:28:151894 } else if (track->codec_priv.data && track->codec_priv.size > 0) {
Paul B Mahola807c682013-10-13 10:30:591895 if (ff_alloc_extradata(st->codec, track->codec_priv.size))
Aurelien Jacobs553e9f72009-10-01 21:15:361896 return AVERROR(ENOMEM);
Aurelien Jacobs553e9f72009-10-01 21:15:361897 memcpy(st->codec->extradata,
1898 track->codec_priv.data + extradata_offset,
1899 track->codec_priv.size);
1900 }
Aurelien Jacobsff0d5a72009-10-01 21:14:461901 }
Aurelien Jacobsd88d8062008-08-05 00:40:521902
1903 if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
Aurelien Jacobs4c509fe2011-05-23 23:09:241904 MatroskaTrackPlane *planes = track->operation.combine_planes.elem;
1905
Stefano Sabatini72415b22010-03-30 23:30:551906 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
Aurelien Jacobs5fec3a22011-06-13 23:58:111907 st->codec->codec_tag = fourcc;
Carl Eugen Hoyos96fc2902014-02-25 23:02:511908 if (bit_depth >= 0)
1909 st->codec->bits_per_coded_sample = bit_depth;
Keiji Costantini84cfce92014-03-01 16:28:151910 st->codec->width = track->video.pixel_width;
1911 st->codec->height = track->video.pixel_height;
Aurelien Jacobs59729452008-08-23 23:43:201912 av_reduce(&st->sample_aspect_ratio.num,
1913 &st->sample_aspect_ratio.den,
Aurelien Jacobsd88d8062008-08-05 00:40:521914 st->codec->height * track->video.display_width,
Keiji Costantini84cfce92014-03-01 16:28:151915 st->codec->width * track->video.display_height,
Aurelien Jacobsd88d8062008-08-05 00:40:521916 255);
Yusuke Nakamura16b68392013-10-12 09:55:461917 if (st->codec->codec_id != AV_CODEC_ID_HEVC)
1918 st->need_parsing = AVSTREAM_PARSE_HEADERS;
Michael Niedermayer0fbeeb92013-11-01 16:57:571919
Luca Barbatoac97d472012-04-17 23:32:071920 if (track->default_duration) {
Anton Khirnovaba232c2012-06-26 11:10:011921 av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
Luca Barbatoac97d472012-04-17 23:32:071922 1000000000, track->default_duration, 30000);
Anton Khirnovaba232c2012-06-26 11:10:011923#if FF_API_R_FRAME_RATE
Michael Niedermayerbe695ee2014-10-08 18:23:401924 if ( st->avg_frame_rate.num < st->avg_frame_rate.den * 1000L
1925 && st->avg_frame_rate.num > st->avg_frame_rate.den * 5L)
Michael Niedermayer6853e402013-10-05 22:07:281926 st->r_frame_rate = st->avg_frame_rate;
Anton Khirnovaba232c2012-06-26 11:10:011927#endif
Luca Barbatoac97d472012-04-17 23:32:071928 }
Kirill Gavrilove6ec9212011-05-21 15:14:141929
Aurelien Jacobs4c509fe2011-05-23 23:09:241930 /* export stereo mode flag as metadata tag */
Michael Niedermayer37520a92014-08-28 23:26:521931 if (track->video.stereo_mode && track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB)
Clément Bœschca81e3b2012-09-16 00:58:401932 av_dict_set(&st->metadata, "stereo_mode", ff_matroska_video_stereo_mode[track->video.stereo_mode], 0);
Kirill Gavrilove6ec9212011-05-21 15:14:141933
Vignesh Venkatasubramaniance6a8e52013-02-04 23:17:521934 /* export alpha mode flag as metadata tag */
1935 if (track->video.alpha_mode)
1936 av_dict_set(&st->metadata, "alpha_mode", "1", 0);
1937
Aurelien Jacobs4c509fe2011-05-23 23:09:241938 /* if we have virtual track, mark the real tracks */
1939 for (j=0; j < track->operation.combine_planes.nb_elem; j++) {
1940 char buf[32];
Aurelien Jacobsb44bbf92011-05-24 21:26:241941 if (planes[j].type >= MATROSKA_VIDEO_STEREO_PLANE_COUNT)
Aurelien Jacobs4c509fe2011-05-23 23:09:241942 continue;
1943 snprintf(buf, sizeof(buf), "%s_%d",
Clément Bœschca81e3b2012-09-16 00:58:401944 ff_matroska_video_stereo_plane[planes[j].type], i);
Aurelien Jacobs4c509fe2011-05-23 23:09:241945 for (k=0; k < matroska->tracks.nb_elem; k++)
1946 if (planes[j].uid == tracks[k].uid) {
Aurelien Jacobse6ba3d42011-06-13 17:02:501947 av_dict_set(&s->streams[k]->metadata,
1948 "stereo_mode", buf, 0);
Kirill Gavrilove6ec9212011-05-21 15:14:141949 break;
1950 }
Kirill Gavrilove6ec9212011-05-21 15:14:141951 }
Vittorio Giovarad4ae8ac2014-08-12 21:28:491952 // add stream level stereo3d side data if it is a supported format
1953 if (track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB &&
1954 track->video.stereo_mode != 10 && track->video.stereo_mode != 12) {
1955 int ret = ff_mkv_stereo3d_conv(st, track->video.stereo_mode);
1956 if (ret < 0)
1957 return ret;
1958 }
Aurelien Jacobsd88d8062008-08-05 00:40:521959 } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
Keiji Costantini84cfce92014-03-01 16:28:151960 st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
Aurelien Jacobsd88d8062008-08-05 00:40:521961 st->codec->sample_rate = track->audio.out_samplerate;
Keiji Costantini84cfce92014-03-01 16:28:151962 st->codec->channels = track->audio.channels;
Carl Eugen Hoyos11329372014-01-15 22:37:471963 if (!st->codec->bits_per_coded_sample)
Michael Niedermayerb3d9ab12014-03-07 22:46:371964 st->codec->bits_per_coded_sample = track->audio.bitdepth;
Anton Khirnov36ef5362012-08-05 09:11:041965 if (st->codec->codec_id != AV_CODEC_ID_AAC)
Keiji Costantini84cfce92014-03-01 16:28:151966 st->need_parsing = AVSTREAM_PARSE_HEADERS;
Vignesh Venkatasubramaniand6f86d72013-10-14 17:42:081967 if (track->codec_delay > 0) {
1968 st->codec->delay = av_rescale_q(track->codec_delay,
Michael Niedermayer8bf90562014-05-01 02:27:171969 st->time_base,
Vignesh Venkatasubramaniand6f86d72013-10-14 17:42:081970 (AVRational){1, st->codec->sample_rate});
1971 }
1972 if (track->seek_preroll > 0) {
1973 av_codec_set_seek_preroll(st->codec,
1974 av_rescale_q(track->seek_preroll,
1975 (AVRational){1, 1000000000},
1976 (AVRational){1, st->codec->sample_rate}));
1977 }
Matthew Heaney818ebe92013-08-08 22:40:031978 } else if (codec_id == AV_CODEC_ID_WEBVTT) {
1979 st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
1980
1981 if (!strcmp(track->codec_id, "D_WEBVTT/CAPTIONS")) {
1982 st->disposition |= AV_DISPOSITION_CAPTIONS;
1983 } else if (!strcmp(track->codec_id, "D_WEBVTT/DESCRIPTIONS")) {
1984 st->disposition |= AV_DISPOSITION_DESCRIPTIONS;
1985 } else if (!strcmp(track->codec_id, "D_WEBVTT/METADATA")) {
1986 st->disposition |= AV_DISPOSITION_METADATA;
1987 }
Aurelien Jacobsd88d8062008-08-05 00:40:521988 } else if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE) {
Stefano Sabatini72415b22010-03-30 23:30:551989 st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
Clément Bœsch7c1a0022013-01-03 02:06:431990 if (st->codec->codec_id == AV_CODEC_ID_ASS)
Dale Curtis8336eb62012-04-19 18:12:241991 matroska->contains_ssa = 1;
Aurelien Jacobsd88d8062008-08-05 00:40:521992 }
David Conradb061d892007-06-04 22:10:541993 }
1994
Anton Khirnov6df478b2014-05-25 07:07:321995 return 0;
1996}
1997
1998static int matroska_read_header(AVFormatContext *s)
1999{
2000 MatroskaDemuxContext *matroska = s->priv_data;
2001 EbmlList *attachments_list = &matroska->attachments;
2002 EbmlList *chapters_list = &matroska->chapters;
2003 MatroskaAttachment *attachments;
2004 MatroskaChapter *chapters;
2005 uint64_t max_start = 0;
2006 int64_t pos;
2007 Ebml ebml = { 0 };
2008 int i, j, res;
2009
2010 matroska->ctx = s;
2011
2012 /* First read the EBML header. */
2013 if (ebml_parse(matroska, ebml_syntax, &ebml) ||
2014 ebml.version > EBML_VERSION ||
2015 ebml.max_size > sizeof(uint64_t) ||
2016 ebml.id_length > sizeof(uint32_t) ||
Michael Niedermayer69de2292014-05-28 10:41:352017 ebml.doctype_version > 3 ||
2018 !ebml.doctype) {
Anton Khirnov6df478b2014-05-25 07:07:322019 av_log(matroska->ctx, AV_LOG_ERROR,
2020 "EBML header using unsupported features\n"
2021 "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n",
2022 ebml.version, ebml.doctype, ebml.doctype_version);
2023 ebml_free(ebml_syntax, &ebml);
2024 return AVERROR_PATCHWELCOME;
Michael Niedermayer69de2292014-05-28 10:41:352025 } else if (ebml.doctype_version == 3) {
2026 av_log(matroska->ctx, AV_LOG_WARNING,
2027 "EBML header using unsupported features\n"
2028 "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n",
2029 ebml.version, ebml.doctype, ebml.doctype_version);
Anton Khirnov6df478b2014-05-25 07:07:322030 }
2031 for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++)
2032 if (!strcmp(ebml.doctype, matroska_doctypes[i]))
2033 break;
2034 if (i >= FF_ARRAY_ELEMS(matroska_doctypes)) {
2035 av_log(s, AV_LOG_WARNING, "Unknown EBML doctype '%s'\n", ebml.doctype);
2036 if (matroska->ctx->error_recognition & AV_EF_EXPLODE) {
2037 ebml_free(ebml_syntax, &ebml);
2038 return AVERROR_INVALIDDATA;
2039 }
2040 }
2041 ebml_free(ebml_syntax, &ebml);
2042
2043 /* The next thing is a segment. */
2044 pos = avio_tell(matroska->ctx->pb);
2045 res = ebml_parse(matroska, matroska_segments, matroska);
2046 // try resyncing until we find a EBML_STOP type element.
2047 while (res != 1) {
2048 res = matroska_resync(matroska, pos);
2049 if (res < 0)
2050 return res;
2051 pos = avio_tell(matroska->ctx->pb);
2052 res = ebml_parse(matroska, matroska_segment, matroska);
2053 }
2054 matroska_execute_seekhead(matroska);
2055
2056 if (!matroska->time_scale)
2057 matroska->time_scale = 1000000;
2058 if (matroska->duration)
2059 matroska->ctx->duration = matroska->duration * matroska->time_scale *
2060 1000 / AV_TIME_BASE;
2061 av_dict_set(&s->metadata, "title", matroska->title, 0);
Michael Niedermayer69de2292014-05-28 10:41:352062 av_dict_set(&s->metadata, "encoder", matroska->muxingapp, 0);
2063
2064 if (matroska->date_utc.size == 8)
2065 matroska_metadata_creation_time(&s->metadata, AV_RB64(matroska->date_utc.data));
Anton Khirnov6df478b2014-05-25 07:07:322066
2067 res = matroska_parse_tracks(s);
2068 if (res < 0)
2069 return res;
2070
Diego Biurrunf69befe2014-03-07 12:54:182071 attachments = attachments_list->elem;
2072 for (j = 0; j < attachments_list->nb_elem; j++) {
2073 if (!(attachments[j].filename && attachments[j].mime &&
2074 attachments[j].bin.data && attachments[j].bin.size > 0)) {
Aurelien Jacobs9c25baf2008-08-05 00:40:552075 av_log(matroska->ctx, AV_LOG_ERROR, "incomplete attachment\n");
2076 } else {
Anton Khirnov3b3bbdd2011-06-18 09:43:242077 AVStream *st = avformat_new_stream(s, NULL);
Gabriel Dumef929ab02014-08-14 20:31:242078 if (!st)
Aurelien Jacobs9c25baf2008-08-05 00:40:552079 break;
Diego Biurrunf69befe2014-03-07 12:54:182080 av_dict_set(&st->metadata, "filename", attachments[j].filename, 0);
2081 av_dict_set(&st->metadata, "mimetype", attachments[j].mime, 0);
Keiji Costantini84cfce92014-03-01 16:28:152082 st->codec->codec_id = AV_CODEC_ID_NONE;
Stefano Sabatini72415b22010-03-30 23:30:552083 st->codec->codec_type = AVMEDIA_TYPE_ATTACHMENT;
Michael Niedermayerfabf69f2014-03-07 23:13:202084 if (ff_alloc_extradata(st->codec, attachments[j].bin.size))
Aurelien Jacobs9c25baf2008-08-05 00:40:552085 break;
Diego Biurrunf69befe2014-03-07 12:54:182086 memcpy(st->codec->extradata, attachments[j].bin.data,
2087 attachments[j].bin.size);
Aurelien Jacobs9c25baf2008-08-05 00:40:552088
Keiji Costantini84cfce92014-03-01 16:28:152089 for (i = 0; ff_mkv_mime_tags[i].id != AV_CODEC_ID_NONE; i++) {
Diego Biurrunf69befe2014-03-07 12:54:182090 if (!strncmp(ff_mkv_mime_tags[i].str, attachments[j].mime,
Aurelien Jacobs9c25baf2008-08-05 00:40:552091 strlen(ff_mkv_mime_tags[i].str))) {
2092 st->codec->codec_id = ff_mkv_mime_tags[i].id;
2093 break;
2094 }
2095 }
Diego Biurrunf69befe2014-03-07 12:54:182096 attachments[j].stream = st;
Aurelien Jacobs9c25baf2008-08-05 00:40:552097 }
2098 }
2099
2100 chapters = chapters_list->elem;
Keiji Costantini84cfce92014-03-01 16:28:152101 for (i = 0; i < chapters_list->nb_elem; i++)
2102 if (chapters[i].start != AV_NOPTS_VALUE && chapters[i].uid &&
2103 (max_start == 0 || chapters[i].start > max_start)) {
Aurelien Jacobs6cb6e152009-02-15 15:25:142104 chapters[i].chapter =
Keiji Costantini84cfce92014-03-01 16:28:152105 avpriv_new_chapter(s, chapters[i].uid,
2106 (AVRational) { 1, 1000000000 },
2107 chapters[i].start, chapters[i].end,
2108 chapters[i].title);
Justin Jacobs87dc8b32014-08-07 00:04:382109 if (chapters[i].chapter) {
2110 av_dict_set(&chapters[i].chapter->metadata,
2111 "title", chapters[i].title, 0);
2112 }
Aurelien Jacobse0e4be52009-01-15 00:42:572113 max_start = chapters[i].start;
2114 }
Aurelien Jacobs9c25baf2008-08-05 00:40:552115
Aaron Colwell6c4cc0f2011-09-22 14:51:002116 matroska_add_index_entries(matroska);
2117
Aurelien Jacobs929e9de2009-02-15 15:53:552118 matroska_convert_tags(s);
2119
Aurelien Jacobsce6f28b2008-08-05 00:40:582120 return 0;
David Conradb061d892007-06-04 22:10:542121}
2122
Aurelien Jacobs737c40d2008-08-05 00:42:392123/*
Aurelien Jacobs737c40d2008-08-05 00:42:392124 * Put one packet in an application-supplied AVPacket struct.
2125 * Returns 0 on success or -1 on failure.
2126 */
2127static int matroska_deliver_packet(MatroskaDemuxContext *matroska,
2128 AVPacket *pkt)
2129{
2130 if (matroska->num_packets > 0) {
2131 memcpy(pkt, matroska->packets[0], sizeof(AVPacket));
2132 av_free(matroska->packets[0]);
2133 if (matroska->num_packets > 1) {
Michael Niedermayer956c9012011-07-28 12:59:542134 void *newpackets;
Aurelien Jacobs737c40d2008-08-05 00:42:392135 memmove(&matroska->packets[0], &matroska->packets[1],
2136 (matroska->num_packets - 1) * sizeof(AVPacket *));
Michael Niedermayer956c9012011-07-28 12:59:542137 newpackets = av_realloc(matroska->packets,
Keiji Costantini84cfce92014-03-01 16:28:152138 (matroska->num_packets - 1) *
2139 sizeof(AVPacket *));
Michael Niedermayer956c9012011-07-28 12:59:542140 if (newpackets)
2141 matroska->packets = newpackets;
Aurelien Jacobs737c40d2008-08-05 00:42:392142 } else {
2143 av_freep(&matroska->packets);
Dale Curtis8336eb62012-04-19 18:12:242144 matroska->prev_pkt = NULL;
Aurelien Jacobs737c40d2008-08-05 00:42:392145 }
2146 matroska->num_packets--;
2147 return 0;
2148 }
2149
2150 return -1;
2151}
2152
2153/*
2154 * Free all packets in our internal queue.
2155 */
2156static void matroska_clear_queue(MatroskaDemuxContext *matroska)
2157{
Dale Curtisae3d4162013-01-10 19:05:292158 matroska->prev_pkt = NULL;
Aurelien Jacobs737c40d2008-08-05 00:42:392159 if (matroska->packets) {
2160 int n;
2161 for (n = 0; n < matroska->num_packets; n++) {
2162 av_free_packet(matroska->packets[n]);
2163 av_free(matroska->packets[n]);
2164 }
Aurelien Jacobs00a34312008-08-06 00:21:102165 av_freep(&matroska->packets);
Aurelien Jacobs737c40d2008-08-05 00:42:392166 matroska->num_packets = 0;
2167 }
2168}
2169
Luca Barbato2d0e7712012-09-16 23:58:322170static int matroska_parse_laces(MatroskaDemuxContext *matroska, uint8_t **buf,
Keiji Costantini84cfce92014-03-01 16:28:152171 int *buf_size, int type,
Luca Barbato2d0e7712012-09-16 23:58:322172 uint32_t **lace_buf, int *laces)
2173{
Dale Curtis81e85bc2013-03-26 21:12:302174 int res = 0, n, size = *buf_size;
Luca Barbato2d0e7712012-09-16 23:58:322175 uint8_t *data = *buf;
2176 uint32_t *lace_size;
2177
2178 if (!type) {
Keiji Costantini84cfce92014-03-01 16:28:152179 *laces = 1;
Luca Barbato2d0e7712012-09-16 23:58:322180 *lace_buf = av_mallocz(sizeof(int));
2181 if (!*lace_buf)
2182 return AVERROR(ENOMEM);
2183
2184 *lace_buf[0] = size;
2185 return 0;
2186 }
2187
Michael Niedermayer8c51ea52012-09-20 18:37:262188 av_assert0(size > 0);
Keiji Costantini84cfce92014-03-01 16:28:152189 *laces = *data + 1;
2190 data += 1;
2191 size -= 1;
Luca Barbato2d0e7712012-09-16 23:58:322192 lace_size = av_mallocz(*laces * sizeof(int));
2193 if (!lace_size)
2194 return AVERROR(ENOMEM);
2195
2196 switch (type) {
Keiji Costantini84cfce92014-03-01 16:28:152197 case 0x1: /* Xiph lacing */
2198 {
Luca Barbato2d0e7712012-09-16 23:58:322199 uint8_t temp;
2200 uint32_t total = 0;
2201 for (n = 0; res == 0 && n < *laces - 1; n++) {
2202 while (1) {
Michael Niedermayer115c3bc2013-04-04 13:17:572203 if (size <= total) {
Michael Niedermayer14de77d2013-04-04 13:13:532204 res = AVERROR_INVALIDDATA;
Luca Barbato2d0e7712012-09-16 23:58:322205 break;
2206 }
Keiji Costantini84cfce92014-03-01 16:28:152207 temp = *data;
Michael Niedermayerb3d9ab12014-03-07 22:46:372208 total += temp;
Luca Barbato2d0e7712012-09-16 23:58:322209 lace_size[n] += temp;
Keiji Costantini84cfce92014-03-01 16:28:152210 data += 1;
2211 size -= 1;
Luca Barbato2d0e7712012-09-16 23:58:322212 if (temp != 0xff)
2213 break;
2214 }
Luca Barbato2d0e7712012-09-16 23:58:322215 }
2216 if (size <= total) {
2217 res = AVERROR_INVALIDDATA;
2218 break;
2219 }
2220
2221 lace_size[n] = size - total;
2222 break;
2223 }
2224
2225 case 0x2: /* fixed-size lacing */
Anton Khirnov87b017a2012-09-20 18:04:562226 if (size % (*laces)) {
Luca Barbato2d0e7712012-09-16 23:58:322227 res = AVERROR_INVALIDDATA;
2228 break;
2229 }
2230 for (n = 0; n < *laces; n++)
2231 lace_size[n] = size / *laces;
2232 break;
2233
Keiji Costantini84cfce92014-03-01 16:28:152234 case 0x3: /* EBML lacing */
2235 {
Luca Barbato2d0e7712012-09-16 23:58:322236 uint64_t num;
Luca Barbato8a96df72013-03-28 10:52:522237 uint64_t total;
Luca Barbato2d0e7712012-09-16 23:58:322238 n = matroska_ebmlnum_uint(matroska, data, size, &num);
Michael Niedermayer3b93bea2013-04-04 13:39:232239 if (n < 0 || num > INT_MAX) {
Luca Barbato2d0e7712012-09-16 23:58:322240 av_log(matroska->ctx, AV_LOG_INFO,
2241 "EBML block data error\n");
Michael Niedermayer3b93bea2013-04-04 13:39:232242 res = n<0 ? n : AVERROR_INVALIDDATA;
Luca Barbato2d0e7712012-09-16 23:58:322243 break;
2244 }
2245 data += n;
2246 size -= n;
2247 total = lace_size[0] = num;
2248 for (n = 1; res == 0 && n < *laces - 1; n++) {
2249 int64_t snum;
2250 int r;
2251 r = matroska_ebmlnum_sint(matroska, data, size, &snum);
Michael Niedermayer3b93bea2013-04-04 13:39:232252 if (r < 0 || lace_size[n - 1] + snum > (uint64_t)INT_MAX) {
Luca Barbato2d0e7712012-09-16 23:58:322253 av_log(matroska->ctx, AV_LOG_INFO,
2254 "EBML block data error\n");
Michael Niedermayer3b93bea2013-04-04 13:39:232255 res = r<0 ? r : AVERROR_INVALIDDATA;
Luca Barbato2d0e7712012-09-16 23:58:322256 break;
2257 }
Keiji Costantini84cfce92014-03-01 16:28:152258 data += r;
2259 size -= r;
Luca Barbato2d0e7712012-09-16 23:58:322260 lace_size[n] = lace_size[n - 1] + snum;
Keiji Costantini84cfce92014-03-01 16:28:152261 total += lace_size[n];
Luca Barbato2d0e7712012-09-16 23:58:322262 }
2263 if (size <= total) {
2264 res = AVERROR_INVALIDDATA;
2265 break;
2266 }
2267 lace_size[*laces - 1] = size - total;
2268 break;
2269 }
2270 }
2271
2272 *buf = data;
2273 *lace_buf = lace_size;
Dale Curtis81e85bc2013-03-26 21:12:302274 *buf_size = size;
Luca Barbato2d0e7712012-09-16 23:58:322275
2276 return res;
2277}
2278
Luca Barbatoc831ebf2012-09-16 23:28:132279static int matroska_parse_rm_audio(MatroskaDemuxContext *matroska,
Keiji Costantini84cfce92014-03-01 16:28:152280 MatroskaTrack *track, AVStream *st,
2281 uint8_t *data, int size, uint64_t timecode,
Luca Barbatoc831ebf2012-09-16 23:28:132282 int64_t pos)
2283{
2284 int a = st->codec->block_align;
2285 int sps = track->audio.sub_packet_size;
2286 int cfs = track->audio.coded_framesize;
Keiji Costantini84cfce92014-03-01 16:28:152287 int h = track->audio.sub_packet_h;
2288 int y = track->audio.sub_packet_cnt;
2289 int w = track->audio.frame_size;
Luca Barbatoc831ebf2012-09-16 23:28:132290 int x;
2291
2292 if (!track->audio.pkt_cnt) {
2293 if (track->audio.sub_packet_cnt == 0)
2294 track->audio.buf_timecode = timecode;
2295 if (st->codec->codec_id == AV_CODEC_ID_RA_288) {
2296 if (size < cfs * h / 2) {
2297 av_log(matroska->ctx, AV_LOG_ERROR,
2298 "Corrupt int4 RM-style audio packet size\n");
2299 return AVERROR_INVALIDDATA;
2300 }
Keiji Costantini84cfce92014-03-01 16:28:152301 for (x = 0; x < h / 2; x++)
2302 memcpy(track->audio.buf + x * 2 * w + y * cfs,
2303 data + x * cfs, cfs);
Luca Barbatoc831ebf2012-09-16 23:28:132304 } else if (st->codec->codec_id == AV_CODEC_ID_SIPR) {
2305 if (size < w) {
2306 av_log(matroska->ctx, AV_LOG_ERROR,
2307 "Corrupt sipr RM-style audio packet size\n");
2308 return AVERROR_INVALIDDATA;
2309 }
Keiji Costantini84cfce92014-03-01 16:28:152310 memcpy(track->audio.buf + y * w, data, w);
Luca Barbatoc831ebf2012-09-16 23:28:132311 } else {
Michael Niedermayera1ed1c22014-01-10 22:10:472312 if (size < sps * w / sps || h<=0 || w%sps) {
Luca Barbatoc831ebf2012-09-16 23:28:132313 av_log(matroska->ctx, AV_LOG_ERROR,
2314 "Corrupt generic RM-style audio packet size\n");
2315 return AVERROR_INVALIDDATA;
2316 }
Keiji Costantini84cfce92014-03-01 16:28:152317 for (x = 0; x < w / sps; x++)
2318 memcpy(track->audio.buf +
2319 sps * (h * x + ((h + 1) / 2) * (y & 1) + (y >> 1)),
2320 data + x * sps, sps);
Luca Barbatoc831ebf2012-09-16 23:28:132321 }
2322
2323 if (++track->audio.sub_packet_cnt >= h) {
2324 if (st->codec->codec_id == AV_CODEC_ID_SIPR)
2325 ff_rm_reorder_sipr_data(track->audio.buf, h, w);
2326 track->audio.sub_packet_cnt = 0;
Keiji Costantini84cfce92014-03-01 16:28:152327 track->audio.pkt_cnt = h * w / a;
Luca Barbatoc831ebf2012-09-16 23:28:132328 }
2329 }
2330
2331 while (track->audio.pkt_cnt) {
Vittorio Giovarae0caa1e2014-10-23 23:05:532332 int ret;
Luca Barbatoc831ebf2012-09-16 23:28:132333 AVPacket *pkt = av_mallocz(sizeof(AVPacket));
Vittorio Giovarae0caa1e2014-10-23 23:05:532334 if (!pkt)
Michael Niedermayer11164912012-10-20 14:55:452335 return AVERROR(ENOMEM);
Vittorio Giovarae0caa1e2014-10-23 23:05:532336
2337 ret = av_new_packet(pkt, a);
2338 if (ret < 0) {
2339 av_free(pkt);
2340 return ret;
Michael Niedermayer11164912012-10-20 14:55:452341 }
Keiji Costantini84cfce92014-03-01 16:28:152342 memcpy(pkt->data,
2343 track->audio.buf + a * (h * w / a - track->audio.pkt_cnt--),
2344 a);
2345 pkt->pts = track->audio.buf_timecode;
Luca Barbatoc831ebf2012-09-16 23:28:132346 track->audio.buf_timecode = AV_NOPTS_VALUE;
Keiji Costantini84cfce92014-03-01 16:28:152347 pkt->pos = pos;
2348 pkt->stream_index = st->index;
2349 dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
Luca Barbatoc831ebf2012-09-16 23:28:132350 }
2351
2352 return 0;
2353}
Anton Khirnov9b6f47c2013-05-27 07:44:272354
2355/* reconstruct full wavpack blocks from mangled matroska ones */
2356static int matroska_parse_wavpack(MatroskaTrack *track, uint8_t *src,
2357 uint8_t **pdst, int *size)
2358{
2359 uint8_t *dst = NULL;
2360 int dstlen = 0;
2361 int srclen = *size;
2362 uint32_t samples;
2363 uint16_t ver;
2364 int ret, offset = 0;
2365
2366 if (srclen < 12 || track->stream->codec->extradata_size < 2)
2367 return AVERROR_INVALIDDATA;
2368
2369 ver = AV_RL16(track->stream->codec->extradata);
2370
2371 samples = AV_RL32(src);
2372 src += 4;
2373 srclen -= 4;
2374
2375 while (srclen >= 8) {
2376 int multiblock;
2377 uint32_t blocksize;
2378 uint8_t *tmp;
2379
2380 uint32_t flags = AV_RL32(src);
2381 uint32_t crc = AV_RL32(src + 4);
2382 src += 8;
2383 srclen -= 8;
2384
2385 multiblock = (flags & 0x1800) != 0x1800;
2386 if (multiblock) {
2387 if (srclen < 4) {
2388 ret = AVERROR_INVALIDDATA;
2389 goto fail;
2390 }
2391 blocksize = AV_RL32(src);
Keiji Costantini84cfce92014-03-01 16:28:152392 src += 4;
2393 srclen -= 4;
Anton Khirnov9b6f47c2013-05-27 07:44:272394 } else
2395 blocksize = srclen;
2396
2397 if (blocksize > srclen) {
2398 ret = AVERROR_INVALIDDATA;
2399 goto fail;
2400 }
2401
2402 tmp = av_realloc(dst, dstlen + blocksize + 32);
2403 if (!tmp) {
2404 ret = AVERROR(ENOMEM);
2405 goto fail;
2406 }
2407 dst = tmp;
2408 dstlen += blocksize + 32;
2409
Keiji Costantini84cfce92014-03-01 16:28:152410 AV_WL32(dst + offset, MKTAG('w', 'v', 'p', 'k')); // tag
2411 AV_WL32(dst + offset + 4, blocksize + 24); // blocksize - 8
2412 AV_WL16(dst + offset + 8, ver); // version
2413 AV_WL16(dst + offset + 10, 0); // track/index_no
2414 AV_WL32(dst + offset + 12, 0); // total samples
2415 AV_WL32(dst + offset + 16, 0); // block index
2416 AV_WL32(dst + offset + 20, samples); // number of samples
2417 AV_WL32(dst + offset + 24, flags); // flags
2418 AV_WL32(dst + offset + 28, crc); // crc
2419 memcpy(dst + offset + 32, src, blocksize); // block data
Anton Khirnov9b6f47c2013-05-27 07:44:272420
2421 src += blocksize;
2422 srclen -= blocksize;
2423 offset += blocksize + 32;
2424 }
2425
2426 *pdst = dst;
2427 *size = dstlen;
2428
2429 return 0;
2430
2431fail:
2432 av_freep(&dst);
2433 return ret;
2434}
2435
Matthew Heaney818ebe92013-08-08 22:40:032436static int matroska_parse_webvtt(MatroskaDemuxContext *matroska,
2437 MatroskaTrack *track,
2438 AVStream *st,
2439 uint8_t *data, int data_len,
2440 uint64_t timecode,
2441 uint64_t duration,
2442 int64_t pos)
2443{
2444 AVPacket *pkt;
2445 uint8_t *id, *settings, *text, *buf;
2446 int id_len, settings_len, text_len;
2447 uint8_t *p, *q;
2448 int err;
2449
2450 if (data_len <= 0)
2451 return AVERROR_INVALIDDATA;
2452
2453 p = data;
2454 q = data + data_len;
2455
2456 id = p;
2457 id_len = -1;
2458 while (p < q) {
2459 if (*p == '\r' || *p == '\n') {
2460 id_len = p - id;
2461 if (*p == '\r')
2462 p++;
2463 break;
2464 }
2465 p++;
2466 }
2467
2468 if (p >= q || *p != '\n')
2469 return AVERROR_INVALIDDATA;
2470 p++;
2471
2472 settings = p;
2473 settings_len = -1;
2474 while (p < q) {
2475 if (*p == '\r' || *p == '\n') {
2476 settings_len = p - settings;
2477 if (*p == '\r')
2478 p++;
2479 break;
2480 }
2481 p++;
2482 }
2483
2484 if (p >= q || *p != '\n')
2485 return AVERROR_INVALIDDATA;
2486 p++;
2487
2488 text = p;
2489 text_len = q - p;
2490 while (text_len > 0) {
2491 const int len = text_len - 1;
2492 const uint8_t c = p[len];
2493 if (c != '\r' && c != '\n')
2494 break;
2495 text_len = len;
2496 }
2497
2498 if (text_len <= 0)
2499 return AVERROR_INVALIDDATA;
2500
2501 pkt = av_mallocz(sizeof(*pkt));
2502 err = av_new_packet(pkt, text_len);
2503 if (err < 0) {
2504 av_free(pkt);
2505 return AVERROR(err);
2506 }
2507
2508 memcpy(pkt->data, text, text_len);
2509
2510 if (id_len > 0) {
2511 buf = av_packet_new_side_data(pkt,
2512 AV_PKT_DATA_WEBVTT_IDENTIFIER,
2513 id_len);
Michael Niedermayerfb33bff2014-08-15 18:33:212514 if (!buf) {
Matthew Heaney818ebe92013-08-08 22:40:032515 av_free(pkt);
2516 return AVERROR(ENOMEM);
2517 }
2518 memcpy(buf, id, id_len);
2519 }
2520
2521 if (settings_len > 0) {
2522 buf = av_packet_new_side_data(pkt,
2523 AV_PKT_DATA_WEBVTT_SETTINGS,
2524 settings_len);
Michael Niedermayerfb33bff2014-08-15 18:33:212525 if (!buf) {
Matthew Heaney818ebe92013-08-08 22:40:032526 av_free(pkt);
2527 return AVERROR(ENOMEM);
2528 }
2529 memcpy(buf, settings, settings_len);
2530 }
2531
2532 // Do we need this for subtitles?
2533 // pkt->flags = AV_PKT_FLAG_KEY;
2534
2535 pkt->stream_index = st->index;
2536 pkt->pts = timecode;
2537
2538 // Do we need this for subtitles?
2539 // pkt->dts = timecode;
2540
2541 pkt->duration = duration;
2542 pkt->pos = pos;
2543
2544 dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
2545 matroska->prev_pkt = pkt;
2546
2547 return 0;
2548}
2549
Luca Barbatoc831ebf2012-09-16 23:28:132550static int matroska_parse_frame(MatroskaDemuxContext *matroska,
Keiji Costantini84cfce92014-03-01 16:28:152551 MatroskaTrack *track, AVStream *st,
Luca Barbatoc831ebf2012-09-16 23:28:132552 uint8_t *data, int pkt_size,
Michael Niedermayer8c51ea52012-09-20 18:37:262553 uint64_t timecode, uint64_t lace_duration,
Vignesh Venkatasubramanian30c5c452013-02-13 21:51:482554 int64_t pos, int is_keyframe,
Vignesh Venkatasubramanian7b0a8392013-09-10 18:12:212555 uint8_t *additional, uint64_t additional_id, int additional_size,
Jan Gerberf4b1ca92013-11-14 11:58:282556 int64_t discard_padding)
Luca Barbatoc831ebf2012-09-16 23:28:132557{
2558 MatroskaTrackEncoding *encodings = track->encodings.elem;
2559 uint8_t *pkt_data = data;
2560 int offset = 0, res;
2561 AVPacket *pkt;
2562
Frank Galliganb8531032013-03-07 16:11:382563 if (encodings && !encodings->type && encodings->scope & 1) {
Luca Barbatoc831ebf2012-09-16 23:28:132564 res = matroska_decode_buffer(&pkt_data, &pkt_size, track);
2565 if (res < 0)
2566 return res;
2567 }
2568
Anton Khirnov9b6f47c2013-05-27 07:44:272569 if (st->codec->codec_id == AV_CODEC_ID_WAVPACK) {
2570 uint8_t *wv_data;
2571 res = matroska_parse_wavpack(track, pkt_data, &wv_data, &pkt_size);
2572 if (res < 0) {
Keiji Costantini84cfce92014-03-01 16:28:152573 av_log(matroska->ctx, AV_LOG_ERROR,
2574 "Error parsing a wavpack block.\n");
Anton Khirnov9b6f47c2013-05-27 07:44:272575 goto fail;
2576 }
2577 if (pkt_data != data)
2578 av_freep(&pkt_data);
2579 pkt_data = wv_data;
2580 }
2581
Carl Eugen Hoyos6c182002014-04-17 12:46:112582 if (st->codec->codec_id == AV_CODEC_ID_PRORES &&
2583 AV_RB32(&data[4]) != MKBETAG('i', 'c', 'p', 'f'))
Luca Barbatoc831ebf2012-09-16 23:28:132584 offset = 8;
2585
2586 pkt = av_mallocz(sizeof(AVPacket));
2587 /* XXX: prevent data copy... */
2588 if (av_new_packet(pkt, pkt_size + offset) < 0) {
2589 av_free(pkt);
Michael Niedermayer2fe4b622013-06-03 14:07:062590 res = AVERROR(ENOMEM);
2591 goto fail;
Luca Barbatoc831ebf2012-09-16 23:28:132592 }
2593
Carl Eugen Hoyos6c182002014-04-17 12:46:112594 if (st->codec->codec_id == AV_CODEC_ID_PRORES && offset == 8) {
Luca Barbatoc831ebf2012-09-16 23:28:132595 uint8_t *buf = pkt->data;
2596 bytestream_put_be32(&buf, pkt_size);
2597 bytestream_put_be32(&buf, MKBETAG('i', 'c', 'p', 'f'));
2598 }
2599
2600 memcpy(pkt->data + offset, pkt_data, pkt_size);
2601
2602 if (pkt_data != data)
Michael Niedermayer0722b4d2013-06-03 14:05:092603 av_freep(&pkt_data);
Luca Barbatoc831ebf2012-09-16 23:28:132604
Keiji Costantini84cfce92014-03-01 16:28:152605 pkt->flags = is_keyframe;
Luca Barbatoc831ebf2012-09-16 23:28:132606 pkt->stream_index = st->index;
2607
Vignesh Venkatasubramanian30c5c452013-02-13 21:51:482608 if (additional_size > 0) {
2609 uint8_t *side_data = av_packet_new_side_data(pkt,
2610 AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL,
Michael Niedermayera08ebf02013-02-13 23:55:252611 additional_size + 8);
Michael Niedermayerfb33bff2014-08-15 18:33:212612 if (!side_data) {
Michael Niedermayerfdda9b42013-03-19 13:07:392613 av_free_packet(pkt);
2614 av_free(pkt);
Vignesh Venkatasubramanian30c5c452013-02-13 21:51:482615 return AVERROR(ENOMEM);
2616 }
Michael Niedermayera08ebf02013-02-13 23:55:252617 AV_WB64(side_data, additional_id);
Vignesh Venkatasubramanian30c5c452013-02-13 21:51:482618 memcpy(side_data + 8, additional, additional_size);
2619 }
2620
Vignesh Venkatasubramanian7b0a8392013-09-10 18:12:212621 if (discard_padding) {
2622 uint8_t *side_data = av_packet_new_side_data(pkt,
2623 AV_PKT_DATA_SKIP_SAMPLES,
2624 10);
Michael Niedermayerfb33bff2014-08-15 18:33:212625 if (!side_data) {
Vignesh Venkatasubramanian7b0a8392013-09-10 18:12:212626 av_free_packet(pkt);
2627 av_free(pkt);
2628 return AVERROR(ENOMEM);
2629 }
2630 AV_WL32(side_data, 0);
2631 AV_WL32(side_data + 4, av_rescale_q(discard_padding,
2632 (AVRational){1, 1000000000},
2633 (AVRational){1, st->codec->sample_rate}));
2634 }
2635
Luca Barbatoc831ebf2012-09-16 23:28:132636 if (track->ms_compat)
2637 pkt->dts = timecode;
2638 else
2639 pkt->pts = timecode;
2640 pkt->pos = pos;
Michael Niedermayer8c51ea52012-09-20 18:37:262641 if (st->codec->codec_id == AV_CODEC_ID_SUBRIP) {
2642 /*
2643 * For backward compatibility.
2644 * Historically, we have put subtitle duration
2645 * in convergence_duration, on the off chance
2646 * that the time_scale is less than 1us, which
2647 * could result in a 32bit overflow on the
2648 * normal duration field.
2649 */
2650 pkt->convergence_duration = lace_duration;
2651 }
2652
2653 if (track->type != MATROSKA_TRACK_TYPE_SUBTITLE ||
2654 lace_duration <= INT_MAX) {
2655 /*
2656 * For non subtitle tracks, just store the duration
2657 * as normal.
2658 *
2659 * If it's a subtitle track and duration value does
2660 * not overflow a uint32, then also store it normally.
2661 */
2662 pkt->duration = lace_duration;
2663 }
Luca Barbatoc831ebf2012-09-16 23:28:132664
Clément Bœsch7c1a0022013-01-03 02:06:432665 dynarray_add(&matroska->packets, &matroska->num_packets, pkt);
2666 matroska->prev_pkt = pkt;
Luca Barbatoc831ebf2012-09-16 23:28:132667
2668 return 0;
Keiji Costantini84cfce92014-03-01 16:28:152669
Anton Khirnov9b6f47c2013-05-27 07:44:272670fail:
2671 if (pkt_data != data)
2672 av_freep(&pkt_data);
2673 return res;
Luca Barbatoc831ebf2012-09-16 23:28:132674}
2675
Aurelien Jacobsf7b96872008-08-05 00:42:052676static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data,
2677 int size, int64_t pos, uint64_t cluster_time,
Luca Barbato7d843102012-09-17 00:48:022678 uint64_t block_duration, int is_keyframe,
Vignesh Venkatasubramanian30c5c452013-02-13 21:51:482679 uint8_t *additional, uint64_t additional_id, int additional_size,
Jan Gerberf4b1ca92013-11-14 11:58:282680 int64_t cluster_pos, int64_t discard_padding)
David Conradb061d892007-06-04 22:10:542681{
Aurelien Jacobsf14a2012008-09-09 11:54:352682 uint64_t timecode = AV_NOPTS_VALUE;
Aurelien Jacobs009ecd52008-08-05 00:40:122683 MatroskaTrack *track;
Aurelien Jacobsa3467f82008-09-06 23:44:292684 int res = 0;
David Conradb061d892007-06-04 22:10:542685 AVStream *st;
David Conradb061d892007-06-04 22:10:542686 int16_t block_time;
2687 uint32_t *lace_size = NULL;
2688 int n, flags, laces = 0;
2689 uint64_t num;
Michael Niedermayer6158a3b2013-07-15 15:13:452690 int trust_default_duration = 1;
David Conradb061d892007-06-04 22:10:542691
Aurelien Jacobsc1e01132008-08-05 00:42:522692 if ((n = matroska_ebmlnum_uint(matroska, data, size, &num)) < 0) {
David Conradb061d892007-06-04 22:10:542693 av_log(matroska->ctx, AV_LOG_ERROR, "EBML block data error\n");
Luca Barbato721af292012-04-30 00:39:312694 return n;
David Conradb061d892007-06-04 22:10:542695 }
2696 data += n;
2697 size -= n;
2698
David Conradb061d892007-06-04 22:10:542699 track = matroska_find_track_by_num(matroska, num);
Ronald S. Bultjed31fb1a2011-10-29 23:17:512700 if (!track || !track->stream) {
David Conradb061d892007-06-04 22:10:542701 av_log(matroska->ctx, AV_LOG_INFO,
Aurelien Jacobs009ecd52008-08-05 00:40:122702 "Invalid stream %"PRIu64" or size %u\n", num, size);
Reimar Döffingerd4931702012-02-13 22:06:192703 return AVERROR_INVALIDDATA;
Ronald S. Bultjed31fb1a2011-10-29 23:17:512704 } else if (size <= 3)
2705 return 0;
Aurelien Jacobs009ecd52008-08-05 00:40:122706 st = track->stream;
Aurelien Jacobs16f97ab2008-08-05 00:41:102707 if (st->discard >= AVDISCARD_ALL)
David Conradb061d892007-06-04 22:10:542708 return res;
Michael Niedermayer5864ce12012-09-20 19:46:352709 av_assert1(block_duration != AV_NOPTS_VALUE);
David Conradb061d892007-06-04 22:10:542710
Michael Niedermayer729fa552013-05-19 21:38:012711 block_time = sign_extend(AV_RB16(data), 16);
Keiji Costantini84cfce92014-03-01 16:28:152712 data += 2;
2713 flags = *data++;
2714 size -= 3;
David Conradb061d892007-06-04 22:10:542715 if (is_keyframe == -1)
Jean-Daniel Dupascc947f02010-03-31 12:29:582716 is_keyframe = flags & 0x80 ? AV_PKT_FLAG_KEY : 0;
David Conradb061d892007-06-04 22:10:542717
Keiji Costantini84cfce92014-03-01 16:28:152718 if (cluster_time != (uint64_t) -1 &&
2719 (block_time >= 0 || cluster_time >= -block_time)) {
Anton Khirnoveb3b5502014-04-29 10:03:132720 timecode = cluster_time + block_time - track->codec_delay;
Keiji Costantini84cfce92014-03-01 16:28:152721 if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE &&
2722 timecode < track->end_timecode)
Aurelien Jacobs82360e62008-09-09 12:07:102723 is_keyframe = 0; /* overlapping subtitles are not key frame */
Aurelien Jacobsa8fd7e72008-09-12 00:06:062724 if (is_keyframe)
Keiji Costantini84cfce92014-03-01 16:28:152725 av_add_index_entry(st, cluster_pos, timecode, 0, 0,
2726 AVINDEX_KEYFRAME);
Aurelien Jacobsf14a2012008-09-09 11:54:352727 }
2728
Keiji Costantini84cfce92014-03-01 16:28:152729 if (matroska->skip_to_keyframe &&
2730 track->type != MATROSKA_TRACK_TYPE_SUBTITLE) {
Reimar Döffinger4a958762012-04-13 22:17:302731 if (timecode < matroska->skip_to_timecode)
David Conradb061d892007-06-04 22:10:542732 return res;
Monty Montgomeryf6622f92013-09-11 06:00:312733 if (is_keyframe)
2734 matroska->skip_to_keyframe = 0;
2735 else if (!st->skip_to_keyframe) {
Reimar Döffinger4a958762012-04-13 22:17:302736 av_log(matroska->ctx, AV_LOG_ERROR, "File is broken, keyframes not correctly marked!\n");
2737 matroska->skip_to_keyframe = 0;
2738 }
David Conradb061d892007-06-04 22:10:542739 }
2740
Dale Curtis81e85bc2013-03-26 21:12:302741 res = matroska_parse_laces(matroska, &data, &size, (flags & 0x06) >> 1,
Luca Barbato2d0e7712012-09-16 23:58:322742 &lace_size, &laces);
David Conradb061d892007-06-04 22:10:542743
Luca Barbatoc831ebf2012-09-16 23:28:132744 if (res)
2745 goto end;
Aurelien Jacobseabb8ba2007-06-04 22:19:172746
Michael Niedermayer6158a3b2013-07-15 15:13:452747 if (track->audio.samplerate == 8000) {
2748 // If this is needed for more codecs, then add them here
2749 if (st->codec->codec_id == AV_CODEC_ID_AC3) {
Michael Niedermayerb3d9ab12014-03-07 22:46:372750 if (track->audio.samplerate != st->codec->sample_rate || !st->codec->frame_size)
Michael Niedermayer6158a3b2013-07-15 15:13:452751 trust_default_duration = 0;
2752 }
2753 }
2754
2755 if (!block_duration && trust_default_duration)
Michael Niedermayer5864ce12012-09-20 19:46:352756 block_duration = track->default_duration * laces / matroska->time_scale;
Michael Niedermayer8c51ea52012-09-20 18:37:262757
2758 if (cluster_time != (uint64_t)-1 && (block_time >= 0 || cluster_time >= -block_time))
Luca Barbato7d843102012-09-17 00:48:022759 track->end_timecode =
2760 FFMAX(track->end_timecode, timecode + block_duration);
Michael Niedermayer8c51ea52012-09-20 18:37:262761
Luca Barbatoc831ebf2012-09-16 23:28:132762 for (n = 0; n < laces; n++) {
Michael Niedermayer5864ce12012-09-20 19:46:352763 int64_t lace_duration = block_duration*(n+1) / laces - block_duration*n / laces;
Michael Niedermayer8c51ea52012-09-20 18:37:262764
2765 if (lace_size[n] > size) {
2766 av_log(matroska->ctx, AV_LOG_ERROR, "Invalid packet size\n");
David Conradb061d892007-06-04 22:10:542767 break;
David Conradb061d892007-06-04 22:10:542768 }
Michael Niedermayer8c51ea52012-09-20 18:37:262769
Luca Barbatoc831ebf2012-09-16 23:28:132770 if ((st->codec->codec_id == AV_CODEC_ID_RA_288 ||
Keiji Costantini84cfce92014-03-01 16:28:152771 st->codec->codec_id == AV_CODEC_ID_COOK ||
2772 st->codec->codec_id == AV_CODEC_ID_SIPR ||
Luca Barbatoc831ebf2012-09-16 23:28:132773 st->codec->codec_id == AV_CODEC_ID_ATRAC3) &&
Keiji Costantini84cfce92014-03-01 16:28:152774 st->codec->block_align && track->audio.sub_packet_size) {
Luca Barbato25a80a92013-03-29 11:51:512775 res = matroska_parse_rm_audio(matroska, track, st, data,
2776 lace_size[n],
Michael Niedermayera6ec1e42012-09-20 21:43:202777 timecode, pos);
Luca Barbatoc831ebf2012-09-16 23:28:132778 if (res)
2779 goto end;
David Conradb061d892007-06-04 22:10:542780
Matthew Heaney818ebe92013-08-08 22:40:032781 } else if (st->codec->codec_id == AV_CODEC_ID_WEBVTT) {
2782 res = matroska_parse_webvtt(matroska, track, st,
2783 data, lace_size[n],
2784 timecode, lace_duration,
2785 pos);
2786 if (res)
2787 goto end;
Luca Barbatoc831ebf2012-09-16 23:28:132788 } else {
2789 res = matroska_parse_frame(matroska, track, st, data, lace_size[n],
Michael Niedermayerb3d9ab12014-03-07 22:46:372790 timecode, lace_duration, pos,
2791 !n ? is_keyframe : 0,
2792 additional, additional_id, additional_size,
2793 discard_padding);
Luca Barbatoc831ebf2012-09-16 23:28:132794 if (res)
2795 goto end;
David Conradb061d892007-06-04 22:10:542796 }
Luca Barbatoc831ebf2012-09-16 23:28:132797
2798 if (timecode != AV_NOPTS_VALUE)
Michael Niedermayer8c51ea52012-09-20 18:37:262799 timecode = lace_duration ? timecode + lace_duration : AV_NOPTS_VALUE;
Luca Barbatoc831ebf2012-09-16 23:28:132800 data += lace_size[n];
2801 size -= lace_size[n];
David Conradb061d892007-06-04 22:10:542802 }
2803
Dale Curtis31168582012-04-13 04:24:042804end:
David Conradb061d892007-06-04 22:10:542805 av_free(lace_size);
Aurelien Jacobsa3467f82008-09-06 23:44:292806 return res;
David Conradb061d892007-06-04 22:10:542807}
2808
Dale Curtis8336eb62012-04-19 18:12:242809static int matroska_parse_cluster_incremental(MatroskaDemuxContext *matroska)
2810{
2811 EbmlList *blocks_list;
2812 MatroskaBlock *blocks;
2813 int i, res;
2814 res = ebml_parse(matroska,
2815 matroska_cluster_incremental_parsing,
2816 &matroska->current_cluster);
2817 if (res == 1) {
2818 /* New Cluster */
2819 if (matroska->current_cluster_pos)
2820 ebml_level_end(matroska);
2821 ebml_free(matroska_cluster, &matroska->current_cluster);
2822 memset(&matroska->current_cluster, 0, sizeof(MatroskaCluster));
2823 matroska->current_cluster_num_blocks = 0;
Keiji Costantini84cfce92014-03-01 16:28:152824 matroska->current_cluster_pos = avio_tell(matroska->ctx->pb);
2825 matroska->prev_pkt = NULL;
Dale Curtis8336eb62012-04-19 18:12:242826 /* sizeof the ID which was already read */
2827 if (matroska->current_id)
2828 matroska->current_cluster_pos -= 4;
2829 res = ebml_parse(matroska,
2830 matroska_clusters_incremental,
2831 &matroska->current_cluster);
2832 /* Try parsing the block again. */
2833 if (res == 1)
2834 res = ebml_parse(matroska,
2835 matroska_cluster_incremental_parsing,
2836 &matroska->current_cluster);
2837 }
2838
2839 if (!res &&
2840 matroska->current_cluster_num_blocks <
Keiji Costantini84cfce92014-03-01 16:28:152841 matroska->current_cluster.blocks.nb_elem) {
Dale Curtis8336eb62012-04-19 18:12:242842 blocks_list = &matroska->current_cluster.blocks;
Keiji Costantini84cfce92014-03-01 16:28:152843 blocks = blocks_list->elem;
Dale Curtis8336eb62012-04-19 18:12:242844
2845 matroska->current_cluster_num_blocks = blocks_list->nb_elem;
Keiji Costantini84cfce92014-03-01 16:28:152846 i = blocks_list->nb_elem - 1;
Dale Curtis8336eb62012-04-19 18:12:242847 if (blocks[i].bin.size > 0 && blocks[i].bin.data) {
2848 int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1;
Vignesh Venkatasubramanian30c5c452013-02-13 21:51:482849 uint8_t* additional = blocks[i].additional.size > 0 ?
2850 blocks[i].additional.data : NULL;
Dale Curtis8336eb62012-04-19 18:12:242851 if (!blocks[i].non_simple)
Michael Niedermayer3bbf3f72012-04-23 22:19:552852 blocks[i].duration = 0;
Keiji Costantini84cfce92014-03-01 16:28:152853 res = matroska_parse_block(matroska, blocks[i].bin.data,
2854 blocks[i].bin.size, blocks[i].bin.pos,
Dale Curtis8336eb62012-04-19 18:12:242855 matroska->current_cluster.timecode,
2856 blocks[i].duration, is_keyframe,
Vignesh Venkatasubramanian30c5c452013-02-13 21:51:482857 additional, blocks[i].additional_id,
2858 blocks[i].additional.size,
Vignesh Venkatasubramanian7b0a8392013-09-10 18:12:212859 matroska->current_cluster_pos,
2860 blocks[i].discard_padding);
Dale Curtis8336eb62012-04-19 18:12:242861 }
2862 }
2863
Dale Curtis8336eb62012-04-19 18:12:242864 return res;
2865}
2866
Aurelien Jacobsf7b96872008-08-05 00:42:052867static int matroska_parse_cluster(MatroskaDemuxContext *matroska)
David Conradb061d892007-06-04 22:10:542868{
Aurelien Jacobs209472b2008-08-05 00:41:052869 MatroskaCluster cluster = { 0 };
2870 EbmlList *blocks_list;
2871 MatroskaBlock *blocks;
Aurelien Jacobs24c3da12008-09-06 23:39:592872 int i, res;
Dale Curtis8336eb62012-04-19 18:12:242873 int64_t pos;
Keiji Costantini84cfce92014-03-01 16:28:152874
Dale Curtis8336eb62012-04-19 18:12:242875 if (!matroska->contains_ssa)
2876 return matroska_parse_cluster_incremental(matroska);
2877 pos = avio_tell(matroska->ctx->pb);
Aurelien Jacobsd5e34dc2008-09-28 23:06:252878 matroska->prev_pkt = NULL;
Aurelien Jacobs80702032010-06-11 16:36:512879 if (matroska->current_id)
Aurelien Jacobs8bc98ba2008-08-25 00:09:082880 pos -= 4; /* sizeof the ID which was already read */
Keiji Costantini84cfce92014-03-01 16:28:152881 res = ebml_parse(matroska, matroska_clusters, &cluster);
Aurelien Jacobs209472b2008-08-05 00:41:052882 blocks_list = &cluster.blocks;
Keiji Costantini84cfce92014-03-01 16:28:152883 blocks = blocks_list->elem;
Michael Niedermayerb3d9ab12014-03-07 22:46:372884 for (i = 0; i < blocks_list->nb_elem; i++)
Aurelien Jacobs37dd2352010-05-25 22:55:122885 if (blocks[i].bin.size > 0 && blocks[i].bin.data) {
Aurelien Jacobs194d4b42009-08-10 18:06:142886 int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1;
Keiji Costantini84cfce92014-03-01 16:28:152887 res = matroska_parse_block(matroska, blocks[i].bin.data,
2888 blocks[i].bin.size, blocks[i].bin.pos,
2889 cluster.timecode, blocks[i].duration,
Michael Niedermayerb3d9ab12014-03-07 22:46:372890 is_keyframe, NULL, 0, 0, pos,
2891 blocks[i].discard_padding);
Aurelien Jacobs194d4b42009-08-10 18:06:142892 }
Aurelien Jacobs209472b2008-08-05 00:41:052893 ebml_free(matroska_cluster, &cluster);
David Conradb061d892007-06-04 22:10:542894 return res;
2895}
2896
Aurelien Jacobsf7b96872008-08-05 00:42:052897static int matroska_read_packet(AVFormatContext *s, AVPacket *pkt)
David Conradb061d892007-06-04 22:10:542898{
2899 MatroskaDemuxContext *matroska = s->priv_data;
David Conradb061d892007-06-04 22:10:542900
Hendrik Leppkes8689d872011-07-06 17:57:112901 while (matroska_deliver_packet(matroska, pkt)) {
Reimar Döffingerd4931702012-02-13 22:06:192902 int64_t pos = avio_tell(matroska->ctx->pb);
David Conradb061d892007-06-04 22:10:542903 if (matroska->done)
Aurelien Jacobs9ebeea82009-02-19 21:01:452904 return AVERROR_EOF;
Reimar Döffingerd4931702012-02-13 22:06:192905 if (matroska_parse_cluster(matroska) < 0)
2906 matroska_resync(matroska, pos);
David Conradb061d892007-06-04 22:10:542907 }
2908
Hendrik Leppkes8689d872011-07-06 17:57:112909 return 0;
David Conradb061d892007-06-04 22:10:542910}
2911
Aurelien Jacobsf7b96872008-08-05 00:42:052912static int matroska_read_seek(AVFormatContext *s, int stream_index,
2913 int64_t timestamp, int flags)
David Conradb061d892007-06-04 22:10:542914{
2915 MatroskaDemuxContext *matroska = s->priv_data;
Xiaohan Wang33301f02014-11-06 20:59:542916 MatroskaTrack *tracks = NULL;
David Conradb061d892007-06-04 22:10:542917 AVStream *st = s->streams[stream_index];
Aurelien Jacobsc1658252008-09-09 12:10:252918 int i, index, index_sub, index_min;
David Conradb061d892007-06-04 22:10:542919
Aaron Colwell31ad14c2011-07-09 05:48:432920 /* Parse the CUES now since we need the index data to seek. */
Reimar Döffinger47e015e2012-02-12 13:09:032921 if (matroska->cues_parsing_deferred > 0) {
Aaron Colwell31ad14c2011-07-09 05:48:432922 matroska->cues_parsing_deferred = 0;
Reimar Döffinger47e015e2012-02-12 13:09:032923 matroska_parse_cues(matroska);
Aaron Colwell31ad14c2011-07-09 05:48:432924 }
2925
Aurelien Jacobsa8fd7e72008-09-12 00:06:062926 if (!st->nb_index_entries)
Reimar Döffinger47e015e2012-02-12 13:09:032927 goto err;
Aurelien Jacobsa8fd7e72008-09-12 00:06:062928 timestamp = FFMAX(timestamp, st->index_entries[0].timestamp);
Aurelien Jacobsdfbbbdc2008-08-24 23:57:292929
Michael Niedermayera3920182014-10-22 02:21:392930 if ((index = av_index_search_timestamp(st, timestamp, flags)) < 0 || index == st->nb_index_entries - 1) {
Keiji Costantini84cfce92014-03-01 16:28:152931 avio_seek(s->pb, st->index_entries[st->nb_index_entries - 1].pos,
2932 SEEK_SET);
John Stebbinscdc2c1c2011-07-01 15:57:422933 matroska->current_id = 0;
Michael Niedermayera3920182014-10-22 02:21:392934 while ((index = av_index_search_timestamp(st, timestamp, flags)) < 0 || index == st->nb_index_entries - 1) {
Aurelien Jacobs0dbddda2008-08-27 19:58:552935 matroska_clear_queue(matroska);
2936 if (matroska_parse_cluster(matroska) < 0)
2937 break;
2938 }
Aurelien Jacobs6bef5f92008-08-27 19:57:422939 }
David Conradb061d892007-06-04 22:10:542940
Aurelien Jacobs243cc4c2007-12-29 18:35:382941 matroska_clear_queue(matroska);
Reimar Döffinger47e015e2012-02-12 13:09:032942 if (index < 0 || (matroska->cues_parsing_deferred < 0 && index == st->nb_index_entries - 1))
2943 goto err;
Aurelien Jacobs243cc4c2007-12-29 18:35:382944
Aurelien Jacobsc1658252008-09-09 12:10:252945 index_min = index;
Xiaohan Wang33301f02014-11-06 20:59:542946 tracks = matroska->tracks.elem;
Keiji Costantini84cfce92014-03-01 16:28:152947 for (i = 0; i < matroska->tracks.nb_elem; i++) {
2948 tracks[i].audio.pkt_cnt = 0;
Reimar Döffingerb09e5062011-02-26 11:52:012949 tracks[i].audio.sub_packet_cnt = 0;
Keiji Costantini84cfce92014-03-01 16:28:152950 tracks[i].audio.buf_timecode = AV_NOPTS_VALUE;
2951 tracks[i].end_timecode = 0;
2952 if (tracks[i].type == MATROSKA_TRACK_TYPE_SUBTITLE &&
Michael Niedermayerb3d9ab12014-03-07 22:46:372953 tracks[i].stream->discard != AVDISCARD_ALL) {
Keiji Costantini84cfce92014-03-01 16:28:152954 index_sub = av_index_search_timestamp(
2955 tracks[i].stream, st->index_entries[index].timestamp,
2956 AVSEEK_FLAG_BACKWARD);
Michael Niedermayerb3d9ab12014-03-07 22:46:372957 while (index_sub >= 0 &&
Michael Niedermayerb3dfebd2014-05-30 03:21:242958 index_min > 0 &&
Michael Niedermayerb3d9ab12014-03-07 22:46:372959 tracks[i].stream->index_entries[index_sub].pos < st->index_entries[index_min].pos &&
2960 st->index_entries[index].timestamp - tracks[i].stream->index_entries[index_sub].timestamp < 30000000000 / matroska->time_scale)
Michael Niedermayer4758e322013-05-20 02:00:302961 index_min--;
Aurelien Jacobsc1658252008-09-09 12:10:252962 }
2963 }
2964
Anton Khirnovf59d8ff2011-02-28 13:57:542965 avio_seek(s->pb, st->index_entries[index_min].pos, SEEK_SET);
Keiji Costantini84cfce92014-03-01 16:28:152966 matroska->current_id = 0;
Michael Niedermayer7c00d852013-02-07 20:34:352967 if (flags & AVSEEK_FLAG_ANY) {
2968 st->skip_to_keyframe = 0;
2969 matroska->skip_to_timecode = timestamp;
2970 } else {
2971 st->skip_to_keyframe = 1;
2972 matroska->skip_to_timecode = st->index_entries[index].timestamp;
2973 }
2974 matroska->skip_to_keyframe = 1;
Keiji Costantini84cfce92014-03-01 16:28:152975 matroska->done = 0;
Michael Niedermayerb3d9ab12014-03-07 22:46:372976 matroska->num_levels = 0;
Anton Khirnova2faa952011-10-16 13:03:302977 ff_update_cur_dts(s, st, st->index_entries[index].timestamp);
David Conradb061d892007-06-04 22:10:542978 return 0;
Reimar Döffinger47e015e2012-02-12 13:09:032979err:
2980 // slightly hackish but allows proper fallback to
2981 // the generic seeking code.
2982 matroska_clear_queue(matroska);
2983 matroska->current_id = 0;
Reimar Döffinger4a958762012-04-13 22:17:302984 st->skip_to_keyframe =
Reimar Döffinger47e015e2012-02-12 13:09:032985 matroska->skip_to_keyframe = 0;
2986 matroska->done = 0;
2987 matroska->num_levels = 0;
2988 return -1;
David Conradb061d892007-06-04 22:10:542989}
2990
Aurelien Jacobsf7b96872008-08-05 00:42:052991static int matroska_read_close(AVFormatContext *s)
David Conradb061d892007-06-04 22:10:542992{
2993 MatroskaDemuxContext *matroska = s->priv_data;
Aurelien Jacobs2cbc8812008-08-05 00:40:312994 MatroskaTrack *tracks = matroska->tracks.elem;
Aurelien Jacobs70109c02008-08-05 00:41:132995 int n;
David Conradb061d892007-06-04 22:10:542996
Aurelien Jacobs34c9c1b2007-12-29 18:32:472997 matroska_clear_queue(matroska);
David Conradb061d892007-06-04 22:10:542998
Keiji Costantini84cfce92014-03-01 16:28:152999 for (n = 0; n < matroska->tracks.nb_elem; n++)
Aurelien Jacobs2cbc8812008-08-05 00:40:313000 if (tracks[n].type == MATROSKA_TRACK_TYPE_AUDIO)
3001 av_free(tracks[n].audio.buf);
Dale Curtis8336eb62012-04-19 18:12:243002 ebml_free(matroska_cluster, &matroska->current_cluster);
Aurelien Jacobsce6f28b2008-08-05 00:40:583003 ebml_free(matroska_segment, matroska);
David Conradb061d892007-06-04 22:10:543004
3005 return 0;
3006}
3007
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373008typedef struct {
3009 int64_t start_time_ns;
3010 int64_t end_time_ns;
3011 int64_t start_offset;
3012 int64_t end_offset;
3013} CueDesc;
3014
3015/* This function searches all the Cues and returns the CueDesc corresponding the
3016 * the timestamp ts. Returned CueDesc will be such that start_time_ns <= ts <
3017 * end_time_ns. All 4 fields will be set to -1 if ts >= file's duration.
3018 */
3019static CueDesc get_cue_desc(AVFormatContext *s, int64_t ts, int64_t cues_start) {
3020 MatroskaDemuxContext *matroska = s->priv_data;
3021 CueDesc cue_desc;
3022 int i;
3023 int nb_index_entries = s->streams[0]->nb_index_entries;
3024 AVIndexEntry *index_entries = s->streams[0]->index_entries;
3025 if (ts >= matroska->duration * matroska->time_scale) return (CueDesc) {-1, -1, -1, -1};
3026 for (i = 1; i < nb_index_entries; i++) {
3027 if (index_entries[i - 1].timestamp * matroska->time_scale <= ts &&
3028 index_entries[i].timestamp * matroska->time_scale > ts) {
3029 break;
3030 }
3031 }
3032 --i;
3033 cue_desc.start_time_ns = index_entries[i].timestamp * matroska->time_scale;
3034 cue_desc.start_offset = index_entries[i].pos - matroska->segment_start;
3035 if (i != nb_index_entries - 1) {
3036 cue_desc.end_time_ns = index_entries[i + 1].timestamp * matroska->time_scale;
3037 cue_desc.end_offset = index_entries[i + 1].pos - matroska->segment_start;
3038 } else {
3039 cue_desc.end_time_ns = matroska->duration * matroska->time_scale;
3040 // FIXME: this needs special handling for files where Cues appear
3041 // before Clusters. the current logic assumes Cues appear after
3042 // Clusters.
3043 cue_desc.end_offset = cues_start - matroska->segment_start;
3044 }
3045 return cue_desc;
3046}
3047
3048static int webm_clusters_start_with_keyframe(AVFormatContext *s)
3049{
3050 MatroskaDemuxContext *matroska = s->priv_data;
3051 int64_t cluster_pos, before_pos;
3052 int index, rv = 1;
3053 if (s->streams[0]->nb_index_entries <= 0) return 0;
3054 // seek to the first cluster using cues.
3055 index = av_index_search_timestamp(s->streams[0], 0, 0);
3056 if (index < 0) return 0;
3057 cluster_pos = s->streams[0]->index_entries[index].pos;
3058 before_pos = avio_tell(s->pb);
3059 while (1) {
3060 int64_t cluster_id = 0, cluster_length = 0;
3061 AVPacket *pkt;
3062 avio_seek(s->pb, cluster_pos, SEEK_SET);
3063 // read cluster id and length
3064 ebml_read_num(matroska, matroska->ctx->pb, 4, &cluster_id);
3065 ebml_read_length(matroska, matroska->ctx->pb, &cluster_length);
3066 if (cluster_id != 0xF43B675) { // done with all clusters
3067 break;
3068 }
3069 avio_seek(s->pb, cluster_pos, SEEK_SET);
3070 matroska->current_id = 0;
3071 matroska_clear_queue(matroska);
3072 if (matroska_parse_cluster(matroska) < 0 ||
3073 matroska->num_packets <= 0) {
3074 break;
3075 }
3076 pkt = matroska->packets[0];
3077 cluster_pos += cluster_length + 12; // 12 is the offset of the cluster id and length.
3078 if (!(pkt->flags & AV_PKT_FLAG_KEY)) {
3079 rv = 0;
3080 break;
3081 }
3082 }
3083 avio_seek(s->pb, before_pos, SEEK_SET);
3084 return rv;
3085}
3086
3087static int buffer_size_after_time_downloaded(int64_t time_ns, double search_sec, int64_t bps,
3088 double min_buffer, double* buffer,
3089 double* sec_to_download, AVFormatContext *s,
3090 int64_t cues_start)
3091{
3092 double nano_seconds_per_second = 1000000000.0;
3093 double time_sec = time_ns / nano_seconds_per_second;
3094 int rv = 0;
3095 int64_t time_to_search_ns = (int64_t)(search_sec * nano_seconds_per_second);
3096 int64_t end_time_ns = time_ns + time_to_search_ns;
3097 double sec_downloaded = 0.0;
3098 CueDesc desc_curr = get_cue_desc(s, time_ns, cues_start);
3099 if (desc_curr.start_time_ns == -1)
3100 return -1;
3101 *sec_to_download = 0.0;
3102
3103 // Check for non cue start time.
3104 if (time_ns > desc_curr.start_time_ns) {
3105 int64_t cue_nano = desc_curr.end_time_ns - time_ns;
3106 double percent = (double)(cue_nano) / (desc_curr.end_time_ns - desc_curr.start_time_ns);
3107 double cueBytes = (desc_curr.end_offset - desc_curr.start_offset) * percent;
3108 double timeToDownload = (cueBytes * 8.0) / bps;
3109
3110 sec_downloaded += (cue_nano / nano_seconds_per_second) - timeToDownload;
3111 *sec_to_download += timeToDownload;
3112
3113 // Check if the search ends within the first cue.
3114 if (desc_curr.end_time_ns >= end_time_ns) {
3115 double desc_end_time_sec = desc_curr.end_time_ns / nano_seconds_per_second;
3116 double percent_to_sub = search_sec / (desc_end_time_sec - time_sec);
3117 sec_downloaded = percent_to_sub * sec_downloaded;
3118 *sec_to_download = percent_to_sub * *sec_to_download;
3119 }
3120
3121 if ((sec_downloaded + *buffer) <= min_buffer) {
3122 return 1;
3123 }
3124
3125 // Get the next Cue.
3126 desc_curr = get_cue_desc(s, desc_curr.end_time_ns, cues_start);
3127 }
3128
3129 while (desc_curr.start_time_ns != -1) {
3130 int64_t desc_bytes = desc_curr.end_offset - desc_curr.start_offset;
3131 int64_t desc_ns = desc_curr.end_time_ns - desc_curr.start_time_ns;
3132 double desc_sec = desc_ns / nano_seconds_per_second;
3133 double bits = (desc_bytes * 8.0);
3134 double time_to_download = bits / bps;
3135
3136 sec_downloaded += desc_sec - time_to_download;
3137 *sec_to_download += time_to_download;
3138
3139 if (desc_curr.end_time_ns >= end_time_ns) {
3140 double desc_end_time_sec = desc_curr.end_time_ns / nano_seconds_per_second;
3141 double percent_to_sub = search_sec / (desc_end_time_sec - time_sec);
3142 sec_downloaded = percent_to_sub * sec_downloaded;
3143 *sec_to_download = percent_to_sub * *sec_to_download;
3144
3145 if ((sec_downloaded + *buffer) <= min_buffer)
3146 rv = 1;
3147 break;
3148 }
3149
3150 if ((sec_downloaded + *buffer) <= min_buffer) {
3151 rv = 1;
3152 break;
3153 }
3154
3155 desc_curr = get_cue_desc(s, desc_curr.end_time_ns, cues_start);
3156 }
3157 *buffer = *buffer + sec_downloaded;
3158 return rv;
3159}
3160
3161/* This function computes the bandwidth of the WebM file with the help of
3162 * buffer_size_after_time_downloaded() function. Both of these functions are
3163 * adapted from WebM Tools project and are adapted to work with FFmpeg's
3164 * Matroska parsing mechanism.
3165 *
3166 * Returns the bandwidth of the file on success; -1 on error.
3167 * */
3168static int64_t webm_dash_manifest_compute_bandwidth(AVFormatContext *s, int64_t cues_start)
3169{
3170 MatroskaDemuxContext *matroska = s->priv_data;
3171 AVStream *st = s->streams[0];
3172 double bandwidth = 0.0;
Michael Niedermayere240d012014-07-15 22:06:153173 int i;
3174
3175 for (i = 0; i < st->nb_index_entries; i++) {
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373176 int64_t prebuffer_ns = 1000000000;
3177 int64_t time_ns = st->index_entries[i].timestamp * matroska->time_scale;
3178 double nano_seconds_per_second = 1000000000.0;
3179 int64_t prebuffered_ns = time_ns + prebuffer_ns;
3180 double prebuffer_bytes = 0.0;
3181 int64_t temp_prebuffer_ns = prebuffer_ns;
3182 int64_t pre_bytes, pre_ns;
3183 double pre_sec, prebuffer, bits_per_second;
3184 CueDesc desc_beg = get_cue_desc(s, time_ns, cues_start);
3185
3186 // Start with the first Cue.
3187 CueDesc desc_end = desc_beg;
3188
3189 // Figure out how much data we have downloaded for the prebuffer. This will
3190 // be used later to adjust the bits per sample to try.
3191 while (desc_end.start_time_ns != -1 && desc_end.end_time_ns < prebuffered_ns) {
3192 // Prebuffered the entire Cue.
3193 prebuffer_bytes += desc_end.end_offset - desc_end.start_offset;
3194 temp_prebuffer_ns -= desc_end.end_time_ns - desc_end.start_time_ns;
3195 desc_end = get_cue_desc(s, desc_end.end_time_ns, cues_start);
3196 }
3197 if (desc_end.start_time_ns == -1) {
3198 // The prebuffer is larger than the duration.
Vignesh Venkatasubramanianb1071db2014-10-01 17:13:313199 if (matroska->duration * matroska->time_scale >= prebuffered_ns)
3200 return -1;
3201 bits_per_second = 0.0;
3202 } else {
3203 // The prebuffer ends in the last Cue. Estimate how much data was
3204 // prebuffered.
3205 pre_bytes = desc_end.end_offset - desc_end.start_offset;
3206 pre_ns = desc_end.end_time_ns - desc_end.start_time_ns;
3207 pre_sec = pre_ns / nano_seconds_per_second;
3208 prebuffer_bytes +=
3209 pre_bytes * ((temp_prebuffer_ns / nano_seconds_per_second) / pre_sec);
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373210
Vignesh Venkatasubramanianb1071db2014-10-01 17:13:313211 prebuffer = prebuffer_ns / nano_seconds_per_second;
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373212
Vignesh Venkatasubramanianb1071db2014-10-01 17:13:313213 // Set this to 0.0 in case our prebuffer buffers the entire video.
3214 bits_per_second = 0.0;
3215 do {
3216 int64_t desc_bytes = desc_end.end_offset - desc_beg.start_offset;
3217 int64_t desc_ns = desc_end.end_time_ns - desc_beg.start_time_ns;
3218 double desc_sec = desc_ns / nano_seconds_per_second;
3219 double calc_bits_per_second = (desc_bytes * 8) / desc_sec;
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373220
Vignesh Venkatasubramanianb1071db2014-10-01 17:13:313221 // Drop the bps by the percentage of bytes buffered.
3222 double percent = (desc_bytes - prebuffer_bytes) / desc_bytes;
3223 double mod_bits_per_second = calc_bits_per_second * percent;
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373224
Vignesh Venkatasubramanianb1071db2014-10-01 17:13:313225 if (prebuffer < desc_sec) {
3226 double search_sec =
3227 (double)(matroska->duration * matroska->time_scale) / nano_seconds_per_second;
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373228
Vignesh Venkatasubramanianb1071db2014-10-01 17:13:313229 // Add 1 so the bits per second should be a little bit greater than file
3230 // datarate.
3231 int64_t bps = (int64_t)(mod_bits_per_second) + 1;
3232 const double min_buffer = 0.0;
3233 double buffer = prebuffer;
3234 double sec_to_download = 0.0;
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373235
Vignesh Venkatasubramanianb1071db2014-10-01 17:13:313236 int rv = buffer_size_after_time_downloaded(prebuffered_ns, search_sec, bps,
3237 min_buffer, &buffer, &sec_to_download,
3238 s, cues_start);
3239 if (rv < 0) {
3240 return -1;
3241 } else if (rv == 0) {
3242 bits_per_second = (double)(bps);
3243 break;
3244 }
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373245 }
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373246
Vignesh Venkatasubramanianb1071db2014-10-01 17:13:313247 desc_end = get_cue_desc(s, desc_end.end_time_ns, cues_start);
3248 } while (desc_end.start_time_ns != -1);
3249 }
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373250 if (bandwidth < bits_per_second) bandwidth = bits_per_second;
3251 }
3252 return (int64_t)bandwidth;
3253}
3254
3255static int webm_dash_manifest_cues(AVFormatContext *s)
3256{
3257 MatroskaDemuxContext *matroska = s->priv_data;
3258 EbmlList *seekhead_list = &matroska->seekhead;
3259 MatroskaSeekhead *seekhead = seekhead_list->elem;
3260 char *buf;
Vignesh Venkatasubramanian080acf72014-08-25 16:15:133261 int64_t cues_start = -1, cues_end = -1, before_pos, bandwidth;
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373262 int i;
3263
3264 // determine cues start and end positions
3265 for (i = 0; i < seekhead_list->nb_elem; i++)
3266 if (seekhead[i].id == MATROSKA_ID_CUES)
3267 break;
3268
3269 if (i >= seekhead_list->nb_elem) return -1;
3270
3271 before_pos = avio_tell(matroska->ctx->pb);
3272 cues_start = seekhead[i].pos + matroska->segment_start;
3273 if (avio_seek(matroska->ctx->pb, cues_start, SEEK_SET) == cues_start) {
Vignesh Venkatasubramanian8acb7652014-10-01 17:13:303274 // cues_end is computed as cues_start + cues_length + length of the
3275 // Cues element ID + EBML length of the Cues element. cues_end is
3276 // inclusive and the above sum is reduced by 1.
3277 uint64_t cues_length = 0, cues_id = 0, bytes_read = 0;
3278 bytes_read += ebml_read_num(matroska, matroska->ctx->pb, 4, &cues_id);
3279 bytes_read += ebml_read_length(matroska, matroska->ctx->pb, &cues_length);
3280 cues_end = cues_start + cues_length + bytes_read - 1;
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373281 }
3282 avio_seek(matroska->ctx->pb, before_pos, SEEK_SET);
Vignesh Venkatasubramanian080acf72014-08-25 16:15:133283 if (cues_start == -1 || cues_end == -1) return -1;
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373284
3285 // parse the cues
3286 matroska_parse_cues(matroska);
3287
3288 // cues start
Reimar Döffingera0941c82014-07-29 19:10:393289 av_dict_set_int(&s->streams[0]->metadata, CUES_START, cues_start, 0);
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373290
3291 // cues end
Reimar Döffingera0941c82014-07-29 19:10:393292 av_dict_set_int(&s->streams[0]->metadata, CUES_END, cues_end, 0);
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373293
3294 // bandwidth
3295 bandwidth = webm_dash_manifest_compute_bandwidth(s, cues_start);
3296 if (bandwidth < 0) return -1;
Reimar Döffingera0941c82014-07-29 19:10:393297 av_dict_set_int(&s->streams[0]->metadata, BANDWIDTH, bandwidth, 0);
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373298
3299 // check if all clusters start with key frames
Reimar Döffingera0941c82014-07-29 19:10:393300 av_dict_set_int(&s->streams[0]->metadata, CLUSTER_KEYFRAME, webm_clusters_start_with_keyframe(s), 0);
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373301
3302 // store cue point timestamps as a comma separated list for checking subsegment alignment in
3303 // the muxer. assumes that each timestamp cannot be more than 20 characters long.
3304 buf = av_malloc(s->streams[0]->nb_index_entries * 20 * sizeof(char));
3305 if (!buf) return -1;
3306 strcpy(buf, "");
3307 for (i = 0; i < s->streams[0]->nb_index_entries; i++) {
3308 snprintf(buf, (i + 1) * 20 * sizeof(char),
3309 "%s%" PRId64, buf, s->streams[0]->index_entries[i].timestamp);
3310 if (i != s->streams[0]->nb_index_entries - 1)
3311 strncat(buf, ",", sizeof(char));
3312 }
3313 av_dict_set(&s->streams[0]->metadata, CUE_TIMESTAMPS, buf, 0);
3314 av_free(buf);
3315
3316 return 0;
3317}
3318
3319static int webm_dash_manifest_read_header(AVFormatContext *s)
3320{
3321 char *buf;
3322 int ret = matroska_read_header(s);
3323 MatroskaTrack *tracks;
3324 MatroskaDemuxContext *matroska = s->priv_data;
3325 if (ret) {
3326 av_log(s, AV_LOG_ERROR, "Failed to read file headers\n");
3327 return -1;
3328 }
3329
3330 // initialization range
Reimar Döffingera0941c82014-07-29 19:10:393331 // 5 is the offset of Cluster ID.
3332 av_dict_set_int(&s->streams[0]->metadata, INITIALIZATION_RANGE, avio_tell(s->pb) - 5, 0);
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373333
3334 // basename of the file
3335 buf = strrchr(s->filename, '/');
Vignesh Venkatasubramanian233f3ad2014-10-09 21:56:473336 av_dict_set(&s->streams[0]->metadata, FILENAME, buf ? ++buf : s->filename, 0);
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373337
3338 // duration
3339 buf = av_asprintf("%g", matroska->duration);
3340 if (!buf) return AVERROR(ENOMEM);
3341 av_dict_set(&s->streams[0]->metadata, DURATION, buf, 0);
3342 av_free(buf);
3343
3344 // track number
3345 tracks = matroska->tracks.elem;
Reimar Döffingera0941c82014-07-29 19:10:393346 av_dict_set_int(&s->streams[0]->metadata, TRACK_NUMBER, tracks[0].num, 0);
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373347
3348 // parse the cues and populate Cue related fields
3349 return webm_dash_manifest_cues(s);
3350}
3351
3352static int webm_dash_manifest_read_packet(AVFormatContext *s, AVPacket *pkt)
3353{
3354 return AVERROR_EOF;
3355}
3356
Diego Elio Pettenò66355be2011-01-25 22:03:283357AVInputFormat ff_matroska_demuxer = {
Anton Khirnovdfc2c4d2011-07-16 20:18:123358 .name = "matroska,webm",
Diego Biurrun67742472012-07-24 21:51:413359 .long_name = NULL_IF_CONFIG_SMALL("Matroska / WebM"),
Vittorio Giovaraf2583bc2014-07-23 08:49:243360 .extensions = "mkv,mk3d,mka,mks",
Anton Khirnovdfc2c4d2011-07-16 20:18:123361 .priv_data_size = sizeof(MatroskaDemuxContext),
3362 .read_probe = matroska_probe,
3363 .read_header = matroska_read_header,
3364 .read_packet = matroska_read_packet,
3365 .read_close = matroska_read_close,
3366 .read_seek = matroska_read_seek,
Luca Barbatofa385732014-03-13 21:14:433367 .mime_type = "audio/webm,audio/x-matroska,video/webm,video/x-matroska"
David Conradb061d892007-06-04 22:10:543368};
Vignesh Venkatasubramanian5a206562014-07-07 19:52:373369
3370AVInputFormat ff_webm_dash_manifest_demuxer = {
3371 .name = "webm_dash_manifest",
3372 .long_name = NULL_IF_CONFIG_SMALL("WebM DASH Manifest"),
3373 .priv_data_size = sizeof(MatroskaDemuxContext),
3374 .read_header = webm_dash_manifest_read_header,
3375 .read_packet = webm_dash_manifest_read_packet,
3376 .read_close = matroska_read_close,
3377};