]> git.sesse.net Git - ffmpeg/blob - libavformat/matroskadec.c
oggparsetheora: check av_mallocz result
[ffmpeg] / libavformat / matroskadec.c
1 /*
2  * Matroska file demuxer
3  * Copyright (c) 2003-2008 The Libav Project
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * Matroska file demuxer
25  * @author Ronald Bultje <rbultje@ronald.bitfreak.net>
26  * @author with a little help from Moritz Bunkus <moritz@bunkus.org>
27  * @author totally reworked by Aurelien Jacobs <aurel@gnuage.org>
28  * @see specs available on the Matroska project page: http://www.matroska.org/
29  */
30
31 #include <stdio.h>
32 #include "avformat.h"
33 #include "internal.h"
34 #include "avio_internal.h"
35 /* For ff_codec_get_id(). */
36 #include "riff.h"
37 #include "isom.h"
38 #include "rmsipr.h"
39 #include "matroska.h"
40 #include "libavcodec/bytestream.h"
41 #include "libavcodec/mpeg4audio.h"
42 #include "libavutil/intfloat.h"
43 #include "libavutil/intreadwrite.h"
44 #include "libavutil/avstring.h"
45 #include "libavutil/lzo.h"
46 #include "libavutil/dict.h"
47 #if CONFIG_ZLIB
48 #include <zlib.h>
49 #endif
50 #if CONFIG_BZLIB
51 #include <bzlib.h>
52 #endif
53
54 typedef enum {
55     EBML_NONE,
56     EBML_UINT,
57     EBML_FLOAT,
58     EBML_STR,
59     EBML_UTF8,
60     EBML_BIN,
61     EBML_NEST,
62     EBML_PASS,
63     EBML_STOP,
64     EBML_TYPE_COUNT
65 } EbmlType;
66
67 typedef const struct EbmlSyntax {
68     uint32_t id;
69     EbmlType type;
70     int list_elem_size;
71     int data_offset;
72     union {
73         uint64_t    u;
74         double      f;
75         const char *s;
76         const struct EbmlSyntax *n;
77     } def;
78 } EbmlSyntax;
79
80 typedef struct {
81     int nb_elem;
82     void *elem;
83 } EbmlList;
84
85 typedef struct {
86     int      size;
87     uint8_t *data;
88     int64_t  pos;
89 } EbmlBin;
90
91 typedef struct {
92     uint64_t version;
93     uint64_t max_size;
94     uint64_t id_length;
95     char    *doctype;
96     uint64_t doctype_version;
97 } Ebml;
98
99 typedef struct {
100     uint64_t algo;
101     EbmlBin  settings;
102 } MatroskaTrackCompression;
103
104 typedef struct {
105     uint64_t scope;
106     uint64_t type;
107     MatroskaTrackCompression compression;
108 } MatroskaTrackEncoding;
109
110 typedef struct {
111     double   frame_rate;
112     uint64_t display_width;
113     uint64_t display_height;
114     uint64_t pixel_width;
115     uint64_t pixel_height;
116     uint64_t fourcc;
117 } MatroskaTrackVideo;
118
119 typedef struct {
120     double   samplerate;
121     double   out_samplerate;
122     uint64_t bitdepth;
123     uint64_t channels;
124
125     /* real audio header (extracted from extradata) */
126     int      coded_framesize;
127     int      sub_packet_h;
128     int      frame_size;
129     int      sub_packet_size;
130     int      sub_packet_cnt;
131     int      pkt_cnt;
132     uint64_t buf_timecode;
133     uint8_t *buf;
134 } MatroskaTrackAudio;
135
136 typedef struct {
137     uint64_t num;
138     uint64_t uid;
139     uint64_t type;
140     char    *name;
141     char    *codec_id;
142     EbmlBin  codec_priv;
143     char    *language;
144     double time_scale;
145     uint64_t default_duration;
146     uint64_t flag_default;
147     uint64_t flag_forced;
148     MatroskaTrackVideo video;
149     MatroskaTrackAudio audio;
150     EbmlList encodings;
151
152     AVStream *stream;
153     int64_t end_timecode;
154     int ms_compat;
155 } MatroskaTrack;
156
157 typedef struct {
158     uint64_t uid;
159     char *filename;
160     char *mime;
161     EbmlBin bin;
162
163     AVStream *stream;
164 } MatroskaAttachement;
165
166 typedef struct {
167     uint64_t start;
168     uint64_t end;
169     uint64_t uid;
170     char    *title;
171
172     AVChapter *chapter;
173 } MatroskaChapter;
174
175 typedef struct {
176     uint64_t track;
177     uint64_t pos;
178 } MatroskaIndexPos;
179
180 typedef struct {
181     uint64_t time;
182     EbmlList pos;
183 } MatroskaIndex;
184
185 typedef struct {
186     char *name;
187     char *string;
188     char *lang;
189     uint64_t def;
190     EbmlList sub;
191 } MatroskaTag;
192
193 typedef struct {
194     char    *type;
195     uint64_t typevalue;
196     uint64_t trackuid;
197     uint64_t chapteruid;
198     uint64_t attachuid;
199 } MatroskaTagTarget;
200
201 typedef struct {
202     MatroskaTagTarget target;
203     EbmlList tag;
204 } MatroskaTags;
205
206 typedef struct {
207     uint64_t id;
208     uint64_t pos;
209 } MatroskaSeekhead;
210
211 typedef struct {
212     uint64_t start;
213     uint64_t length;
214 } MatroskaLevel;
215
216 typedef struct {
217     uint64_t timecode;
218     EbmlList blocks;
219 } MatroskaCluster;
220
221 typedef struct {
222     AVFormatContext *ctx;
223
224     /* EBML stuff */
225     int num_levels;
226     MatroskaLevel levels[EBML_MAX_DEPTH];
227     int level_up;
228     uint32_t current_id;
229
230     uint64_t time_scale;
231     double   duration;
232     char    *title;
233     EbmlList tracks;
234     EbmlList attachments;
235     EbmlList chapters;
236     EbmlList index;
237     EbmlList tags;
238     EbmlList seekhead;
239
240     /* byte position of the segment inside the stream */
241     int64_t segment_start;
242
243     /* the packet queue */
244     AVPacket **packets;
245     int num_packets;
246     AVPacket *prev_pkt;
247
248     int done;
249
250     /* What to skip before effectively reading a packet. */
251     int skip_to_keyframe;
252     uint64_t skip_to_timecode;
253
254     /* File has a CUES element, but we defer parsing until it is needed. */
255     int cues_parsing_deferred;
256
257     int current_cluster_num_blocks;
258     int64_t current_cluster_pos;
259     MatroskaCluster current_cluster;
260
261     /* File has SSA subtitles which prevent incremental cluster parsing. */
262     int contains_ssa;
263 } MatroskaDemuxContext;
264
265 typedef struct {
266     uint64_t duration;
267     int64_t  reference;
268     uint64_t non_simple;
269     EbmlBin  bin;
270 } MatroskaBlock;
271
272 static EbmlSyntax ebml_header[] = {
273     { EBML_ID_EBMLREADVERSION,        EBML_UINT, 0, offsetof(Ebml,version), {.u=EBML_VERSION} },
274     { EBML_ID_EBMLMAXSIZELENGTH,      EBML_UINT, 0, offsetof(Ebml,max_size), {.u=8} },
275     { EBML_ID_EBMLMAXIDLENGTH,        EBML_UINT, 0, offsetof(Ebml,id_length), {.u=4} },
276     { EBML_ID_DOCTYPE,                EBML_STR,  0, offsetof(Ebml,doctype), {.s="(none)"} },
277     { EBML_ID_DOCTYPEREADVERSION,     EBML_UINT, 0, offsetof(Ebml,doctype_version), {.u=1} },
278     { EBML_ID_EBMLVERSION,            EBML_NONE },
279     { EBML_ID_DOCTYPEVERSION,         EBML_NONE },
280     { 0 }
281 };
282
283 static EbmlSyntax ebml_syntax[] = {
284     { EBML_ID_HEADER,                 EBML_NEST, 0, 0, {.n=ebml_header} },
285     { 0 }
286 };
287
288 static EbmlSyntax matroska_info[] = {
289     { MATROSKA_ID_TIMECODESCALE,      EBML_UINT,  0, offsetof(MatroskaDemuxContext,time_scale), {.u=1000000} },
290     { MATROSKA_ID_DURATION,           EBML_FLOAT, 0, offsetof(MatroskaDemuxContext,duration) },
291     { MATROSKA_ID_TITLE,              EBML_UTF8,  0, offsetof(MatroskaDemuxContext,title) },
292     { MATROSKA_ID_WRITINGAPP,         EBML_NONE },
293     { MATROSKA_ID_MUXINGAPP,          EBML_NONE },
294     { MATROSKA_ID_DATEUTC,            EBML_NONE },
295     { MATROSKA_ID_SEGMENTUID,         EBML_NONE },
296     { 0 }
297 };
298
299 static EbmlSyntax matroska_track_video[] = {
300     { MATROSKA_ID_VIDEOFRAMERATE,     EBML_FLOAT,0, offsetof(MatroskaTrackVideo,frame_rate) },
301     { MATROSKA_ID_VIDEODISPLAYWIDTH,  EBML_UINT, 0, offsetof(MatroskaTrackVideo,display_width) },
302     { MATROSKA_ID_VIDEODISPLAYHEIGHT, EBML_UINT, 0, offsetof(MatroskaTrackVideo,display_height) },
303     { MATROSKA_ID_VIDEOPIXELWIDTH,    EBML_UINT, 0, offsetof(MatroskaTrackVideo,pixel_width) },
304     { MATROSKA_ID_VIDEOPIXELHEIGHT,   EBML_UINT, 0, offsetof(MatroskaTrackVideo,pixel_height) },
305     { MATROSKA_ID_VIDEOCOLORSPACE,    EBML_UINT, 0, offsetof(MatroskaTrackVideo,fourcc) },
306     { MATROSKA_ID_VIDEOPIXELCROPB,    EBML_NONE },
307     { MATROSKA_ID_VIDEOPIXELCROPT,    EBML_NONE },
308     { MATROSKA_ID_VIDEOPIXELCROPL,    EBML_NONE },
309     { MATROSKA_ID_VIDEOPIXELCROPR,    EBML_NONE },
310     { MATROSKA_ID_VIDEODISPLAYUNIT,   EBML_NONE },
311     { MATROSKA_ID_VIDEOFLAGINTERLACED,EBML_NONE },
312     { MATROSKA_ID_VIDEOSTEREOMODE,    EBML_NONE },
313     { MATROSKA_ID_VIDEOASPECTRATIO,   EBML_NONE },
314     { 0 }
315 };
316
317 static EbmlSyntax matroska_track_audio[] = {
318     { MATROSKA_ID_AUDIOSAMPLINGFREQ,  EBML_FLOAT,0, offsetof(MatroskaTrackAudio,samplerate), {.f=8000.0} },
319     { MATROSKA_ID_AUDIOOUTSAMPLINGFREQ,EBML_FLOAT,0,offsetof(MatroskaTrackAudio,out_samplerate) },
320     { MATROSKA_ID_AUDIOBITDEPTH,      EBML_UINT, 0, offsetof(MatroskaTrackAudio,bitdepth) },
321     { MATROSKA_ID_AUDIOCHANNELS,      EBML_UINT, 0, offsetof(MatroskaTrackAudio,channels), {.u=1} },
322     { 0 }
323 };
324
325 static EbmlSyntax matroska_track_encoding_compression[] = {
326     { MATROSKA_ID_ENCODINGCOMPALGO,   EBML_UINT, 0, offsetof(MatroskaTrackCompression,algo), {.u=0} },
327     { MATROSKA_ID_ENCODINGCOMPSETTINGS,EBML_BIN, 0, offsetof(MatroskaTrackCompression,settings) },
328     { 0 }
329 };
330
331 static EbmlSyntax matroska_track_encoding[] = {
332     { MATROSKA_ID_ENCODINGSCOPE,      EBML_UINT, 0, offsetof(MatroskaTrackEncoding,scope), {.u=1} },
333     { MATROSKA_ID_ENCODINGTYPE,       EBML_UINT, 0, offsetof(MatroskaTrackEncoding,type), {.u=0} },
334     { MATROSKA_ID_ENCODINGCOMPRESSION,EBML_NEST, 0, offsetof(MatroskaTrackEncoding,compression), {.n=matroska_track_encoding_compression} },
335     { MATROSKA_ID_ENCODINGORDER,      EBML_NONE },
336     { 0 }
337 };
338
339 static EbmlSyntax matroska_track_encodings[] = {
340     { MATROSKA_ID_TRACKCONTENTENCODING, EBML_NEST, sizeof(MatroskaTrackEncoding), offsetof(MatroskaTrack,encodings), {.n=matroska_track_encoding} },
341     { 0 }
342 };
343
344 static EbmlSyntax matroska_track[] = {
345     { MATROSKA_ID_TRACKNUMBER,          EBML_UINT, 0, offsetof(MatroskaTrack,num) },
346     { MATROSKA_ID_TRACKNAME,            EBML_UTF8, 0, offsetof(MatroskaTrack,name) },
347     { MATROSKA_ID_TRACKUID,             EBML_UINT, 0, offsetof(MatroskaTrack,uid) },
348     { MATROSKA_ID_TRACKTYPE,            EBML_UINT, 0, offsetof(MatroskaTrack,type) },
349     { MATROSKA_ID_CODECID,              EBML_STR,  0, offsetof(MatroskaTrack,codec_id) },
350     { MATROSKA_ID_CODECPRIVATE,         EBML_BIN,  0, offsetof(MatroskaTrack,codec_priv) },
351     { MATROSKA_ID_TRACKLANGUAGE,        EBML_UTF8, 0, offsetof(MatroskaTrack,language), {.s="eng"} },
352     { MATROSKA_ID_TRACKDEFAULTDURATION, EBML_UINT, 0, offsetof(MatroskaTrack,default_duration) },
353     { MATROSKA_ID_TRACKTIMECODESCALE,   EBML_FLOAT,0, offsetof(MatroskaTrack,time_scale), {.f=1.0} },
354     { MATROSKA_ID_TRACKFLAGDEFAULT,     EBML_UINT, 0, offsetof(MatroskaTrack,flag_default), {.u=1} },
355     { MATROSKA_ID_TRACKFLAGFORCED,      EBML_UINT, 0, offsetof(MatroskaTrack,flag_forced), {.u=0} },
356     { MATROSKA_ID_TRACKVIDEO,           EBML_NEST, 0, offsetof(MatroskaTrack,video), {.n=matroska_track_video} },
357     { MATROSKA_ID_TRACKAUDIO,           EBML_NEST, 0, offsetof(MatroskaTrack,audio), {.n=matroska_track_audio} },
358     { MATROSKA_ID_TRACKCONTENTENCODINGS,EBML_NEST, 0, 0, {.n=matroska_track_encodings} },
359     { MATROSKA_ID_TRACKFLAGENABLED,     EBML_NONE },
360     { MATROSKA_ID_TRACKFLAGLACING,      EBML_NONE },
361     { MATROSKA_ID_CODECNAME,            EBML_NONE },
362     { MATROSKA_ID_CODECDECODEALL,       EBML_NONE },
363     { MATROSKA_ID_CODECINFOURL,         EBML_NONE },
364     { MATROSKA_ID_CODECDOWNLOADURL,     EBML_NONE },
365     { MATROSKA_ID_TRACKMINCACHE,        EBML_NONE },
366     { MATROSKA_ID_TRACKMAXCACHE,        EBML_NONE },
367     { MATROSKA_ID_TRACKMAXBLKADDID,     EBML_NONE },
368     { 0 }
369 };
370
371 static EbmlSyntax matroska_tracks[] = {
372     { MATROSKA_ID_TRACKENTRY,         EBML_NEST, sizeof(MatroskaTrack), offsetof(MatroskaDemuxContext,tracks), {.n=matroska_track} },
373     { 0 }
374 };
375
376 static EbmlSyntax matroska_attachment[] = {
377     { MATROSKA_ID_FILEUID,            EBML_UINT, 0, offsetof(MatroskaAttachement,uid) },
378     { MATROSKA_ID_FILENAME,           EBML_UTF8, 0, offsetof(MatroskaAttachement,filename) },
379     { MATROSKA_ID_FILEMIMETYPE,       EBML_STR,  0, offsetof(MatroskaAttachement,mime) },
380     { MATROSKA_ID_FILEDATA,           EBML_BIN,  0, offsetof(MatroskaAttachement,bin) },
381     { MATROSKA_ID_FILEDESC,           EBML_NONE },
382     { 0 }
383 };
384
385 static EbmlSyntax matroska_attachments[] = {
386     { MATROSKA_ID_ATTACHEDFILE,       EBML_NEST, sizeof(MatroskaAttachement), offsetof(MatroskaDemuxContext,attachments), {.n=matroska_attachment} },
387     { 0 }
388 };
389
390 static EbmlSyntax matroska_chapter_display[] = {
391     { MATROSKA_ID_CHAPSTRING,         EBML_UTF8, 0, offsetof(MatroskaChapter,title) },
392     { MATROSKA_ID_CHAPLANG,           EBML_NONE },
393     { 0 }
394 };
395
396 static EbmlSyntax matroska_chapter_entry[] = {
397     { MATROSKA_ID_CHAPTERTIMESTART,   EBML_UINT, 0, offsetof(MatroskaChapter,start), {.u=AV_NOPTS_VALUE} },
398     { MATROSKA_ID_CHAPTERTIMEEND,     EBML_UINT, 0, offsetof(MatroskaChapter,end), {.u=AV_NOPTS_VALUE} },
399     { MATROSKA_ID_CHAPTERUID,         EBML_UINT, 0, offsetof(MatroskaChapter,uid) },
400     { MATROSKA_ID_CHAPTERDISPLAY,     EBML_NEST, 0, 0, {.n=matroska_chapter_display} },
401     { MATROSKA_ID_CHAPTERFLAGHIDDEN,  EBML_NONE },
402     { MATROSKA_ID_CHAPTERFLAGENABLED, EBML_NONE },
403     { MATROSKA_ID_CHAPTERPHYSEQUIV,   EBML_NONE },
404     { MATROSKA_ID_CHAPTERATOM,        EBML_NONE },
405     { 0 }
406 };
407
408 static EbmlSyntax matroska_chapter[] = {
409     { MATROSKA_ID_CHAPTERATOM,        EBML_NEST, sizeof(MatroskaChapter), offsetof(MatroskaDemuxContext,chapters), {.n=matroska_chapter_entry} },
410     { MATROSKA_ID_EDITIONUID,         EBML_NONE },
411     { MATROSKA_ID_EDITIONFLAGHIDDEN,  EBML_NONE },
412     { MATROSKA_ID_EDITIONFLAGDEFAULT, EBML_NONE },
413     { MATROSKA_ID_EDITIONFLAGORDERED, EBML_NONE },
414     { 0 }
415 };
416
417 static EbmlSyntax matroska_chapters[] = {
418     { MATROSKA_ID_EDITIONENTRY,       EBML_NEST, 0, 0, {.n=matroska_chapter} },
419     { 0 }
420 };
421
422 static EbmlSyntax matroska_index_pos[] = {
423     { MATROSKA_ID_CUETRACK,           EBML_UINT, 0, offsetof(MatroskaIndexPos,track) },
424     { MATROSKA_ID_CUECLUSTERPOSITION, EBML_UINT, 0, offsetof(MatroskaIndexPos,pos)   },
425     { MATROSKA_ID_CUEBLOCKNUMBER,     EBML_NONE },
426     { 0 }
427 };
428
429 static EbmlSyntax matroska_index_entry[] = {
430     { MATROSKA_ID_CUETIME,            EBML_UINT, 0, offsetof(MatroskaIndex,time) },
431     { MATROSKA_ID_CUETRACKPOSITION,   EBML_NEST, sizeof(MatroskaIndexPos), offsetof(MatroskaIndex,pos), {.n=matroska_index_pos} },
432     { 0 }
433 };
434
435 static EbmlSyntax matroska_index[] = {
436     { MATROSKA_ID_POINTENTRY,         EBML_NEST, sizeof(MatroskaIndex), offsetof(MatroskaDemuxContext,index), {.n=matroska_index_entry} },
437     { 0 }
438 };
439
440 static EbmlSyntax matroska_simpletag[] = {
441     { MATROSKA_ID_TAGNAME,            EBML_UTF8, 0, offsetof(MatroskaTag,name) },
442     { MATROSKA_ID_TAGSTRING,          EBML_UTF8, 0, offsetof(MatroskaTag,string) },
443     { MATROSKA_ID_TAGLANG,            EBML_STR,  0, offsetof(MatroskaTag,lang), {.s="und"} },
444     { MATROSKA_ID_TAGDEFAULT,         EBML_UINT, 0, offsetof(MatroskaTag,def) },
445     { MATROSKA_ID_TAGDEFAULT_BUG,     EBML_UINT, 0, offsetof(MatroskaTag,def) },
446     { MATROSKA_ID_SIMPLETAG,          EBML_NEST, sizeof(MatroskaTag), offsetof(MatroskaTag,sub), {.n=matroska_simpletag} },
447     { 0 }
448 };
449
450 static EbmlSyntax matroska_tagtargets[] = {
451     { MATROSKA_ID_TAGTARGETS_TYPE,      EBML_STR,  0, offsetof(MatroskaTagTarget,type) },
452     { MATROSKA_ID_TAGTARGETS_TYPEVALUE, EBML_UINT, 0, offsetof(MatroskaTagTarget,typevalue), {.u=50} },
453     { MATROSKA_ID_TAGTARGETS_TRACKUID,  EBML_UINT, 0, offsetof(MatroskaTagTarget,trackuid) },
454     { MATROSKA_ID_TAGTARGETS_CHAPTERUID,EBML_UINT, 0, offsetof(MatroskaTagTarget,chapteruid) },
455     { MATROSKA_ID_TAGTARGETS_ATTACHUID, EBML_UINT, 0, offsetof(MatroskaTagTarget,attachuid) },
456     { 0 }
457 };
458
459 static EbmlSyntax matroska_tag[] = {
460     { MATROSKA_ID_SIMPLETAG,          EBML_NEST, sizeof(MatroskaTag), offsetof(MatroskaTags,tag), {.n=matroska_simpletag} },
461     { MATROSKA_ID_TAGTARGETS,         EBML_NEST, 0, offsetof(MatroskaTags,target), {.n=matroska_tagtargets} },
462     { 0 }
463 };
464
465 static EbmlSyntax matroska_tags[] = {
466     { MATROSKA_ID_TAG,                EBML_NEST, sizeof(MatroskaTags), offsetof(MatroskaDemuxContext,tags), {.n=matroska_tag} },
467     { 0 }
468 };
469
470 static EbmlSyntax matroska_seekhead_entry[] = {
471     { MATROSKA_ID_SEEKID,             EBML_UINT, 0, offsetof(MatroskaSeekhead,id) },
472     { MATROSKA_ID_SEEKPOSITION,       EBML_UINT, 0, offsetof(MatroskaSeekhead,pos), {.u=-1} },
473     { 0 }
474 };
475
476 static EbmlSyntax matroska_seekhead[] = {
477     { MATROSKA_ID_SEEKENTRY,          EBML_NEST, sizeof(MatroskaSeekhead), offsetof(MatroskaDemuxContext,seekhead), {.n=matroska_seekhead_entry} },
478     { 0 }
479 };
480
481 static EbmlSyntax matroska_segment[] = {
482     { MATROSKA_ID_INFO,           EBML_NEST, 0, 0, {.n=matroska_info       } },
483     { MATROSKA_ID_TRACKS,         EBML_NEST, 0, 0, {.n=matroska_tracks     } },
484     { MATROSKA_ID_ATTACHMENTS,    EBML_NEST, 0, 0, {.n=matroska_attachments} },
485     { MATROSKA_ID_CHAPTERS,       EBML_NEST, 0, 0, {.n=matroska_chapters   } },
486     { MATROSKA_ID_CUES,           EBML_NEST, 0, 0, {.n=matroska_index      } },
487     { MATROSKA_ID_TAGS,           EBML_NEST, 0, 0, {.n=matroska_tags       } },
488     { MATROSKA_ID_SEEKHEAD,       EBML_NEST, 0, 0, {.n=matroska_seekhead   } },
489     { MATROSKA_ID_CLUSTER,        EBML_STOP },
490     { 0 }
491 };
492
493 static EbmlSyntax matroska_segments[] = {
494     { MATROSKA_ID_SEGMENT,        EBML_NEST, 0, 0, {.n=matroska_segment    } },
495     { 0 }
496 };
497
498 static EbmlSyntax matroska_blockgroup[] = {
499     { MATROSKA_ID_BLOCK,          EBML_BIN,  0, offsetof(MatroskaBlock,bin) },
500     { MATROSKA_ID_SIMPLEBLOCK,    EBML_BIN,  0, offsetof(MatroskaBlock,bin) },
501     { MATROSKA_ID_BLOCKDURATION,  EBML_UINT, 0, offsetof(MatroskaBlock,duration), {.u=AV_NOPTS_VALUE} },
502     { MATROSKA_ID_BLOCKREFERENCE, EBML_UINT, 0, offsetof(MatroskaBlock,reference) },
503     { MATROSKA_ID_CODECSTATE,     EBML_NONE },
504     { 1,                          EBML_UINT, 0, offsetof(MatroskaBlock,non_simple), {.u=1} },
505     { 0 }
506 };
507
508 static EbmlSyntax matroska_cluster[] = {
509     { MATROSKA_ID_CLUSTERTIMECODE,EBML_UINT,0, offsetof(MatroskaCluster,timecode) },
510     { MATROSKA_ID_BLOCKGROUP,     EBML_NEST, sizeof(MatroskaBlock), offsetof(MatroskaCluster,blocks), {.n=matroska_blockgroup} },
511     { MATROSKA_ID_SIMPLEBLOCK,    EBML_PASS, sizeof(MatroskaBlock), offsetof(MatroskaCluster,blocks), {.n=matroska_blockgroup} },
512     { MATROSKA_ID_CLUSTERPOSITION,EBML_NONE },
513     { MATROSKA_ID_CLUSTERPREVSIZE,EBML_NONE },
514     { 0 }
515 };
516
517 static EbmlSyntax matroska_clusters[] = {
518     { MATROSKA_ID_CLUSTER,        EBML_NEST, 0, 0, {.n=matroska_cluster} },
519     { MATROSKA_ID_INFO,           EBML_NONE },
520     { MATROSKA_ID_CUES,           EBML_NONE },
521     { MATROSKA_ID_TAGS,           EBML_NONE },
522     { MATROSKA_ID_SEEKHEAD,       EBML_NONE },
523     { 0 }
524 };
525
526 static EbmlSyntax matroska_cluster_incremental_parsing[] = {
527     { MATROSKA_ID_CLUSTERTIMECODE,EBML_UINT,0, offsetof(MatroskaCluster,timecode) },
528     { MATROSKA_ID_BLOCKGROUP,     EBML_NEST, sizeof(MatroskaBlock), offsetof(MatroskaCluster,blocks), {.n=matroska_blockgroup} },
529     { MATROSKA_ID_SIMPLEBLOCK,    EBML_PASS, sizeof(MatroskaBlock), offsetof(MatroskaCluster,blocks), {.n=matroska_blockgroup} },
530     { MATROSKA_ID_CLUSTERPOSITION,EBML_NONE },
531     { MATROSKA_ID_CLUSTERPREVSIZE,EBML_NONE },
532     { MATROSKA_ID_INFO,           EBML_NONE },
533     { MATROSKA_ID_CUES,           EBML_NONE },
534     { MATROSKA_ID_TAGS,           EBML_NONE },
535     { MATROSKA_ID_SEEKHEAD,       EBML_NONE },
536     { MATROSKA_ID_CLUSTER,        EBML_STOP },
537     { 0 }
538 };
539
540 static EbmlSyntax matroska_cluster_incremental[] = {
541     { MATROSKA_ID_CLUSTERTIMECODE,EBML_UINT,0, offsetof(MatroskaCluster,timecode) },
542     { MATROSKA_ID_BLOCKGROUP,     EBML_STOP },
543     { MATROSKA_ID_SIMPLEBLOCK,    EBML_STOP },
544     { MATROSKA_ID_CLUSTERPOSITION,EBML_NONE },
545     { MATROSKA_ID_CLUSTERPREVSIZE,EBML_NONE },
546     { 0 }
547 };
548
549 static EbmlSyntax matroska_clusters_incremental[] = {
550     { MATROSKA_ID_CLUSTER,        EBML_NEST, 0, 0, {.n=matroska_cluster_incremental} },
551     { MATROSKA_ID_INFO,           EBML_NONE },
552     { MATROSKA_ID_CUES,           EBML_NONE },
553     { MATROSKA_ID_TAGS,           EBML_NONE },
554     { MATROSKA_ID_SEEKHEAD,       EBML_NONE },
555     { 0 }
556 };
557
558 static const char *const matroska_doctypes[] = { "matroska", "webm" };
559
560 static int matroska_resync(MatroskaDemuxContext *matroska, int64_t last_pos)
561 {
562     AVIOContext *pb = matroska->ctx->pb;
563     uint32_t id;
564     matroska->current_id = 0;
565     matroska->num_levels = 0;
566
567     /* seek to next position to resync from */
568     if (avio_seek(pb, last_pos + 1, SEEK_SET) < 0)
569         goto eof;
570
571     id = avio_rb32(pb);
572
573     // try to find a toplevel element
574     while (!pb->eof_reached) {
575         if (id == MATROSKA_ID_INFO     || id == MATROSKA_ID_TRACKS      ||
576             id == MATROSKA_ID_CUES     || id == MATROSKA_ID_TAGS        ||
577             id == MATROSKA_ID_SEEKHEAD || id == MATROSKA_ID_ATTACHMENTS ||
578             id == MATROSKA_ID_CLUSTER  || id == MATROSKA_ID_CHAPTERS) {
579                 matroska->current_id = id;
580                 return 0;
581         }
582         id = (id << 8) | avio_r8(pb);
583     }
584 eof:
585     matroska->done = 1;
586     return AVERROR_EOF;
587 }
588
589 /*
590  * Return: Whether we reached the end of a level in the hierarchy or not.
591  */
592 static int ebml_level_end(MatroskaDemuxContext *matroska)
593 {
594     AVIOContext *pb = matroska->ctx->pb;
595     int64_t pos = avio_tell(pb);
596
597     if (matroska->num_levels > 0) {
598         MatroskaLevel *level = &matroska->levels[matroska->num_levels - 1];
599         if (pos - level->start >= level->length || matroska->current_id) {
600             matroska->num_levels--;
601             return 1;
602         }
603     }
604     return 0;
605 }
606
607 /*
608  * Read: an "EBML number", which is defined as a variable-length
609  * array of bytes. The first byte indicates the length by giving a
610  * number of 0-bits followed by a one. The position of the first
611  * "one" bit inside the first byte indicates the length of this
612  * number.
613  * Returns: number of bytes read, < 0 on error
614  */
615 static int ebml_read_num(MatroskaDemuxContext *matroska, AVIOContext *pb,
616                          int max_size, uint64_t *number)
617 {
618     int read = 1, n = 1;
619     uint64_t total = 0;
620
621     /* The first byte tells us the length in bytes - avio_r8() can normally
622      * return 0, but since that's not a valid first ebmlID byte, we can
623      * use it safely here to catch EOS. */
624     if (!(total = avio_r8(pb))) {
625         /* we might encounter EOS here */
626         if (!pb->eof_reached) {
627             int64_t pos = avio_tell(pb);
628             av_log(matroska->ctx, AV_LOG_ERROR,
629                    "Read error at pos. %"PRIu64" (0x%"PRIx64")\n",
630                    pos, pos);
631             return pb->error ? pb->error : AVERROR(EIO);
632         }
633         return AVERROR_EOF;
634     }
635
636     /* get the length of the EBML number */
637     read = 8 - ff_log2_tab[total];
638     if (read > max_size) {
639         int64_t pos = avio_tell(pb) - 1;
640         av_log(matroska->ctx, AV_LOG_ERROR,
641                "Invalid EBML number size tag 0x%02x at pos %"PRIu64" (0x%"PRIx64")\n",
642                (uint8_t) total, pos, pos);
643         return AVERROR_INVALIDDATA;
644     }
645
646     /* read out length */
647     total ^= 1 << ff_log2_tab[total];
648     while (n++ < read)
649         total = (total << 8) | avio_r8(pb);
650
651     *number = total;
652
653     return read;
654 }
655
656 /**
657  * Read a EBML length value.
658  * This needs special handling for the "unknown length" case which has multiple
659  * encodings.
660  */
661 static int ebml_read_length(MatroskaDemuxContext *matroska, AVIOContext *pb,
662                             uint64_t *number)
663 {
664     int res = ebml_read_num(matroska, pb, 8, number);
665     if (res > 0 && *number + 1 == 1ULL << (7 * res))
666         *number = 0xffffffffffffffULL;
667     return res;
668 }
669
670 /*
671  * Read the next element as an unsigned int.
672  * 0 is success, < 0 is failure.
673  */
674 static int ebml_read_uint(AVIOContext *pb, int size, uint64_t *num)
675 {
676     int n = 0;
677
678     if (size > 8)
679         return AVERROR_INVALIDDATA;
680
681     /* big-endian ordering; build up number */
682     *num = 0;
683     while (n++ < size)
684         *num = (*num << 8) | avio_r8(pb);
685
686     return 0;
687 }
688
689 /*
690  * Read the next element as a float.
691  * 0 is success, < 0 is failure.
692  */
693 static int ebml_read_float(AVIOContext *pb, int size, double *num)
694 {
695     if (size == 0) {
696         *num = 0;
697     } else if (size == 4) {
698         *num = av_int2float(avio_rb32(pb));
699     } else if (size == 8){
700         *num = av_int2double(avio_rb64(pb));
701     } else
702         return AVERROR_INVALIDDATA;
703
704     return 0;
705 }
706
707 /*
708  * Read the next element as an ASCII string.
709  * 0 is success, < 0 is failure.
710  */
711 static int ebml_read_ascii(AVIOContext *pb, int size, char **str)
712 {
713     char *res;
714
715     /* EBML strings are usually not 0-terminated, so we allocate one
716      * byte more, read the string and NULL-terminate it ourselves. */
717     if (!(res = av_malloc(size + 1)))
718         return AVERROR(ENOMEM);
719     if (avio_read(pb, (uint8_t *) res, size) != size) {
720         av_free(res);
721         return AVERROR(EIO);
722     }
723     (res)[size] = '\0';
724     av_free(*str);
725     *str = res;
726
727     return 0;
728 }
729
730 /*
731  * Read the next element as binary data.
732  * 0 is success, < 0 is failure.
733  */
734 static int ebml_read_binary(AVIOContext *pb, int length, EbmlBin *bin)
735 {
736     av_free(bin->data);
737     if (!(bin->data = av_malloc(length)))
738         return AVERROR(ENOMEM);
739
740     bin->size = length;
741     bin->pos  = avio_tell(pb);
742     if (avio_read(pb, bin->data, length) != length) {
743         av_freep(&bin->data);
744         return AVERROR(EIO);
745     }
746
747     return 0;
748 }
749
750 /*
751  * Read the next element, but only the header. The contents
752  * are supposed to be sub-elements which can be read separately.
753  * 0 is success, < 0 is failure.
754  */
755 static int ebml_read_master(MatroskaDemuxContext *matroska, uint64_t length)
756 {
757     AVIOContext *pb = matroska->ctx->pb;
758     MatroskaLevel *level;
759
760     if (matroska->num_levels >= EBML_MAX_DEPTH) {
761         av_log(matroska->ctx, AV_LOG_ERROR,
762                "File moves beyond max. allowed depth (%d)\n", EBML_MAX_DEPTH);
763         return AVERROR(ENOSYS);
764     }
765
766     level = &matroska->levels[matroska->num_levels++];
767     level->start = avio_tell(pb);
768     level->length = length;
769
770     return 0;
771 }
772
773 /*
774  * Read signed/unsigned "EBML" numbers.
775  * Return: number of bytes processed, < 0 on error
776  */
777 static int matroska_ebmlnum_uint(MatroskaDemuxContext *matroska,
778                                  uint8_t *data, uint32_t size, uint64_t *num)
779 {
780     AVIOContext pb;
781     ffio_init_context(&pb, data, size, 0, NULL, NULL, NULL, NULL);
782     return ebml_read_num(matroska, &pb, FFMIN(size, 8), num);
783 }
784
785 /*
786  * Same as above, but signed.
787  */
788 static int matroska_ebmlnum_sint(MatroskaDemuxContext *matroska,
789                                  uint8_t *data, uint32_t size, int64_t *num)
790 {
791     uint64_t unum;
792     int res;
793
794     /* read as unsigned number first */
795     if ((res = matroska_ebmlnum_uint(matroska, data, size, &unum)) < 0)
796         return res;
797
798     /* make signed (weird way) */
799     *num = unum - ((1LL << (7*res - 1)) - 1);
800
801     return res;
802 }
803
804 static int ebml_parse_elem(MatroskaDemuxContext *matroska,
805                            EbmlSyntax *syntax, void *data);
806
807 static int ebml_parse_id(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
808                          uint32_t id, void *data)
809 {
810     int i;
811     for (i=0; syntax[i].id; i++)
812         if (id == syntax[i].id)
813             break;
814     if (!syntax[i].id && id == MATROSKA_ID_CLUSTER &&
815         matroska->num_levels > 0 &&
816         matroska->levels[matroska->num_levels-1].length == 0xffffffffffffff)
817         return 0;  // we reached the end of an unknown size cluster
818     if (!syntax[i].id && id != EBML_ID_VOID && id != EBML_ID_CRC32) {
819         av_log(matroska->ctx, AV_LOG_INFO, "Unknown entry 0x%X\n", id);
820         if (matroska->ctx->error_recognition & AV_EF_EXPLODE)
821             return AVERROR_INVALIDDATA;
822     }
823     return ebml_parse_elem(matroska, &syntax[i], data);
824 }
825
826 static int ebml_parse(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
827                       void *data)
828 {
829     if (!matroska->current_id) {
830         uint64_t id;
831         int res = ebml_read_num(matroska, matroska->ctx->pb, 4, &id);
832         if (res < 0)
833             return res;
834         matroska->current_id = id | 1 << 7*res;
835     }
836     return ebml_parse_id(matroska, syntax, matroska->current_id, data);
837 }
838
839 static int ebml_parse_nest(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
840                            void *data)
841 {
842     int i, res = 0;
843
844     for (i=0; syntax[i].id; i++)
845         switch (syntax[i].type) {
846         case EBML_UINT:
847             *(uint64_t *)((char *)data+syntax[i].data_offset) = syntax[i].def.u;
848             break;
849         case EBML_FLOAT:
850             *(double   *)((char *)data+syntax[i].data_offset) = syntax[i].def.f;
851             break;
852         case EBML_STR:
853         case EBML_UTF8:
854             // the default may be NULL
855             if (syntax[i].def.s) {
856                 uint8_t **dst = (uint8_t**)((uint8_t*)data + syntax[i].data_offset);
857                 *dst = av_strdup(syntax[i].def.s);
858                 if (!*dst)
859                     return AVERROR(ENOMEM);
860             }
861             break;
862         }
863
864     while (!res && !ebml_level_end(matroska))
865         res = ebml_parse(matroska, syntax, data);
866
867     return res;
868 }
869
870 static int ebml_parse_elem(MatroskaDemuxContext *matroska,
871                            EbmlSyntax *syntax, void *data)
872 {
873     static const uint64_t max_lengths[EBML_TYPE_COUNT] = {
874         [EBML_UINT]  = 8,
875         [EBML_FLOAT] = 8,
876         // max. 16 MB for strings
877         [EBML_STR]   = 0x1000000,
878         [EBML_UTF8]  = 0x1000000,
879         // max. 256 MB for binary data
880         [EBML_BIN]   = 0x10000000,
881         // no limits for anything else
882     };
883     AVIOContext *pb = matroska->ctx->pb;
884     uint32_t id = syntax->id;
885     uint64_t length;
886     int res;
887
888     data = (char *)data + syntax->data_offset;
889     if (syntax->list_elem_size) {
890         EbmlList *list = data;
891         if ((res = av_reallocp_array(&list->elem,
892                                      list->nb_elem + 1,
893                                      syntax->list_elem_size)) < 0) {
894             list->nb_elem = 0;
895             return res;
896         }
897         data = (char*)list->elem + list->nb_elem*syntax->list_elem_size;
898         memset(data, 0, syntax->list_elem_size);
899         list->nb_elem++;
900     }
901
902     if (syntax->type != EBML_PASS && syntax->type != EBML_STOP) {
903         matroska->current_id = 0;
904         if ((res = ebml_read_length(matroska, pb, &length)) < 0)
905             return res;
906         if (max_lengths[syntax->type] && length > max_lengths[syntax->type]) {
907             av_log(matroska->ctx, AV_LOG_ERROR,
908                    "Invalid length 0x%"PRIx64" > 0x%"PRIx64" for syntax element %i\n",
909                    length, max_lengths[syntax->type], syntax->type);
910             return AVERROR_INVALIDDATA;
911         }
912     }
913
914     switch (syntax->type) {
915     case EBML_UINT:  res = ebml_read_uint  (pb, length, data);  break;
916     case EBML_FLOAT: res = ebml_read_float (pb, length, data);  break;
917     case EBML_STR:
918     case EBML_UTF8:  res = ebml_read_ascii (pb, length, data);  break;
919     case EBML_BIN:   res = ebml_read_binary(pb, length, data);  break;
920     case EBML_NEST:  if ((res=ebml_read_master(matroska, length)) < 0)
921                          return res;
922                      if (id == MATROSKA_ID_SEGMENT)
923                          matroska->segment_start = avio_tell(matroska->ctx->pb);
924                      return ebml_parse_nest(matroska, syntax->def.n, data);
925     case EBML_PASS:  return ebml_parse_id(matroska, syntax->def.n, id, data);
926     case EBML_STOP:  return 1;
927     default:         return avio_skip(pb,length)<0 ? AVERROR(EIO) : 0;
928     }
929     if (res == AVERROR_INVALIDDATA)
930         av_log(matroska->ctx, AV_LOG_ERROR, "Invalid element\n");
931     else if (res == AVERROR(EIO))
932         av_log(matroska->ctx, AV_LOG_ERROR, "Read error\n");
933     return res;
934 }
935
936 static void ebml_free(EbmlSyntax *syntax, void *data)
937 {
938     int i, j;
939     for (i=0; syntax[i].id; i++) {
940         void *data_off = (char *)data + syntax[i].data_offset;
941         switch (syntax[i].type) {
942         case EBML_STR:
943         case EBML_UTF8:  av_freep(data_off);                      break;
944         case EBML_BIN:   av_freep(&((EbmlBin *)data_off)->data);  break;
945         case EBML_NEST:
946             if (syntax[i].list_elem_size) {
947                 EbmlList *list = data_off;
948                 char *ptr = list->elem;
949                 for (j=0; j<list->nb_elem; j++, ptr+=syntax[i].list_elem_size)
950                     ebml_free(syntax[i].def.n, ptr);
951                 av_free(list->elem);
952             } else
953                 ebml_free(syntax[i].def.n, data_off);
954         default:  break;
955         }
956     }
957 }
958
959
960 /*
961  * Autodetecting...
962  */
963 static int matroska_probe(AVProbeData *p)
964 {
965     uint64_t total = 0;
966     int len_mask = 0x80, size = 1, n = 1, i;
967
968     /* EBML header? */
969     if (AV_RB32(p->buf) != EBML_ID_HEADER)
970         return 0;
971
972     /* length of header */
973     total = p->buf[4];
974     while (size <= 8 && !(total & len_mask)) {
975         size++;
976         len_mask >>= 1;
977     }
978     if (size > 8)
979       return 0;
980     total &= (len_mask - 1);
981     while (n < size)
982         total = (total << 8) | p->buf[4 + n++];
983
984     /* Does the probe data contain the whole header? */
985     if (p->buf_size < 4 + size + total)
986       return 0;
987
988     /* The header should contain a known document type. For now,
989      * we don't parse the whole header but simply check for the
990      * availability of that array of characters inside the header.
991      * Not fully fool-proof, but good enough. */
992     for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++) {
993         int probelen = strlen(matroska_doctypes[i]);
994         if (total < probelen)
995             continue;
996         for (n = 4+size; n <= 4+size+total-probelen; n++)
997             if (!memcmp(p->buf+n, matroska_doctypes[i], probelen))
998                 return AVPROBE_SCORE_MAX;
999     }
1000
1001     // probably valid EBML header but no recognized doctype
1002     return AVPROBE_SCORE_EXTENSION;
1003 }
1004
1005 static MatroskaTrack *matroska_find_track_by_num(MatroskaDemuxContext *matroska,
1006                                                  int num)
1007 {
1008     MatroskaTrack *tracks = matroska->tracks.elem;
1009     int i;
1010
1011     for (i=0; i < matroska->tracks.nb_elem; i++)
1012         if (tracks[i].num == num)
1013             return &tracks[i];
1014
1015     av_log(matroska->ctx, AV_LOG_ERROR, "Invalid track number %d\n", num);
1016     return NULL;
1017 }
1018
1019 static int matroska_decode_buffer(uint8_t** buf, int* buf_size,
1020                                   MatroskaTrack *track)
1021 {
1022     MatroskaTrackEncoding *encodings = track->encodings.elem;
1023     uint8_t* data = *buf;
1024     int isize = *buf_size;
1025     uint8_t* pkt_data = NULL;
1026     uint8_t av_unused *newpktdata;
1027     int pkt_size = isize;
1028     int result = 0;
1029     int olen;
1030
1031     if (pkt_size >= 10000000)
1032         return AVERROR_INVALIDDATA;
1033
1034     switch (encodings[0].compression.algo) {
1035     case MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP: {
1036         int header_size = encodings[0].compression.settings.size;
1037         uint8_t *header = encodings[0].compression.settings.data;
1038
1039         if (!header_size)
1040             return 0;
1041
1042         pkt_size = isize + header_size;
1043         pkt_data = av_malloc(pkt_size);
1044         if (!pkt_data)
1045             return AVERROR(ENOMEM);
1046
1047         memcpy(pkt_data, header, header_size);
1048         memcpy(pkt_data + header_size, data, isize);
1049         break;
1050     }
1051 #if CONFIG_LZO
1052     case MATROSKA_TRACK_ENCODING_COMP_LZO:
1053         do {
1054             olen = pkt_size *= 3;
1055             newpktdata = av_realloc(pkt_data, pkt_size + AV_LZO_OUTPUT_PADDING);
1056             if (!newpktdata) {
1057                 result = AVERROR(ENOMEM);
1058                 goto failed;
1059             }
1060             pkt_data = newpktdata;
1061             result = av_lzo1x_decode(pkt_data, &olen, data, &isize);
1062         } while (result==AV_LZO_OUTPUT_FULL && pkt_size<10000000);
1063         if (result) {
1064             result = AVERROR_INVALIDDATA;
1065             goto failed;
1066         }
1067         pkt_size -= olen;
1068         break;
1069 #endif
1070 #if CONFIG_ZLIB
1071     case MATROSKA_TRACK_ENCODING_COMP_ZLIB: {
1072         z_stream zstream = {0};
1073         if (inflateInit(&zstream) != Z_OK)
1074             return -1;
1075         zstream.next_in = data;
1076         zstream.avail_in = isize;
1077         do {
1078             pkt_size *= 3;
1079             newpktdata = av_realloc(pkt_data, pkt_size);
1080             if (!newpktdata) {
1081                 inflateEnd(&zstream);
1082                 goto failed;
1083             }
1084             pkt_data = newpktdata;
1085             zstream.avail_out = pkt_size - zstream.total_out;
1086             zstream.next_out = pkt_data + zstream.total_out;
1087             result = inflate(&zstream, Z_NO_FLUSH);
1088         } while (result==Z_OK && pkt_size<10000000);
1089         pkt_size = zstream.total_out;
1090         inflateEnd(&zstream);
1091         if (result != Z_STREAM_END) {
1092             if (result == Z_MEM_ERROR)
1093                 result = AVERROR(ENOMEM);
1094             else
1095                 result = AVERROR_INVALIDDATA;
1096             goto failed;
1097         }
1098         break;
1099     }
1100 #endif
1101 #if CONFIG_BZLIB
1102     case MATROSKA_TRACK_ENCODING_COMP_BZLIB: {
1103         bz_stream bzstream = {0};
1104         if (BZ2_bzDecompressInit(&bzstream, 0, 0) != BZ_OK)
1105             return -1;
1106         bzstream.next_in = data;
1107         bzstream.avail_in = isize;
1108         do {
1109             pkt_size *= 3;
1110             newpktdata = av_realloc(pkt_data, pkt_size);
1111             if (!newpktdata) {
1112                 BZ2_bzDecompressEnd(&bzstream);
1113                 goto failed;
1114             }
1115             pkt_data = newpktdata;
1116             bzstream.avail_out = pkt_size - bzstream.total_out_lo32;
1117             bzstream.next_out = pkt_data + bzstream.total_out_lo32;
1118             result = BZ2_bzDecompress(&bzstream);
1119         } while (result==BZ_OK && pkt_size<10000000);
1120         pkt_size = bzstream.total_out_lo32;
1121         BZ2_bzDecompressEnd(&bzstream);
1122         if (result != BZ_STREAM_END) {
1123             if (result == BZ_MEM_ERROR)
1124                 result = AVERROR(ENOMEM);
1125             else
1126                 result = AVERROR_INVALIDDATA;
1127             goto failed;
1128         }
1129         break;
1130     }
1131 #endif
1132     default:
1133         return AVERROR_INVALIDDATA;
1134     }
1135
1136     *buf = pkt_data;
1137     *buf_size = pkt_size;
1138     return 0;
1139  failed:
1140     av_free(pkt_data);
1141     return result;
1142 }
1143
1144 static void matroska_fix_ass_packet(MatroskaDemuxContext *matroska,
1145                                     AVPacket *pkt, uint64_t display_duration)
1146 {
1147     AVBufferRef *line;
1148     char *layer, *ptr = pkt->data, *end = ptr+pkt->size;
1149     for (; *ptr!=',' && ptr<end-1; ptr++);
1150     if (*ptr == ',')
1151         layer = ++ptr;
1152     for (; *ptr!=',' && ptr<end-1; ptr++);
1153     if (*ptr == ',') {
1154         int64_t end_pts = pkt->pts + display_duration;
1155         int sc = matroska->time_scale * pkt->pts / 10000000;
1156         int ec = matroska->time_scale * end_pts  / 10000000;
1157         int sh, sm, ss, eh, em, es, len;
1158         sh = sc/360000;  sc -= 360000*sh;
1159         sm = sc/  6000;  sc -=   6000*sm;
1160         ss = sc/   100;  sc -=    100*ss;
1161         eh = ec/360000;  ec -= 360000*eh;
1162         em = ec/  6000;  ec -=   6000*em;
1163         es = ec/   100;  ec -=    100*es;
1164         *ptr++ = '\0';
1165         len = 50 + end-ptr + FF_INPUT_BUFFER_PADDING_SIZE;
1166         if (!(line = av_buffer_alloc(len)))
1167             return;
1168         snprintf(line->data, len,"Dialogue: %s,%d:%02d:%02d.%02d,%d:%02d:%02d.%02d,%s\r\n",
1169                  layer, sh, sm, ss, sc, eh, em, es, ec, ptr);
1170         av_buffer_unref(&pkt->buf);
1171         pkt->buf  = line;
1172         pkt->data = line->data;
1173         pkt->size = strlen(line->data);
1174     }
1175 }
1176
1177 static int matroska_merge_packets(AVPacket *out, AVPacket *in)
1178 {
1179     int old_size = out->size;
1180     int ret = av_grow_packet(out, in->size);
1181     if (ret < 0)
1182         return ret;
1183
1184     memcpy(out->data + old_size, in->data, in->size);
1185
1186     av_free_packet(in);
1187     av_free(in);
1188     return 0;
1189 }
1190
1191 static void matroska_convert_tag(AVFormatContext *s, EbmlList *list,
1192                                  AVDictionary **metadata, char *prefix)
1193 {
1194     MatroskaTag *tags = list->elem;
1195     char key[1024];
1196     int i;
1197
1198     for (i=0; i < list->nb_elem; i++) {
1199         const char *lang = tags[i].lang && strcmp(tags[i].lang, "und") ?
1200                            tags[i].lang : NULL;
1201
1202         if (!tags[i].name) {
1203             av_log(s, AV_LOG_WARNING, "Skipping invalid tag with no TagName.\n");
1204             continue;
1205         }
1206         if (prefix)  snprintf(key, sizeof(key), "%s/%s", prefix, tags[i].name);
1207         else         av_strlcpy(key, tags[i].name, sizeof(key));
1208         if (tags[i].def || !lang) {
1209         av_dict_set(metadata, key, tags[i].string, 0);
1210         if (tags[i].sub.nb_elem)
1211             matroska_convert_tag(s, &tags[i].sub, metadata, key);
1212         }
1213         if (lang) {
1214             av_strlcat(key, "-", sizeof(key));
1215             av_strlcat(key, lang, sizeof(key));
1216             av_dict_set(metadata, key, tags[i].string, 0);
1217             if (tags[i].sub.nb_elem)
1218                 matroska_convert_tag(s, &tags[i].sub, metadata, key);
1219         }
1220     }
1221     ff_metadata_conv(metadata, NULL, ff_mkv_metadata_conv);
1222 }
1223
1224 static void matroska_convert_tags(AVFormatContext *s)
1225 {
1226     MatroskaDemuxContext *matroska = s->priv_data;
1227     MatroskaTags *tags = matroska->tags.elem;
1228     int i, j;
1229
1230     for (i=0; i < matroska->tags.nb_elem; i++) {
1231         if (tags[i].target.attachuid) {
1232             MatroskaAttachement *attachment = matroska->attachments.elem;
1233             for (j=0; j<matroska->attachments.nb_elem; j++)
1234                 if (attachment[j].uid == tags[i].target.attachuid
1235                     && attachment[j].stream)
1236                     matroska_convert_tag(s, &tags[i].tag,
1237                                          &attachment[j].stream->metadata, NULL);
1238         } else if (tags[i].target.chapteruid) {
1239             MatroskaChapter *chapter = matroska->chapters.elem;
1240             for (j=0; j<matroska->chapters.nb_elem; j++)
1241                 if (chapter[j].uid == tags[i].target.chapteruid
1242                     && chapter[j].chapter)
1243                     matroska_convert_tag(s, &tags[i].tag,
1244                                          &chapter[j].chapter->metadata, NULL);
1245         } else if (tags[i].target.trackuid) {
1246             MatroskaTrack *track = matroska->tracks.elem;
1247             for (j=0; j<matroska->tracks.nb_elem; j++)
1248                 if (track[j].uid == tags[i].target.trackuid && track[j].stream)
1249                     matroska_convert_tag(s, &tags[i].tag,
1250                                          &track[j].stream->metadata, NULL);
1251         } else {
1252             matroska_convert_tag(s, &tags[i].tag, &s->metadata,
1253                                  tags[i].target.type);
1254         }
1255     }
1256 }
1257
1258 static int matroska_parse_seekhead_entry(MatroskaDemuxContext *matroska, int idx)
1259 {
1260     EbmlList *seekhead_list = &matroska->seekhead;
1261     MatroskaSeekhead *seekhead = seekhead_list->elem;
1262     uint32_t level_up = matroska->level_up;
1263     int64_t before_pos = avio_tell(matroska->ctx->pb);
1264     uint32_t saved_id = matroska->current_id;
1265     MatroskaLevel level;
1266     int64_t offset;
1267     int ret = 0;
1268
1269     if (idx >= seekhead_list->nb_elem
1270             || seekhead[idx].id == MATROSKA_ID_SEEKHEAD
1271             || seekhead[idx].id == MATROSKA_ID_CLUSTER)
1272         return 0;
1273
1274     /* seek */
1275     offset = seekhead[idx].pos + matroska->segment_start;
1276     if (avio_seek(matroska->ctx->pb, offset, SEEK_SET) == offset) {
1277         /* We don't want to lose our seekhead level, so we add
1278          * a dummy. This is a crude hack. */
1279         if (matroska->num_levels == EBML_MAX_DEPTH) {
1280             av_log(matroska->ctx, AV_LOG_INFO,
1281                    "Max EBML element depth (%d) reached, "
1282                    "cannot parse further.\n", EBML_MAX_DEPTH);
1283             ret = AVERROR_INVALIDDATA;
1284         } else {
1285             level.start = 0;
1286             level.length = (uint64_t)-1;
1287             matroska->levels[matroska->num_levels] = level;
1288             matroska->num_levels++;
1289             matroska->current_id = 0;
1290
1291             ret = ebml_parse(matroska, matroska_segment, matroska);
1292
1293             /* remove dummy level */
1294             while (matroska->num_levels) {
1295                 uint64_t length = matroska->levels[--matroska->num_levels].length;
1296                 if (length == (uint64_t)-1)
1297                     break;
1298             }
1299         }
1300     }
1301     /* seek back */
1302     avio_seek(matroska->ctx->pb, before_pos, SEEK_SET);
1303     matroska->level_up = level_up;
1304     matroska->current_id = saved_id;
1305
1306     return ret;
1307 }
1308
1309 static void matroska_execute_seekhead(MatroskaDemuxContext *matroska)
1310 {
1311     EbmlList *seekhead_list = &matroska->seekhead;
1312     int64_t before_pos = avio_tell(matroska->ctx->pb);
1313     int i;
1314
1315     // we should not do any seeking in the streaming case
1316     if (!matroska->ctx->pb->seekable ||
1317         (matroska->ctx->flags & AVFMT_FLAG_IGNIDX))
1318         return;
1319
1320     for (i = 0; i < seekhead_list->nb_elem; i++) {
1321         MatroskaSeekhead *seekhead = seekhead_list->elem;
1322         if (seekhead[i].pos <= before_pos)
1323             continue;
1324
1325         // defer cues parsing until we actually need cue data.
1326         if (seekhead[i].id == MATROSKA_ID_CUES) {
1327             matroska->cues_parsing_deferred = 1;
1328             continue;
1329         }
1330
1331         if (matroska_parse_seekhead_entry(matroska, i) < 0)
1332             break;
1333     }
1334 }
1335
1336 static void matroska_parse_cues(MatroskaDemuxContext *matroska) {
1337     EbmlList *seekhead_list = &matroska->seekhead;
1338     MatroskaSeekhead *seekhead = seekhead_list->elem;
1339     EbmlList *index_list;
1340     MatroskaIndex *index;
1341     int index_scale = 1;
1342     int i, j;
1343
1344     for (i = 0; i < seekhead_list->nb_elem; i++)
1345         if (seekhead[i].id == MATROSKA_ID_CUES)
1346             break;
1347     assert(i <= seekhead_list->nb_elem);
1348
1349     matroska_parse_seekhead_entry(matroska, i);
1350
1351     index_list = &matroska->index;
1352     index = index_list->elem;
1353     if (index_list->nb_elem
1354         && index[0].time > 1E14/matroska->time_scale) {
1355         av_log(matroska->ctx, AV_LOG_WARNING, "Working around broken index.\n");
1356         index_scale = matroska->time_scale;
1357     }
1358     for (i = 0; i < index_list->nb_elem; i++) {
1359         EbmlList *pos_list = &index[i].pos;
1360         MatroskaIndexPos *pos = pos_list->elem;
1361         for (j = 0; j < pos_list->nb_elem; j++) {
1362             MatroskaTrack *track = matroska_find_track_by_num(matroska, pos[j].track);
1363             if (track && track->stream)
1364                 av_add_index_entry(track->stream,
1365                                    pos[j].pos + matroska->segment_start,
1366                                    index[i].time/index_scale, 0, 0,
1367                                    AVINDEX_KEYFRAME);
1368         }
1369     }
1370 }
1371
1372 static int matroska_aac_profile(char *codec_id)
1373 {
1374     static const char * const aac_profiles[] = { "MAIN", "LC", "SSR" };
1375     int profile;
1376
1377     for (profile=0; profile<FF_ARRAY_ELEMS(aac_profiles); profile++)
1378         if (strstr(codec_id, aac_profiles[profile]))
1379             break;
1380     return profile + 1;
1381 }
1382
1383 static int matroska_aac_sri(int samplerate)
1384 {
1385     int sri;
1386
1387     for (sri=0; sri<FF_ARRAY_ELEMS(avpriv_mpeg4audio_sample_rates); sri++)
1388         if (avpriv_mpeg4audio_sample_rates[sri] == samplerate)
1389             break;
1390     return sri;
1391 }
1392
1393 static int matroska_read_header(AVFormatContext *s)
1394 {
1395     MatroskaDemuxContext *matroska = s->priv_data;
1396     EbmlList *attachements_list = &matroska->attachments;
1397     MatroskaAttachement *attachements;
1398     EbmlList *chapters_list = &matroska->chapters;
1399     MatroskaChapter *chapters;
1400     MatroskaTrack *tracks;
1401     uint64_t max_start = 0;
1402     int64_t pos;
1403     Ebml ebml = { 0 };
1404     AVStream *st;
1405     int i, j, res;
1406
1407     matroska->ctx = s;
1408
1409     /* First read the EBML header. */
1410     if (ebml_parse(matroska, ebml_syntax, &ebml)
1411         || ebml.version > EBML_VERSION       || ebml.max_size > sizeof(uint64_t)
1412         || ebml.id_length > sizeof(uint32_t) || ebml.doctype_version > 2) {
1413         av_log(matroska->ctx, AV_LOG_ERROR,
1414                "EBML header using unsupported features\n"
1415                "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n",
1416                ebml.version, ebml.doctype, ebml.doctype_version);
1417         ebml_free(ebml_syntax, &ebml);
1418         return AVERROR_PATCHWELCOME;
1419     }
1420     for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++)
1421         if (!strcmp(ebml.doctype, matroska_doctypes[i]))
1422             break;
1423     if (i >= FF_ARRAY_ELEMS(matroska_doctypes)) {
1424         av_log(s, AV_LOG_WARNING, "Unknown EBML doctype '%s'\n", ebml.doctype);
1425         if (matroska->ctx->error_recognition & AV_EF_EXPLODE) {
1426             ebml_free(ebml_syntax, &ebml);
1427             return AVERROR_INVALIDDATA;
1428         }
1429     }
1430     ebml_free(ebml_syntax, &ebml);
1431
1432     /* The next thing is a segment. */
1433     pos = avio_tell(matroska->ctx->pb);
1434     res = ebml_parse(matroska, matroska_segments, matroska);
1435     // try resyncing until we find a EBML_STOP type element.
1436     while (res != 1) {
1437         res = matroska_resync(matroska, pos);
1438         if (res < 0)
1439             return res;
1440         pos = avio_tell(matroska->ctx->pb);
1441         res = ebml_parse(matroska, matroska_segment, matroska);
1442     }
1443     matroska_execute_seekhead(matroska);
1444
1445     if (!matroska->time_scale)
1446         matroska->time_scale = 1000000;
1447     if (matroska->duration)
1448         matroska->ctx->duration = matroska->duration * matroska->time_scale
1449                                   * 1000 / AV_TIME_BASE;
1450     av_dict_set(&s->metadata, "title", matroska->title, 0);
1451
1452     tracks = matroska->tracks.elem;
1453     for (i=0; i < matroska->tracks.nb_elem; i++) {
1454         MatroskaTrack *track = &tracks[i];
1455         enum AVCodecID codec_id = AV_CODEC_ID_NONE;
1456         EbmlList *encodings_list = &tracks->encodings;
1457         MatroskaTrackEncoding *encodings = encodings_list->elem;
1458         uint8_t *extradata = NULL;
1459         int extradata_size = 0;
1460         int extradata_offset = 0;
1461         AVIOContext b;
1462
1463         /* Apply some sanity checks. */
1464         if (track->type != MATROSKA_TRACK_TYPE_VIDEO &&
1465             track->type != MATROSKA_TRACK_TYPE_AUDIO &&
1466             track->type != MATROSKA_TRACK_TYPE_SUBTITLE) {
1467             av_log(matroska->ctx, AV_LOG_INFO,
1468                    "Unknown or unsupported track type %"PRIu64"\n",
1469                    track->type);
1470             continue;
1471         }
1472         if (track->codec_id == NULL)
1473             continue;
1474
1475         if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
1476             if (!track->default_duration && track->video.frame_rate > 0)
1477                 track->default_duration = 1000000000/track->video.frame_rate;
1478             if (!track->video.display_width)
1479                 track->video.display_width = track->video.pixel_width;
1480             if (!track->video.display_height)
1481                 track->video.display_height = track->video.pixel_height;
1482         } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
1483             if (!track->audio.out_samplerate)
1484                 track->audio.out_samplerate = track->audio.samplerate;
1485         }
1486         if (encodings_list->nb_elem > 1) {
1487             av_log(matroska->ctx, AV_LOG_ERROR,
1488                    "Multiple combined encodings not supported");
1489         } else if (encodings_list->nb_elem == 1) {
1490             if (encodings[0].type ||
1491                 (
1492 #if CONFIG_ZLIB
1493                  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_ZLIB &&
1494 #endif
1495 #if CONFIG_BZLIB
1496                  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_BZLIB &&
1497 #endif
1498 #if CONFIG_LZO
1499                  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_LZO &&
1500 #endif
1501                  encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP)) {
1502                 encodings[0].scope = 0;
1503                 av_log(matroska->ctx, AV_LOG_ERROR,
1504                        "Unsupported encoding type");
1505             } else if (track->codec_priv.size && encodings[0].scope&2) {
1506                 uint8_t *codec_priv = track->codec_priv.data;
1507                 int ret = matroska_decode_buffer(&track->codec_priv.data,
1508                                                  &track->codec_priv.size,
1509                                                  track);
1510                 if (ret < 0) {
1511                     track->codec_priv.data = NULL;
1512                     track->codec_priv.size = 0;
1513                     av_log(matroska->ctx, AV_LOG_ERROR,
1514                            "Failed to decode codec private data\n");
1515                 }
1516
1517                 if (codec_priv != track->codec_priv.data)
1518                     av_free(codec_priv);
1519             }
1520         }
1521
1522         for(j=0; ff_mkv_codec_tags[j].id != AV_CODEC_ID_NONE; j++){
1523             if(!strncmp(ff_mkv_codec_tags[j].str, track->codec_id,
1524                         strlen(ff_mkv_codec_tags[j].str))){
1525                 codec_id= ff_mkv_codec_tags[j].id;
1526                 break;
1527             }
1528         }
1529
1530         st = track->stream = avformat_new_stream(s, NULL);
1531         if (st == NULL)
1532             return AVERROR(ENOMEM);
1533
1534         if (!strcmp(track->codec_id, "V_MS/VFW/FOURCC")
1535             && track->codec_priv.size >= 40
1536             && track->codec_priv.data != NULL) {
1537             track->ms_compat = 1;
1538             track->video.fourcc = AV_RL32(track->codec_priv.data + 16);
1539             codec_id = ff_codec_get_id(ff_codec_bmp_tags, track->video.fourcc);
1540             extradata_offset = 40;
1541         } else if (!strcmp(track->codec_id, "A_MS/ACM")
1542                    && track->codec_priv.size >= 14
1543                    && track->codec_priv.data != NULL) {
1544             int ret;
1545             ffio_init_context(&b, track->codec_priv.data, track->codec_priv.size,
1546                               0, NULL, NULL, NULL, NULL);
1547             ret = ff_get_wav_header(&b, st->codec, track->codec_priv.size);
1548             if (ret < 0)
1549                 return ret;
1550             codec_id = st->codec->codec_id;
1551             extradata_offset = FFMIN(track->codec_priv.size, 18);
1552         } else if (!strcmp(track->codec_id, "V_QUICKTIME")
1553                    && (track->codec_priv.size >= 86)
1554                    && (track->codec_priv.data != NULL)) {
1555             track->video.fourcc = AV_RL32(track->codec_priv.data);
1556             codec_id=ff_codec_get_id(ff_codec_movvideo_tags, track->video.fourcc);
1557         } else if (codec_id == AV_CODEC_ID_PCM_S16BE) {
1558             switch (track->audio.bitdepth) {
1559             case  8:  codec_id = AV_CODEC_ID_PCM_U8;     break;
1560             case 24:  codec_id = AV_CODEC_ID_PCM_S24BE;  break;
1561             case 32:  codec_id = AV_CODEC_ID_PCM_S32BE;  break;
1562             }
1563         } else if (codec_id == AV_CODEC_ID_PCM_S16LE) {
1564             switch (track->audio.bitdepth) {
1565             case  8:  codec_id = AV_CODEC_ID_PCM_U8;     break;
1566             case 24:  codec_id = AV_CODEC_ID_PCM_S24LE;  break;
1567             case 32:  codec_id = AV_CODEC_ID_PCM_S32LE;  break;
1568             }
1569         } else if (codec_id==AV_CODEC_ID_PCM_F32LE && track->audio.bitdepth==64) {
1570             codec_id = AV_CODEC_ID_PCM_F64LE;
1571         } else if (codec_id == AV_CODEC_ID_AAC && !track->codec_priv.size) {
1572             int profile = matroska_aac_profile(track->codec_id);
1573             int sri = matroska_aac_sri(track->audio.samplerate);
1574             extradata = av_mallocz(5 + FF_INPUT_BUFFER_PADDING_SIZE);
1575             if (extradata == NULL)
1576                 return AVERROR(ENOMEM);
1577             extradata[0] = (profile << 3) | ((sri&0x0E) >> 1);
1578             extradata[1] = ((sri&0x01) << 7) | (track->audio.channels<<3);
1579             if (strstr(track->codec_id, "SBR")) {
1580                 sri = matroska_aac_sri(track->audio.out_samplerate);
1581                 extradata[2] = 0x56;
1582                 extradata[3] = 0xE5;
1583                 extradata[4] = 0x80 | (sri<<3);
1584                 extradata_size = 5;
1585             } else
1586                 extradata_size = 2;
1587         } else if (codec_id == AV_CODEC_ID_ALAC && track->codec_priv.size) {
1588             /* Only ALAC's magic cookie is stored in Matroska's track headers.
1589                Create the "atom size", "tag", and "tag version" fields the
1590                decoder expects manually. */
1591             extradata_size = 12 + track->codec_priv.size;
1592             extradata = av_mallocz(extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
1593             if (extradata == NULL)
1594                 return AVERROR(ENOMEM);
1595             AV_WB32(extradata, extradata_size);
1596             memcpy(&extradata[4], "alac", 4);
1597             AV_WB32(&extradata[8], 0);
1598             memcpy(&extradata[12], track->codec_priv.data,
1599                                    track->codec_priv.size);
1600         } else if (codec_id == AV_CODEC_ID_TTA) {
1601             extradata_size = 30;
1602             extradata = av_mallocz(extradata_size);
1603             if (extradata == NULL)
1604                 return AVERROR(ENOMEM);
1605             ffio_init_context(&b, extradata, extradata_size, 1,
1606                           NULL, NULL, NULL, NULL);
1607             avio_write(&b, "TTA1", 4);
1608             avio_wl16(&b, 1);
1609             avio_wl16(&b, track->audio.channels);
1610             avio_wl16(&b, track->audio.bitdepth);
1611             avio_wl32(&b, track->audio.out_samplerate);
1612             avio_wl32(&b, matroska->ctx->duration * track->audio.out_samplerate);
1613         } else if (codec_id == AV_CODEC_ID_RV10 || codec_id == AV_CODEC_ID_RV20 ||
1614                    codec_id == AV_CODEC_ID_RV30 || codec_id == AV_CODEC_ID_RV40) {
1615             extradata_offset = 26;
1616         } else if (codec_id == AV_CODEC_ID_RA_144) {
1617             track->audio.out_samplerate = 8000;
1618             track->audio.channels = 1;
1619         } else if (codec_id == AV_CODEC_ID_RA_288 || codec_id == AV_CODEC_ID_COOK ||
1620                    codec_id == AV_CODEC_ID_ATRAC3 || codec_id == AV_CODEC_ID_SIPR) {
1621             int flavor;
1622             ffio_init_context(&b, track->codec_priv.data,track->codec_priv.size,
1623                           0, NULL, NULL, NULL, NULL);
1624             avio_skip(&b, 22);
1625             flavor                       = avio_rb16(&b);
1626             track->audio.coded_framesize = avio_rb32(&b);
1627             avio_skip(&b, 12);
1628             track->audio.sub_packet_h    = avio_rb16(&b);
1629             track->audio.frame_size      = avio_rb16(&b);
1630             track->audio.sub_packet_size = avio_rb16(&b);
1631             if (flavor <= 0 || track->audio.coded_framesize <= 0 ||
1632                 track->audio.sub_packet_h <= 0 || track->audio.frame_size <= 0 ||
1633                 track->audio.sub_packet_size <= 0)
1634                 return AVERROR_INVALIDDATA;
1635             track->audio.buf = av_malloc(track->audio.frame_size * track->audio.sub_packet_h);
1636             if (codec_id == AV_CODEC_ID_RA_288) {
1637                 st->codec->block_align = track->audio.coded_framesize;
1638                 track->codec_priv.size = 0;
1639             } else {
1640                 if (codec_id == AV_CODEC_ID_SIPR && flavor < 4) {
1641                     const int sipr_bit_rate[4] = { 6504, 8496, 5000, 16000 };
1642                     track->audio.sub_packet_size = ff_sipr_subpk_size[flavor];
1643                     st->codec->bit_rate = sipr_bit_rate[flavor];
1644                 }
1645                 st->codec->block_align = track->audio.sub_packet_size;
1646                 extradata_offset = 78;
1647             }
1648         }
1649         track->codec_priv.size -= extradata_offset;
1650
1651         if (codec_id == AV_CODEC_ID_NONE)
1652             av_log(matroska->ctx, AV_LOG_INFO,
1653                    "Unknown/unsupported AVCodecID %s.\n", track->codec_id);
1654
1655         if (track->time_scale < 0.01)
1656             track->time_scale = 1.0;
1657         avpriv_set_pts_info(st, 64, matroska->time_scale*track->time_scale, 1000*1000*1000); /* 64 bit pts in ns */
1658
1659         st->codec->codec_id = codec_id;
1660         st->start_time = 0;
1661         if (strcmp(track->language, "und"))
1662             av_dict_set(&st->metadata, "language", track->language, 0);
1663         av_dict_set(&st->metadata, "title", track->name, 0);
1664
1665         if (track->flag_default)
1666             st->disposition |= AV_DISPOSITION_DEFAULT;
1667         if (track->flag_forced)
1668             st->disposition |= AV_DISPOSITION_FORCED;
1669
1670         if (!st->codec->extradata) {
1671             if(extradata){
1672                 st->codec->extradata = extradata;
1673                 st->codec->extradata_size = extradata_size;
1674             } else if(track->codec_priv.data && track->codec_priv.size > 0){
1675                 st->codec->extradata = av_mallocz(track->codec_priv.size +
1676                                                   FF_INPUT_BUFFER_PADDING_SIZE);
1677                 if(st->codec->extradata == NULL)
1678                     return AVERROR(ENOMEM);
1679                 st->codec->extradata_size = track->codec_priv.size;
1680                 memcpy(st->codec->extradata,
1681                        track->codec_priv.data + extradata_offset,
1682                        track->codec_priv.size);
1683             }
1684         }
1685
1686         if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
1687             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
1688             st->codec->codec_tag  = track->video.fourcc;
1689             st->codec->width  = track->video.pixel_width;
1690             st->codec->height = track->video.pixel_height;
1691             av_reduce(&st->sample_aspect_ratio.num,
1692                       &st->sample_aspect_ratio.den,
1693                       st->codec->height * track->video.display_width,
1694                       st->codec-> width * track->video.display_height,
1695                       255);
1696             if (st->codec->codec_id != AV_CODEC_ID_H264)
1697             st->need_parsing = AVSTREAM_PARSE_HEADERS;
1698             if (track->default_duration) {
1699                 av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
1700                           1000000000, track->default_duration, 30000);
1701             }
1702         } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
1703             st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
1704             st->codec->sample_rate = track->audio.out_samplerate;
1705             st->codec->channels = track->audio.channels;
1706             if (st->codec->codec_id != AV_CODEC_ID_AAC)
1707             st->need_parsing = AVSTREAM_PARSE_HEADERS;
1708         } else if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE) {
1709             st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
1710             if (st->codec->codec_id == AV_CODEC_ID_SSA)
1711                 matroska->contains_ssa = 1;
1712         }
1713     }
1714
1715     attachements = attachements_list->elem;
1716     for (j=0; j<attachements_list->nb_elem; j++) {
1717         if (!(attachements[j].filename && attachements[j].mime &&
1718               attachements[j].bin.data && attachements[j].bin.size > 0)) {
1719             av_log(matroska->ctx, AV_LOG_ERROR, "incomplete attachment\n");
1720         } else {
1721             AVStream *st = avformat_new_stream(s, NULL);
1722             if (st == NULL)
1723                 break;
1724             av_dict_set(&st->metadata, "filename",attachements[j].filename, 0);
1725             av_dict_set(&st->metadata, "mimetype", attachements[j].mime, 0);
1726             st->codec->codec_id = AV_CODEC_ID_NONE;
1727             st->codec->codec_type = AVMEDIA_TYPE_ATTACHMENT;
1728             st->codec->extradata  = av_malloc(attachements[j].bin.size);
1729             if(st->codec->extradata == NULL)
1730                 break;
1731             st->codec->extradata_size = attachements[j].bin.size;
1732             memcpy(st->codec->extradata, attachements[j].bin.data, attachements[j].bin.size);
1733
1734             for (i=0; ff_mkv_mime_tags[i].id != AV_CODEC_ID_NONE; i++) {
1735                 if (!strncmp(ff_mkv_mime_tags[i].str, attachements[j].mime,
1736                              strlen(ff_mkv_mime_tags[i].str))) {
1737                     st->codec->codec_id = ff_mkv_mime_tags[i].id;
1738                     break;
1739                 }
1740             }
1741             attachements[j].stream = st;
1742         }
1743     }
1744
1745     chapters = chapters_list->elem;
1746     for (i=0; i<chapters_list->nb_elem; i++)
1747         if (chapters[i].start != AV_NOPTS_VALUE && chapters[i].uid
1748             && (max_start==0 || chapters[i].start > max_start)) {
1749             chapters[i].chapter =
1750             avpriv_new_chapter(s, chapters[i].uid, (AVRational){1, 1000000000},
1751                            chapters[i].start, chapters[i].end,
1752                            chapters[i].title);
1753             av_dict_set(&chapters[i].chapter->metadata,
1754                              "title", chapters[i].title, 0);
1755             max_start = chapters[i].start;
1756         }
1757
1758     matroska_convert_tags(s);
1759
1760     return 0;
1761 }
1762
1763 /*
1764  * Put one packet in an application-supplied AVPacket struct.
1765  * Returns 0 on success or -1 on failure.
1766  */
1767 static int matroska_deliver_packet(MatroskaDemuxContext *matroska,
1768                                    AVPacket *pkt)
1769 {
1770     if (matroska->num_packets > 0) {
1771         memcpy(pkt, matroska->packets[0], sizeof(AVPacket));
1772         av_free(matroska->packets[0]);
1773         if (matroska->num_packets > 1) {
1774             void *newpackets;
1775             memmove(&matroska->packets[0], &matroska->packets[1],
1776                     (matroska->num_packets - 1) * sizeof(AVPacket *));
1777             newpackets = av_realloc(matroska->packets,
1778                             (matroska->num_packets - 1) * sizeof(AVPacket *));
1779             if (newpackets)
1780                 matroska->packets = newpackets;
1781         } else {
1782             av_freep(&matroska->packets);
1783             matroska->prev_pkt = NULL;
1784         }
1785         matroska->num_packets--;
1786         return 0;
1787     }
1788
1789     return -1;
1790 }
1791
1792 /*
1793  * Free all packets in our internal queue.
1794  */
1795 static void matroska_clear_queue(MatroskaDemuxContext *matroska)
1796 {
1797     matroska->prev_pkt = NULL;
1798     if (matroska->packets) {
1799         int n;
1800         for (n = 0; n < matroska->num_packets; n++) {
1801             av_free_packet(matroska->packets[n]);
1802             av_free(matroska->packets[n]);
1803         }
1804         av_freep(&matroska->packets);
1805         matroska->num_packets = 0;
1806     }
1807 }
1808
1809 static int matroska_parse_laces(MatroskaDemuxContext *matroska, uint8_t **buf,
1810                                 int* buf_size, int type,
1811                                 uint32_t **lace_buf, int *laces)
1812 {
1813     int res = 0, n, size = *buf_size;
1814     uint8_t *data = *buf;
1815     uint32_t *lace_size;
1816
1817     if (!type) {
1818         *laces = 1;
1819         *lace_buf = av_mallocz(sizeof(int));
1820         if (!*lace_buf)
1821             return AVERROR(ENOMEM);
1822
1823         *lace_buf[0] = size;
1824         return 0;
1825     }
1826
1827     assert(size > 0);
1828     *laces = *data + 1;
1829     data += 1;
1830     size -= 1;
1831     lace_size = av_mallocz(*laces * sizeof(int));
1832     if (!lace_size)
1833         return AVERROR(ENOMEM);
1834
1835     switch (type) {
1836     case 0x1: /* Xiph lacing */ {
1837         uint8_t temp;
1838         uint32_t total = 0;
1839         for (n = 0; res == 0 && n < *laces - 1; n++) {
1840             while (1) {
1841                 if (size == 0) {
1842                     res = AVERROR_EOF;
1843                     break;
1844                 }
1845                 temp = *data;
1846                 lace_size[n] += temp;
1847                 data += 1;
1848                 size -= 1;
1849                 if (temp != 0xff)
1850                     break;
1851             }
1852             total += lace_size[n];
1853         }
1854         if (size <= total) {
1855             res = AVERROR_INVALIDDATA;
1856             break;
1857         }
1858
1859         lace_size[n] = size - total;
1860         break;
1861     }
1862
1863     case 0x2: /* fixed-size lacing */
1864         if (size % (*laces)) {
1865             res = AVERROR_INVALIDDATA;
1866             break;
1867         }
1868         for (n = 0; n < *laces; n++)
1869             lace_size[n] = size / *laces;
1870         break;
1871
1872     case 0x3: /* EBML lacing */ {
1873         uint64_t num;
1874         uint64_t total;
1875         n = matroska_ebmlnum_uint(matroska, data, size, &num);
1876         if (n < 0) {
1877             av_log(matroska->ctx, AV_LOG_INFO,
1878                    "EBML block data error\n");
1879             res = n;
1880             break;
1881         }
1882         data += n;
1883         size -= n;
1884         total = lace_size[0] = num;
1885         for (n = 1; res == 0 && n < *laces - 1; n++) {
1886             int64_t snum;
1887             int r;
1888             r = matroska_ebmlnum_sint(matroska, data, size, &snum);
1889             if (r < 0) {
1890                 av_log(matroska->ctx, AV_LOG_INFO,
1891                        "EBML block data error\n");
1892                 res = r;
1893                 break;
1894             }
1895             data += r;
1896             size -= r;
1897             lace_size[n] = lace_size[n - 1] + snum;
1898             total += lace_size[n];
1899         }
1900         if (size <= total) {
1901             res = AVERROR_INVALIDDATA;
1902             break;
1903         }
1904         lace_size[*laces - 1] = size - total;
1905         break;
1906     }
1907     }
1908
1909     *buf      = data;
1910     *lace_buf = lace_size;
1911     *buf_size = size;
1912
1913     return res;
1914 }
1915
1916 static int matroska_parse_rm_audio(MatroskaDemuxContext *matroska,
1917                                    MatroskaTrack *track,
1918                                    AVStream *st,
1919                                    uint8_t *data, int size,
1920                                    uint64_t timecode, uint64_t duration,
1921                                    int64_t pos)
1922 {
1923     int a = st->codec->block_align;
1924     int sps = track->audio.sub_packet_size;
1925     int cfs = track->audio.coded_framesize;
1926     int h = track->audio.sub_packet_h;
1927     int y = track->audio.sub_packet_cnt;
1928     int w = track->audio.frame_size;
1929     int x;
1930
1931     if (!track->audio.pkt_cnt) {
1932         if (track->audio.sub_packet_cnt == 0)
1933             track->audio.buf_timecode = timecode;
1934         if (st->codec->codec_id == AV_CODEC_ID_RA_288) {
1935             if (size < cfs * h / 2) {
1936                 av_log(matroska->ctx, AV_LOG_ERROR,
1937                        "Corrupt int4 RM-style audio packet size\n");
1938                 return AVERROR_INVALIDDATA;
1939             }
1940             for (x=0; x<h/2; x++)
1941                 memcpy(track->audio.buf+x*2*w+y*cfs,
1942                        data+x*cfs, cfs);
1943         } else if (st->codec->codec_id == AV_CODEC_ID_SIPR) {
1944             if (size < w) {
1945                 av_log(matroska->ctx, AV_LOG_ERROR,
1946                        "Corrupt sipr RM-style audio packet size\n");
1947                 return AVERROR_INVALIDDATA;
1948             }
1949             memcpy(track->audio.buf + y*w, data, w);
1950         } else {
1951             if (size < sps * w / sps) {
1952                 av_log(matroska->ctx, AV_LOG_ERROR,
1953                        "Corrupt generic RM-style audio packet size\n");
1954                 return AVERROR_INVALIDDATA;
1955             }
1956             for (x=0; x<w/sps; x++)
1957                 memcpy(track->audio.buf+sps*(h*x+((h+1)/2)*(y&1)+(y>>1)), data+x*sps, sps);
1958         }
1959
1960         if (++track->audio.sub_packet_cnt >= h) {
1961             if (st->codec->codec_id == AV_CODEC_ID_SIPR)
1962                 ff_rm_reorder_sipr_data(track->audio.buf, h, w);
1963             track->audio.sub_packet_cnt = 0;
1964             track->audio.pkt_cnt = h*w / a;
1965         }
1966     }
1967
1968     while (track->audio.pkt_cnt) {
1969         AVPacket *pkt = av_mallocz(sizeof(AVPacket));
1970         av_new_packet(pkt, a);
1971         memcpy(pkt->data, track->audio.buf
1972                + a * (h*w / a - track->audio.pkt_cnt--), a);
1973         pkt->pts = track->audio.buf_timecode;
1974         track->audio.buf_timecode = AV_NOPTS_VALUE;
1975         pkt->pos = pos;
1976         pkt->stream_index = st->index;
1977         dynarray_add(&matroska->packets,&matroska->num_packets,pkt);
1978     }
1979
1980     return 0;
1981 }
1982
1983 /* reconstruct full wavpack blocks from mangled matroska ones */
1984 static int matroska_parse_wavpack(MatroskaTrack *track, uint8_t *src,
1985                                   uint8_t **pdst, int *size)
1986 {
1987     uint8_t *dst = NULL;
1988     int dstlen   = 0;
1989     int srclen   = *size;
1990     uint32_t samples;
1991     uint16_t ver;
1992     int ret, offset = 0;
1993
1994     if (srclen < 12 || track->stream->codec->extradata_size < 2)
1995         return AVERROR_INVALIDDATA;
1996
1997     ver = AV_RL16(track->stream->codec->extradata);
1998
1999     samples = AV_RL32(src);
2000     src    += 4;
2001     srclen -= 4;
2002
2003     while (srclen >= 8) {
2004         int multiblock;
2005         uint32_t blocksize;
2006         uint8_t *tmp;
2007
2008         uint32_t flags = AV_RL32(src);
2009         uint32_t crc   = AV_RL32(src + 4);
2010         src    += 8;
2011         srclen -= 8;
2012
2013         multiblock = (flags & 0x1800) != 0x1800;
2014         if (multiblock) {
2015             if (srclen < 4) {
2016                 ret = AVERROR_INVALIDDATA;
2017                 goto fail;
2018             }
2019             blocksize = AV_RL32(src);
2020             src    += 4;
2021             srclen -= 4;
2022         } else
2023             blocksize = srclen;
2024
2025         if (blocksize > srclen) {
2026             ret = AVERROR_INVALIDDATA;
2027             goto fail;
2028         }
2029
2030         tmp = av_realloc(dst, dstlen + blocksize + 32);
2031         if (!tmp) {
2032             ret = AVERROR(ENOMEM);
2033             goto fail;
2034         }
2035         dst     = tmp;
2036         dstlen += blocksize + 32;
2037
2038         AV_WL32(dst + offset,      MKTAG('w', 'v', 'p', 'k')); // tag
2039         AV_WL32(dst + offset + 4,  blocksize + 24);            // blocksize - 8
2040         AV_WL16(dst + offset + 8,  ver);                       // version
2041         AV_WL16(dst + offset + 10, 0);                         // track/index_no
2042         AV_WL32(dst + offset + 12, 0);                         // total samples
2043         AV_WL32(dst + offset + 16, 0);                         // block index
2044         AV_WL32(dst + offset + 20, samples);                   // number of samples
2045         AV_WL32(dst + offset + 24, flags);                     // flags
2046         AV_WL32(dst + offset + 28, crc);                       // crc
2047         memcpy (dst + offset + 32, src, blocksize);            // block data
2048
2049         src    += blocksize;
2050         srclen -= blocksize;
2051         offset += blocksize + 32;
2052     }
2053
2054     *pdst = dst;
2055     *size = dstlen;
2056
2057     return 0;
2058
2059 fail:
2060     av_freep(&dst);
2061     return ret;
2062 }
2063
2064 static int matroska_parse_frame(MatroskaDemuxContext *matroska,
2065                                 MatroskaTrack *track,
2066                                 AVStream *st,
2067                                 uint8_t *data, int pkt_size,
2068                                 uint64_t timecode, uint64_t duration,
2069                                 int64_t pos, int is_keyframe)
2070 {
2071     MatroskaTrackEncoding *encodings = track->encodings.elem;
2072     uint8_t *pkt_data = data;
2073     int offset = 0, res;
2074     AVPacket *pkt;
2075
2076     if (encodings && encodings->scope & 1) {
2077         res = matroska_decode_buffer(&pkt_data, &pkt_size, track);
2078         if (res < 0)
2079             return res;
2080     }
2081
2082     if (st->codec->codec_id == AV_CODEC_ID_WAVPACK) {
2083         uint8_t *wv_data;
2084         res = matroska_parse_wavpack(track, pkt_data, &wv_data, &pkt_size);
2085         if (res < 0) {
2086             av_log(matroska->ctx, AV_LOG_ERROR, "Error parsing a wavpack block.\n");
2087             goto fail;
2088         }
2089         if (pkt_data != data)
2090             av_freep(&pkt_data);
2091         pkt_data = wv_data;
2092     }
2093
2094     if (st->codec->codec_id == AV_CODEC_ID_PRORES)
2095         offset = 8;
2096
2097     pkt = av_mallocz(sizeof(AVPacket));
2098     /* XXX: prevent data copy... */
2099     if (av_new_packet(pkt, pkt_size + offset) < 0) {
2100         av_free(pkt);
2101         return AVERROR(ENOMEM);
2102     }
2103
2104     if (st->codec->codec_id == AV_CODEC_ID_PRORES) {
2105         uint8_t *buf = pkt->data;
2106         bytestream_put_be32(&buf, pkt_size);
2107         bytestream_put_be32(&buf, MKBETAG('i', 'c', 'p', 'f'));
2108     }
2109
2110     memcpy(pkt->data + offset, pkt_data, pkt_size);
2111
2112     if (pkt_data != data)
2113         av_free(pkt_data);
2114
2115     pkt->flags = is_keyframe;
2116     pkt->stream_index = st->index;
2117
2118     if (track->ms_compat)
2119         pkt->dts = timecode;
2120     else
2121         pkt->pts = timecode;
2122     pkt->pos = pos;
2123     if (st->codec->codec_id == AV_CODEC_ID_TEXT)
2124         pkt->convergence_duration = duration;
2125     else if (track->type != MATROSKA_TRACK_TYPE_SUBTITLE)
2126         pkt->duration = duration;
2127
2128     if (st->codec->codec_id == AV_CODEC_ID_SSA)
2129         matroska_fix_ass_packet(matroska, pkt, duration);
2130
2131     if (matroska->prev_pkt &&
2132         timecode != AV_NOPTS_VALUE &&
2133         matroska->prev_pkt->pts == timecode &&
2134         matroska->prev_pkt->stream_index == st->index &&
2135         st->codec->codec_id == AV_CODEC_ID_SSA)
2136         matroska_merge_packets(matroska->prev_pkt, pkt);
2137     else {
2138         dynarray_add(&matroska->packets,&matroska->num_packets,pkt);
2139         matroska->prev_pkt = pkt;
2140     }
2141
2142     return 0;
2143 fail:
2144     if (pkt_data != data)
2145         av_freep(&pkt_data);
2146     return res;
2147 }
2148
2149 static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data,
2150                                 int size, int64_t pos, uint64_t cluster_time,
2151                                 uint64_t block_duration, int is_keyframe,
2152                                 int64_t cluster_pos)
2153 {
2154     uint64_t timecode = AV_NOPTS_VALUE;
2155     MatroskaTrack *track;
2156     int res = 0;
2157     AVStream *st;
2158     int16_t block_time;
2159     uint32_t *lace_size = NULL;
2160     int n, flags, laces = 0;
2161     uint64_t num, duration;
2162
2163     if ((n = matroska_ebmlnum_uint(matroska, data, size, &num)) < 0) {
2164         av_log(matroska->ctx, AV_LOG_ERROR, "EBML block data error\n");
2165         return n;
2166     }
2167     data += n;
2168     size -= n;
2169
2170     track = matroska_find_track_by_num(matroska, num);
2171     if (!track || !track->stream) {
2172         av_log(matroska->ctx, AV_LOG_INFO,
2173                "Invalid stream %"PRIu64" or size %u\n", num, size);
2174         return AVERROR_INVALIDDATA;
2175     } else if (size <= 3)
2176         return 0;
2177     st = track->stream;
2178     if (st->discard >= AVDISCARD_ALL)
2179         return res;
2180
2181     block_time = AV_RB16(data);
2182     data += 2;
2183     flags = *data++;
2184     size -= 3;
2185     if (is_keyframe == -1)
2186         is_keyframe = flags & 0x80 ? AV_PKT_FLAG_KEY : 0;
2187
2188     if (cluster_time != (uint64_t)-1
2189         && (block_time >= 0 || cluster_time >= -block_time)) {
2190         timecode = cluster_time + block_time;
2191         if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE
2192             && timecode < track->end_timecode)
2193             is_keyframe = 0;  /* overlapping subtitles are not key frame */
2194         if (is_keyframe)
2195             av_add_index_entry(st, cluster_pos, timecode, 0,0,AVINDEX_KEYFRAME);
2196     }
2197
2198     if (matroska->skip_to_keyframe && track->type != MATROSKA_TRACK_TYPE_SUBTITLE) {
2199         if (!is_keyframe || timecode < matroska->skip_to_timecode)
2200             return res;
2201         matroska->skip_to_keyframe = 0;
2202     }
2203
2204     res = matroska_parse_laces(matroska, &data, &size, (flags & 0x06) >> 1,
2205                                &lace_size, &laces);
2206
2207     if (res)
2208         goto end;
2209
2210     if (block_duration != AV_NOPTS_VALUE) {
2211         duration = block_duration / laces;
2212         if (block_duration != duration * laces) {
2213             av_log(matroska->ctx, AV_LOG_WARNING,
2214                    "Incorrect block_duration, possibly corrupted container");
2215         }
2216     } else {
2217         duration = track->default_duration / matroska->time_scale;
2218         block_duration = duration * laces;
2219     }
2220
2221     if (timecode != AV_NOPTS_VALUE)
2222         track->end_timecode =
2223             FFMAX(track->end_timecode, timecode + block_duration);
2224
2225     for (n = 0; n < laces; n++) {
2226         if ((st->codec->codec_id == AV_CODEC_ID_RA_288 ||
2227              st->codec->codec_id == AV_CODEC_ID_COOK ||
2228              st->codec->codec_id == AV_CODEC_ID_SIPR ||
2229              st->codec->codec_id == AV_CODEC_ID_ATRAC3) &&
2230              st->codec->block_align && track->audio.sub_packet_size) {
2231
2232             res = matroska_parse_rm_audio(matroska, track, st, data,
2233                                           lace_size[n],
2234                                           timecode, duration, pos);
2235             if (res)
2236                 goto end;
2237
2238         } else {
2239             res = matroska_parse_frame(matroska, track, st, data, lace_size[n],
2240                                       timecode, duration,
2241                                       pos, !n? is_keyframe : 0);
2242             if (res)
2243                 goto end;
2244         }
2245
2246         if (timecode != AV_NOPTS_VALUE)
2247             timecode = duration ? timecode + duration : AV_NOPTS_VALUE;
2248         data += lace_size[n];
2249     }
2250
2251 end:
2252     av_free(lace_size);
2253     return res;
2254 }
2255
2256 static int matroska_parse_cluster_incremental(MatroskaDemuxContext *matroska)
2257 {
2258     EbmlList *blocks_list;
2259     MatroskaBlock *blocks;
2260     int i, res;
2261     res = ebml_parse(matroska,
2262                      matroska_cluster_incremental_parsing,
2263                      &matroska->current_cluster);
2264     if (res == 1) {
2265         /* New Cluster */
2266         if (matroska->current_cluster_pos)
2267             ebml_level_end(matroska);
2268         ebml_free(matroska_cluster, &matroska->current_cluster);
2269         memset(&matroska->current_cluster, 0, sizeof(MatroskaCluster));
2270         matroska->current_cluster_num_blocks = 0;
2271         matroska->current_cluster_pos = avio_tell(matroska->ctx->pb);
2272         matroska->prev_pkt = NULL;
2273         /* sizeof the ID which was already read */
2274         if (matroska->current_id)
2275             matroska->current_cluster_pos -= 4;
2276         res = ebml_parse(matroska,
2277                          matroska_clusters_incremental,
2278                          &matroska->current_cluster);
2279         /* Try parsing the block again. */
2280         if (res == 1)
2281             res = ebml_parse(matroska,
2282                              matroska_cluster_incremental_parsing,
2283                              &matroska->current_cluster);
2284     }
2285
2286     if (!res &&
2287         matroska->current_cluster_num_blocks <
2288             matroska->current_cluster.blocks.nb_elem) {
2289         blocks_list = &matroska->current_cluster.blocks;
2290         blocks = blocks_list->elem;
2291
2292         matroska->current_cluster_num_blocks = blocks_list->nb_elem;
2293         i = blocks_list->nb_elem - 1;
2294         if (blocks[i].bin.size > 0 && blocks[i].bin.data) {
2295             int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1;
2296             if (!blocks[i].non_simple)
2297                 blocks[i].duration = AV_NOPTS_VALUE;
2298             res = matroska_parse_block(matroska,
2299                                        blocks[i].bin.data, blocks[i].bin.size,
2300                                        blocks[i].bin.pos,
2301                                        matroska->current_cluster.timecode,
2302                                        blocks[i].duration, is_keyframe,
2303                                        matroska->current_cluster_pos);
2304         }
2305     }
2306
2307     if (res < 0)  matroska->done = 1;
2308     return res;
2309 }
2310
2311 static int matroska_parse_cluster(MatroskaDemuxContext *matroska)
2312 {
2313     MatroskaCluster cluster = { 0 };
2314     EbmlList *blocks_list;
2315     MatroskaBlock *blocks;
2316     int i, res;
2317     int64_t pos;
2318     if (!matroska->contains_ssa)
2319         return matroska_parse_cluster_incremental(matroska);
2320     pos = avio_tell(matroska->ctx->pb);
2321     matroska->prev_pkt = NULL;
2322     if (matroska->current_id)
2323         pos -= 4;  /* sizeof the ID which was already read */
2324     res = ebml_parse(matroska, matroska_clusters, &cluster);
2325     blocks_list = &cluster.blocks;
2326     blocks = blocks_list->elem;
2327     for (i=0; i<blocks_list->nb_elem && !res; i++)
2328         if (blocks[i].bin.size > 0 && blocks[i].bin.data) {
2329             int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1;
2330             if (!blocks[i].non_simple)
2331                 blocks[i].duration = AV_NOPTS_VALUE;
2332             res=matroska_parse_block(matroska,
2333                                      blocks[i].bin.data, blocks[i].bin.size,
2334                                      blocks[i].bin.pos,  cluster.timecode,
2335                                      blocks[i].duration, is_keyframe,
2336                                      pos);
2337         }
2338     ebml_free(matroska_cluster, &cluster);
2339     return res;
2340 }
2341
2342 static int matroska_read_packet(AVFormatContext *s, AVPacket *pkt)
2343 {
2344     MatroskaDemuxContext *matroska = s->priv_data;
2345     int ret = 0;
2346
2347     while (!ret && matroska_deliver_packet(matroska, pkt)) {
2348         int64_t pos = avio_tell(matroska->ctx->pb);
2349         if (matroska->done)
2350             return AVERROR_EOF;
2351         if (matroska_parse_cluster(matroska) < 0)
2352             ret = matroska_resync(matroska, pos);
2353     }
2354
2355     if (ret == AVERROR_INVALIDDATA && pkt->data) {
2356         pkt->flags |= AV_PKT_FLAG_CORRUPT;
2357         return 0;
2358     }
2359
2360     return ret;
2361 }
2362
2363 static int matroska_read_seek(AVFormatContext *s, int stream_index,
2364                               int64_t timestamp, int flags)
2365 {
2366     MatroskaDemuxContext *matroska = s->priv_data;
2367     MatroskaTrack *tracks = matroska->tracks.elem;
2368     AVStream *st = s->streams[stream_index];
2369     int i, index, index_sub, index_min;
2370
2371     /* Parse the CUES now since we need the index data to seek. */
2372     if (matroska->cues_parsing_deferred) {
2373         matroska_parse_cues(matroska);
2374         matroska->cues_parsing_deferred = 0;
2375     }
2376
2377     if (!st->nb_index_entries)
2378         return 0;
2379     timestamp = FFMAX(timestamp, st->index_entries[0].timestamp);
2380
2381     if ((index = av_index_search_timestamp(st, timestamp, flags)) < 0) {
2382         avio_seek(s->pb, st->index_entries[st->nb_index_entries-1].pos, SEEK_SET);
2383         matroska->current_id = 0;
2384         while ((index = av_index_search_timestamp(st, timestamp, flags)) < 0) {
2385             matroska_clear_queue(matroska);
2386             if (matroska_parse_cluster(matroska) < 0)
2387                 break;
2388         }
2389     }
2390
2391     matroska_clear_queue(matroska);
2392     if (index < 0)
2393         return 0;
2394
2395     index_min = index;
2396     for (i=0; i < matroska->tracks.nb_elem; i++) {
2397         tracks[i].audio.pkt_cnt = 0;
2398         tracks[i].audio.sub_packet_cnt = 0;
2399         tracks[i].audio.buf_timecode = AV_NOPTS_VALUE;
2400         tracks[i].end_timecode = 0;
2401         if (tracks[i].type == MATROSKA_TRACK_TYPE_SUBTITLE
2402             && !tracks[i].stream->discard != AVDISCARD_ALL) {
2403             index_sub = av_index_search_timestamp(tracks[i].stream, st->index_entries[index].timestamp, AVSEEK_FLAG_BACKWARD);
2404             if (index_sub >= 0
2405                 && st->index_entries[index_sub].pos < st->index_entries[index_min].pos
2406                 && st->index_entries[index].timestamp - st->index_entries[index_sub].timestamp < 30000000000/matroska->time_scale)
2407                 index_min = index_sub;
2408         }
2409     }
2410
2411     avio_seek(s->pb, st->index_entries[index_min].pos, SEEK_SET);
2412     matroska->current_id = 0;
2413     matroska->skip_to_keyframe = !(flags & AVSEEK_FLAG_ANY);
2414     matroska->skip_to_timecode = st->index_entries[index].timestamp;
2415     matroska->done = 0;
2416     ff_update_cur_dts(s, st, st->index_entries[index].timestamp);
2417     return 0;
2418 }
2419
2420 static int matroska_read_close(AVFormatContext *s)
2421 {
2422     MatroskaDemuxContext *matroska = s->priv_data;
2423     MatroskaTrack *tracks = matroska->tracks.elem;
2424     int n;
2425
2426     matroska_clear_queue(matroska);
2427
2428     for (n=0; n < matroska->tracks.nb_elem; n++)
2429         if (tracks[n].type == MATROSKA_TRACK_TYPE_AUDIO)
2430             av_free(tracks[n].audio.buf);
2431     ebml_free(matroska_cluster, &matroska->current_cluster);
2432     ebml_free(matroska_segment, matroska);
2433
2434     return 0;
2435 }
2436
2437 AVInputFormat ff_matroska_demuxer = {
2438     .name           = "matroska,webm",
2439     .long_name      = NULL_IF_CONFIG_SMALL("Matroska / WebM"),
2440     .priv_data_size = sizeof(MatroskaDemuxContext),
2441     .read_probe     = matroska_probe,
2442     .read_header    = matroska_read_header,
2443     .read_packet    = matroska_read_packet,
2444     .read_close     = matroska_read_close,
2445     .read_seek      = matroska_read_seek,
2446 };