]> git.sesse.net Git - vlc/blob - modules/demux/mkv.cpp
* ALL: removed l10n of various untranslatable strings such as 'ffmpeg' or 'Vorbis'
[vlc] / modules / demux / mkv.cpp
1 /*****************************************************************************
2  * mkv.cpp : matroska demuxer
3  *****************************************************************************
4  * Copyright (C) 2003-2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Steve Lhomme <steve.lhomme@free.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <stdlib.h>                                      /* malloc(), free() */
29
30 #include <vlc/vlc.h>
31
32 #ifdef HAVE_TIME_H
33 #   include <time.h>                                               /* time() */
34 #endif
35
36 #include <vlc/input.h>
37
38 #include <codecs.h>                        /* BITMAPINFOHEADER, WAVEFORMATEX */
39 #include "iso_lang.h"
40 #include "vlc_meta.h"
41
42 #include <iostream>
43 #include <cassert>
44 #include <typeinfo>
45 #include <string>
46 #include <vector>
47 #include <algorithm>
48
49 #ifdef HAVE_DIRENT_H
50 #   include <dirent.h>
51 #endif
52
53 /* libebml and matroska */
54 #include "ebml/EbmlHead.h"
55 #include "ebml/EbmlSubHead.h"
56 #include "ebml/EbmlStream.h"
57 #include "ebml/EbmlContexts.h"
58 #include "ebml/EbmlVoid.h"
59 #include "ebml/EbmlVersion.h"
60 #include "ebml/StdIOCallback.h"
61
62 #include "matroska/KaxAttachments.h"
63 #include "matroska/KaxBlock.h"
64 #include "matroska/KaxBlockData.h"
65 #include "matroska/KaxChapters.h"
66 #include "matroska/KaxCluster.h"
67 #include "matroska/KaxClusterData.h"
68 #include "matroska/KaxContexts.h"
69 #include "matroska/KaxCues.h"
70 #include "matroska/KaxCuesData.h"
71 #include "matroska/KaxInfo.h"
72 #include "matroska/KaxInfoData.h"
73 #include "matroska/KaxSeekHead.h"
74 #include "matroska/KaxSegment.h"
75 #include "matroska/KaxTag.h"
76 #include "matroska/KaxTags.h"
77 #include "matroska/KaxTagMulti.h"
78 #include "matroska/KaxTracks.h"
79 #include "matroska/KaxTrackAudio.h"
80 #include "matroska/KaxTrackVideo.h"
81 #include "matroska/KaxTrackEntryData.h"
82 #include "matroska/KaxContentEncoding.h"
83 #include "matroska/KaxVersion.h"
84
85 #include "ebml/StdIOCallback.h"
86
87 extern "C" {
88    #include "mp4/libmp4.h"
89 }
90 #ifdef HAVE_ZLIB_H
91 #   include <zlib.h>
92 #endif
93
94 #define MATROSKA_COMPRESSION_NONE 0
95 #define MATROSKA_COMPRESSION_ZLIB 1
96
97 #define MKVD_TIMECODESCALE 1000000
98
99 /**
100  * What's between a directory and a filename?
101  */
102 #if defined( WIN32 )
103     #define DIRECTORY_SEPARATOR '\\'
104 #else
105     #define DIRECTORY_SEPARATOR '/'
106 #endif
107
108 using namespace LIBMATROSKA_NAMESPACE;
109 using namespace std;
110
111 /*****************************************************************************
112  * Module descriptor
113  *****************************************************************************/
114 static int  Open ( vlc_object_t * );
115 static void Close( vlc_object_t * );
116
117 vlc_module_begin();
118     set_shortname( "Matroska" );
119     set_description( _("Matroska stream demuxer" ) );
120     set_capability( "demux2", 50 );
121     set_callbacks( Open, Close );
122     set_category( CAT_INPUT );
123     set_subcategory( SUBCAT_INPUT_DEMUX );
124
125     add_bool( "mkv-use-ordered-chapters", 1, NULL,
126             N_("Ordered chapters"),
127             N_("Play ordered chapters as specified in the segment"), VLC_TRUE );
128
129     add_bool( "mkv-use-chapter-codec", 1, NULL,
130             N_("Chapter codecs"),
131             N_("Use chapter codecs found in the segment"), VLC_TRUE );
132
133     add_bool( "mkv-seek-percent", 0, NULL,
134             N_("Seek based on percent not time"),
135             N_("Seek based on percent not time"), VLC_TRUE );
136
137     add_bool( "mkv-use-dummy", 0, NULL,
138             N_("Dummy Elements"),
139             N_("Read and discard unknown EBML elements (not good for broken files)"), VLC_TRUE );
140
141     add_shortcut( "mka" );
142     add_shortcut( "mkv" );
143 vlc_module_end();
144
145 /*****************************************************************************
146  * Local prototypes
147  *****************************************************************************/
148 #ifdef HAVE_ZLIB_H
149 block_t *block_zlib_decompress( vlc_object_t *p_this, block_t *p_in_block ) {
150     int result, dstsize, n;
151     unsigned char *dst;
152     block_t *p_block;
153     z_stream d_stream;
154
155     d_stream.zalloc = (alloc_func)0;
156     d_stream.zfree = (free_func)0;
157     d_stream.opaque = (voidpf)0;
158     result = inflateInit(&d_stream);
159     if( result != Z_OK )
160     {
161         msg_Dbg( p_this, "inflateInit() failed. Result: %d", result );
162         return NULL;
163     }
164
165     d_stream.next_in = (Bytef *)p_in_block->p_buffer;
166     d_stream.avail_in = p_in_block->i_buffer;
167     n = 0;
168     p_block = block_New( p_this, 0 );
169     dst = NULL;
170     do
171     {
172         n++;
173         p_block = block_Realloc( p_block, 0, n * 1000 );
174         dst = (unsigned char *)p_block->p_buffer;
175         d_stream.next_out = (Bytef *)&dst[(n - 1) * 1000];
176         d_stream.avail_out = 1000;
177         result = inflate(&d_stream, Z_NO_FLUSH);
178         if( ( result != Z_OK ) && ( result != Z_STREAM_END ) )
179         {
180             msg_Dbg( p_this, "Zlib decompression failed. Result: %d", result );
181             return NULL;
182         }
183     }
184     while( ( d_stream.avail_out == 0 ) && ( d_stream.avail_in != 0 ) &&
185            ( result != Z_STREAM_END ) );
186
187     dstsize = d_stream.total_out;
188     inflateEnd( &d_stream );
189
190     p_block = block_Realloc( p_block, 0, dstsize );
191     p_block->i_buffer = dstsize;
192     block_Release( p_in_block );
193
194     return p_block;
195 }
196 #endif
197
198 /**
199  * Helper function to print the mkv parse tree
200  */
201 static void MkvTree( demux_t & demuxer, int i_level, char *psz_format, ... )
202 {
203     va_list args;
204     if( i_level > 9 )
205     {
206         msg_Err( &demuxer, "too deep tree" );
207         return;
208     }
209     va_start( args, psz_format );
210     static char *psz_foo = "|   |   |   |   |   |   |   |   |   |";
211     char *psz_foo2 = (char*)malloc( ( i_level * 4 + 3 + strlen( psz_format ) ) * sizeof(char) );
212     strncpy( psz_foo2, psz_foo, 4 * i_level );
213     psz_foo2[ 4 * i_level ] = '+';
214     psz_foo2[ 4 * i_level + 1 ] = ' ';
215     strcpy( &psz_foo2[ 4 * i_level + 2 ], psz_format );
216     __msg_GenericVa( VLC_OBJECT(&demuxer), VLC_MSG_DBG, "mkv", psz_foo2, args );
217     free( psz_foo2 );
218     va_end( args );
219 }
220     
221 /*****************************************************************************
222  * Stream managment
223  *****************************************************************************/
224 class vlc_stream_io_callback: public IOCallback
225 {
226   private:
227     stream_t       *s;
228     vlc_bool_t     mb_eof;
229
230   public:
231     vlc_stream_io_callback( stream_t * );
232
233     virtual uint32   read            ( void *p_buffer, size_t i_size);
234     virtual void     setFilePointer  ( int64_t i_offset, seek_mode mode = seek_beginning );
235     virtual size_t   write           ( const void *p_buffer, size_t i_size);
236     virtual uint64   getFilePointer  ( void );
237     virtual void     close           ( void );
238 };
239
240 /*****************************************************************************
241  * Ebml Stream parser
242  *****************************************************************************/
243 class EbmlParser
244 {
245   public:
246     EbmlParser( EbmlStream *es, EbmlElement *el_start, demux_t *p_demux );
247     ~EbmlParser( void );
248
249     void Up( void );
250     void Down( void );
251     void Reset( demux_t *p_demux );
252     EbmlElement *Get( void );
253     void        Keep( void );
254
255     int GetLevel( void );
256
257   private:
258     EbmlStream  *m_es;
259     int         mi_level;
260     EbmlElement *m_el[10];
261     int64_t      mi_remain_size[10];
262
263     EbmlElement *m_got;
264
265     int         mi_user_level;
266     vlc_bool_t  mb_keep;
267     vlc_bool_t  mb_dummy;
268 };
269
270
271 /*****************************************************************************
272  * Some functions to manipulate memory
273  *****************************************************************************/
274 #define GetFOURCC( p )  __GetFOURCC( (uint8_t*)p )
275 static vlc_fourcc_t __GetFOURCC( uint8_t *p )
276 {
277     return VLC_FOURCC( p[0], p[1], p[2], p[3] );
278 }
279
280 /*****************************************************************************
281  * definitions of structures and functions used by this plugins
282  *****************************************************************************/
283 typedef struct
284 {
285     vlc_bool_t   b_default;
286     vlc_bool_t   b_enabled;
287     unsigned int i_number;
288
289     int          i_extra_data;
290     uint8_t      *p_extra_data;
291
292     char         *psz_codec;
293
294     uint64_t     i_default_duration;
295     float        f_timecodescale;
296
297     /* video */
298     es_format_t fmt;
299     float       f_fps;
300     es_out_id_t *p_es;
301
302     vlc_bool_t      b_inited;
303     /* data to be send first */
304     int             i_data_init;
305     uint8_t         *p_data_init;
306
307     /* hack : it's for seek */
308     vlc_bool_t      b_search_keyframe;
309     vlc_bool_t      b_silent;
310
311     /* informative */
312     char         *psz_codec_name;
313     char         *psz_codec_settings;
314     char         *psz_codec_info_url;
315     char         *psz_codec_download_url;
316     
317     /* encryption/compression */
318     int           i_compression_type;
319
320 } mkv_track_t;
321
322 typedef struct
323 {
324     int     i_track;
325     int     i_block_number;
326
327     int64_t i_position;
328     int64_t i_time;
329
330     vlc_bool_t b_key;
331 } mkv_index_t;
332
333 class chapter_codec_cmds_t
334 {
335 };
336
337 class dvd_chapter_codec_t : public chapter_codec_cmds_t
338 {
339 };
340
341 class matroska_script_codec_t : public chapter_codec_cmds_t
342 {
343 };
344
345 class chapter_translation_t
346 {
347 public:
348     KaxChapterTranslateID  translated;
349     unsigned int           codec_id;
350     std::vector<uint64_t>  editions;
351 };
352
353 class chapter_item_t
354 {
355 public:
356     chapter_item_t()
357     :i_start_time(0)
358     ,i_end_time(-1)
359     ,i_user_start_time(-1)
360     ,i_user_end_time(-1)
361     ,i_seekpoint_num(-1)
362     ,b_display_seekpoint(true)
363     ,psz_parent(NULL)
364     {}
365         
366     ~chapter_item_t()
367     {
368         size_t i;
369         for (i=0; i<enter_cmds.size(); i++)
370             delete enter_cmds[i];
371         for (i=0; i<during_cmds.size(); i++)
372             delete during_cmds[i];
373         for (i=0; i<leave_cmds.size(); i++)
374             delete leave_cmds[i];
375     }
376     
377     int64_t RefreshChapters( bool b_ordered, int64_t i_prev_user_time );
378     void PublishChapters( input_title_t & title, int i_level );
379     const chapter_item_t * FindTimecode( mtime_t i_timecode ) const;
380     void Append( const chapter_item_t & edition );
381     chapter_item_t * FindChapter( const chapter_item_t & chapter );
382     
383     int64_t                     i_start_time, i_end_time;
384     int64_t                     i_user_start_time, i_user_end_time; /* the time in the stream when an edition is ordered */
385     std::vector<chapter_item_t> sub_chapters;
386     int                         i_seekpoint_num;
387     int64_t                     i_uid;
388     bool                        b_display_seekpoint;
389     std::string                 psz_name;
390     chapter_item_t              *psz_parent;
391     
392     bool operator<( const chapter_item_t & item ) const
393     {
394         return ( i_user_start_time < item.i_user_start_time || (i_user_start_time == item.i_user_start_time && i_user_end_time < item.i_user_end_time) );
395     }
396
397 protected:
398     std::vector<chapter_codec_cmds_t*> enter_cmds;
399     std::vector<chapter_codec_cmds_t*> during_cmds;
400     std::vector<chapter_codec_cmds_t*> leave_cmds;
401
402     bool Enter();
403     bool Leave();
404 };
405
406 class chapter_edition_t : public chapter_item_t
407 {
408 public:
409     chapter_edition_t()
410     :b_ordered(false)
411     {}
412     
413     void RefreshChapters( );
414     mtime_t Duration() const;
415     void PublishChapters( input_title_t & title );
416     
417     bool                        b_ordered;
418 };
419
420 class demux_sys_t;
421
422 class matroska_segment_t
423 {
424 public:
425     matroska_segment_t( demux_sys_t & demuxer, EbmlStream & estream )
426         :segment(NULL)
427         ,es(estream)
428         ,i_timescale(MKVD_TIMECODESCALE)
429         ,i_duration(-1)
430         ,i_start_time(0)
431         ,i_cues_position(-1)
432         ,i_chapters_position(-1)
433         ,i_tags_position(-1)
434         ,cluster(NULL)
435         ,i_start_pos(0)
436         ,b_cues(VLC_FALSE)
437         ,i_index(0)
438         ,i_index_max(1024)
439         ,psz_muxing_application(NULL)
440         ,psz_writing_application(NULL)
441         ,psz_segment_filename(NULL)
442         ,psz_title(NULL)
443         ,psz_date_utc(NULL)
444         ,i_default_edition(0)
445         ,sys(demuxer)
446         ,ep(NULL)
447         ,b_preloaded(false)
448     {
449         index = (mkv_index_t*)malloc( sizeof( mkv_index_t ) * i_index_max );
450     }
451
452     ~matroska_segment_t()
453     {
454         for( size_t i_track = 0; i_track < tracks.size(); i_track++ )
455         {
456 #define tk  tracks[i_track]
457             if( tk->fmt.psz_description )
458             {
459                 free( tk->fmt.psz_description );
460             }
461             if( tk->psz_codec )
462             {
463                 free( tk->psz_codec );
464             }
465             if( tk->fmt.psz_language )
466             {
467                 free( tk->fmt.psz_language );
468             }
469             delete tk;
470 #undef tk
471         }
472         
473         if( psz_writing_application )
474         {
475             free( psz_writing_application );
476         }
477         if( psz_muxing_application )
478         {
479             free( psz_muxing_application );
480         }
481         if( psz_segment_filename )
482         {
483             free( psz_segment_filename );
484         }
485         if( psz_title )
486         {
487             free( psz_title );
488         }
489         if( psz_date_utc )
490         {
491             free( psz_date_utc );
492         }
493         if ( index )
494             free( index );
495
496         delete ep;
497     }
498
499     KaxSegment              *segment;
500     EbmlStream              & es;
501
502     /* time scale */
503     uint64_t                i_timescale;
504
505     /* duration of the segment */
506     mtime_t                 i_duration;
507     mtime_t                 i_start_time;
508
509     /* all tracks */
510     std::vector<mkv_track_t*> tracks;
511
512     /* from seekhead */
513     int64_t                 i_cues_position;
514     int64_t                 i_chapters_position;
515     int64_t                 i_tags_position;
516
517     KaxCluster              *cluster;
518     int64_t                 i_start_pos;
519     KaxSegmentUID           segment_uid;
520     KaxPrevUID              prev_segment_uid;
521     KaxNextUID              next_segment_uid;
522
523     vlc_bool_t              b_cues;
524     int                     i_index;
525     int                     i_index_max;
526     mkv_index_t             *index;
527
528     /* info */
529     char                    *psz_muxing_application;
530     char                    *psz_writing_application;
531     char                    *psz_segment_filename;
532     char                    *psz_title;
533     char                    *psz_date_utc;
534
535     std::vector<chapter_edition_t> stored_editions;
536     int                            i_default_edition;
537
538     std::vector<chapter_translation_t> translations;
539     std::vector<KaxSegmentFamily>  families;
540     
541     demux_sys_t                    & sys;
542     EbmlParser                     *ep;
543     bool                           b_preloaded;
544
545     bool Preload( );
546     bool PreloadFamily( const matroska_segment_t & segment );
547     void ParseInfo( EbmlElement *info );
548     void ParseChapters( EbmlElement *chapters );
549     void ParseSeekHead( EbmlElement *seekhead );
550     void ParseTracks( EbmlElement *tracks );
551     void ParseChapterAtom( int i_level, EbmlMaster *ca, chapter_item_t & chapters );
552     void ParseTrackEntry( EbmlMaster *m );
553     void ParseCluster( );
554     void IndexAppendCluster( KaxCluster *cluster );
555     void LoadCues( );
556     void LoadTags( );
557     void InformationCreate( );
558     void Seek( mtime_t i_date, mtime_t i_time_offset );
559     int BlockGet( KaxBlock **pp_block, int64_t *pi_ref1, int64_t *pi_ref2, int64_t *pi_duration );
560     bool Select( mtime_t i_start_time );
561     void UnSelect( );
562     static bool CompareSegmentUIDs( const matroska_segment_t * item_a, const matroska_segment_t * item_b );
563 };
564
565 // class holding hard-linked segment together in the playback order
566 class virtual_segment_t
567 {
568 public:
569     virtual_segment_t( matroska_segment_t *p_segment )
570         :i_current_segment(0)
571         ,i_current_edition(-1)
572         ,psz_current_chapter(NULL)
573     {
574         linked_segments.push_back( p_segment );
575
576         AppendUID( p_segment->segment_uid );
577         AppendUID( p_segment->prev_segment_uid );
578         AppendUID( p_segment->next_segment_uid );
579     }
580
581     void Sort();
582     size_t AddSegment( matroska_segment_t *p_segment );
583     void PreloadLinked( );
584     mtime_t Duration( ) const;
585     void LoadCues( );
586     void Seek( demux_t & demuxer, mtime_t i_date, mtime_t i_time_offset, const chapter_item_t *psz_chapter );
587
588     inline chapter_edition_t *Edition()
589     {
590         if ( i_current_edition >= 0 && size_t(i_current_edition) < editions.size() )
591             return &editions[i_current_edition];
592         return NULL;
593     }
594     
595     inline bool EditionIsOrdered() const
596     {
597         return (editions.size() != 0 && i_current_edition >= 0 && editions[i_current_edition].b_ordered);
598     }
599
600     matroska_segment_t * Segment() const
601     {
602         if ( linked_segments.size() == 0 || i_current_segment >= linked_segments.size() )
603             return NULL;
604         return linked_segments[i_current_segment];
605     }
606
607     inline const chapter_item_t *CurrentChapter() const {
608         return psz_current_chapter;
609     }
610
611     bool SelectNext()
612     {
613         if ( i_current_segment < linked_segments.size()-1 )
614         {
615             i_current_segment++;
616             return true;
617         }
618         return false;
619     }
620
621 /* TODO handle/merge chapters here */
622     void UpdateCurrentToChapter( demux_t & demux );
623     bool Select( input_title_t & title );
624
625 protected:
626     std::vector<matroska_segment_t*> linked_segments;
627     std::vector<KaxSegmentUID>       linked_uids;
628     size_t                           i_current_segment;
629
630     std::vector<chapter_edition_t>   editions;
631     int                              i_current_edition;
632     const chapter_item_t             *psz_current_chapter;
633
634     void                             AppendUID( const EbmlBinary & UID );
635 };
636
637 class matroska_stream_t
638 {
639 public:
640     matroska_stream_t( demux_sys_t & demuxer )
641         :p_in(NULL)
642         ,p_es(NULL)
643         ,sys(demuxer)
644     {}
645
646     ~matroska_stream_t()
647     {
648         delete p_in;
649         delete p_es;
650     }
651
652     IOCallback         *p_in;
653     EbmlStream         *p_es;
654
655     std::vector<matroska_segment_t*> segments;
656
657     demux_sys_t                      & sys;
658 };
659
660 class demux_sys_t
661 {
662 public:
663     demux_sys_t( demux_t & demux )
664         :demuxer(demux)
665         ,i_pts(0)
666         ,i_start_pts(0)
667         ,i_chapter_time(0)
668         ,meta(NULL)
669         ,title(NULL)
670         ,p_current_segment(NULL)
671         ,f_duration(-1.0)
672     {}
673
674     ~demux_sys_t()
675     {
676         for (size_t i=0; i<streams.size(); i++)
677             delete streams[i];
678         for ( size_t i=0; i<opened_segments.size(); i++ )
679             delete opened_segments[i];
680     }
681
682     /* current data */
683     demux_t                 & demuxer;
684
685     mtime_t                 i_pts;
686     mtime_t                 i_start_pts;
687     mtime_t                 i_chapter_time;
688
689     vlc_meta_t              *meta;
690
691     input_title_t           *title;
692
693     std::vector<matroska_stream_t*>  streams;
694     std::vector<matroska_segment_t*> opened_segments;
695     virtual_segment_t                *p_current_segment;
696
697     /* duration of the stream */
698     float                   f_duration;
699
700     matroska_segment_t *FindSegment( const EbmlBinary & uid ) const;
701     void PreloadFamily( const matroska_segment_t & of_segment );
702     void PreloadLinked( matroska_segment_t *p_segment );
703     bool PreparePlayback( );
704     matroska_stream_t *AnalyseAllSegmentsFound( EbmlStream *p_estream );
705 };
706
707 static int  Demux  ( demux_t * );
708 static int  Control( demux_t *, int, va_list );
709 static void Seek   ( demux_t *, mtime_t i_date, double f_percent, const chapter_item_t *psz_chapter );
710
711 #define MKV_IS_ID( el, C ) ( EbmlId( (*el) ) == C::ClassInfos.GlobalId )
712
713 static char *UTF8ToStr          ( const UTFstring &u );
714
715 /*****************************************************************************
716  * Open: initializes matroska demux structures
717  *****************************************************************************/
718 static int Open( vlc_object_t * p_this )
719 {
720     demux_t            *p_demux = (demux_t*)p_this;
721     demux_sys_t        *p_sys;
722     matroska_stream_t  *p_stream;
723     matroska_segment_t *p_segment;
724     uint8_t            *p_peek;
725     std::string        s_path, s_filename;
726     vlc_stream_io_callback *p_io_callback;
727     EbmlStream         *p_io_stream;
728
729     /* peek the begining */
730     if( stream_Peek( p_demux->s, &p_peek, 4 ) < 4 ) return VLC_EGENERIC;
731
732     /* is a valid file */
733     if( p_peek[0] != 0x1a || p_peek[1] != 0x45 ||
734         p_peek[2] != 0xdf || p_peek[3] != 0xa3 ) return VLC_EGENERIC;
735
736     /* Set the demux function */
737     p_demux->pf_demux   = Demux;
738     p_demux->pf_control = Control;
739     p_demux->p_sys      = p_sys = new demux_sys_t( *p_demux );
740
741     p_io_callback = new vlc_stream_io_callback( p_demux->s );
742     p_io_stream = new EbmlStream( *p_io_callback );
743
744     if( p_io_stream == NULL )
745     {
746         msg_Err( p_demux, "failed to create EbmlStream" );
747         delete p_io_callback;
748         delete p_sys;
749         return VLC_EGENERIC;
750     }
751
752     p_stream = p_sys->AnalyseAllSegmentsFound( p_io_stream );
753     if( p_stream == NULL )
754     {
755         msg_Err( p_demux, "cannot find KaxSegment" );
756         goto error;
757     }
758     p_sys->streams.push_back( p_stream );
759
760     p_stream->p_in = p_io_callback;
761     p_stream->p_es = p_io_stream;
762
763     for (size_t i=0; i<p_stream->segments.size(); i++)
764     {
765         p_stream->segments[i]->Preload();
766     }
767
768     p_segment = p_stream->segments[0];
769     if( p_segment->cluster == NULL )
770     {
771         msg_Err( p_demux, "cannot find any cluster, damaged file ?" );
772         goto error;
773     }
774     // reset the stream reading to the first cluster of the segment used
775     p_stream->p_in->setFilePointer( p_segment->cluster->GetElementPosition() );
776
777     /* get the files from the same dir from the same family (based on p_demux->psz_path) */
778     if (p_demux->psz_path[0] != '\0' && !strcmp(p_demux->psz_access, ""))
779     {
780         // assume it's a regular file
781         // get the directory path
782         s_path = p_demux->psz_path;
783         if (s_path.at(s_path.length() - 1) == DIRECTORY_SEPARATOR)
784         {
785             s_path = s_path.substr(0,s_path.length()-1);
786         }
787         else
788         {
789             if (s_path.find_last_of(DIRECTORY_SEPARATOR) > 0) 
790             {
791                 s_path = s_path.substr(0,s_path.find_last_of(DIRECTORY_SEPARATOR));
792             }
793         }
794
795         struct dirent *p_file_item;
796         DIR *p_src_dir = opendir(s_path.c_str());
797
798         if (p_src_dir != NULL)
799         {
800             while ((p_file_item = (dirent *) readdir(p_src_dir)))
801             {
802                 if (strlen(p_file_item->d_name) > 4)
803                 {
804                     s_filename = s_path + DIRECTORY_SEPARATOR + p_file_item->d_name;
805
806                     if (!s_filename.compare(p_demux->psz_path))
807                         continue; // don't reuse the original opened file
808
809 #if defined(__GNUC__) && (__GNUC__ < 3)
810                     if (!s_filename.compare("mkv", s_filename.length() - 3, 3) || 
811                         !s_filename.compare("mka", s_filename.length() - 3, 3))
812 #else
813                     if (!s_filename.compare(s_filename.length() - 3, 3, "mkv") || 
814                         !s_filename.compare(s_filename.length() - 3, 3, "mka"))
815 #endif
816                     {
817                         // test wether this file belongs to the our family
818                         StdIOCallback *p_file_io = new StdIOCallback(s_filename.c_str(), MODE_READ);
819                         EbmlStream *p_estream = new EbmlStream(*p_file_io);
820
821                         p_stream = p_sys->AnalyseAllSegmentsFound( p_estream );
822                         if ( p_stream == NULL )
823                         {
824                             msg_Dbg( p_demux, "the file '%s' will not be used", s_filename.c_str() );
825                             delete p_estream;
826                             delete p_file_io;
827                         }
828                         else
829                         {
830                             p_stream->p_in = p_file_io;
831                             p_stream->p_es = p_estream;
832                             p_sys->streams.push_back( p_stream );
833                         }
834                     }
835                 }
836             }
837             closedir( p_src_dir );
838         }
839     }
840
841     p_sys->PreloadFamily( *p_segment );
842     p_sys->PreloadLinked( p_segment );
843     if ( !p_sys->PreparePlayback( ) )
844     {
845         msg_Err( p_demux, "cannot use the segment" );
846         goto error;
847     }
848     
849     return VLC_SUCCESS;
850
851 error:
852     delete p_sys;
853     return VLC_EGENERIC;
854 }
855
856 /*****************************************************************************
857  * Close: frees unused data
858  *****************************************************************************/
859 static void Close( vlc_object_t *p_this )
860 {
861     demux_t     *p_demux = (demux_t*)p_this;
862     demux_sys_t *p_sys   = p_demux->p_sys;
863
864     delete p_sys;
865 }
866
867 /*****************************************************************************
868  * Control:
869  *****************************************************************************/
870 static int Control( demux_t *p_demux, int i_query, va_list args )
871 {
872     demux_sys_t        *p_sys = p_demux->p_sys;
873     int64_t     *pi64;
874     double      *pf, f;
875     int         i_skp;
876
877     vlc_meta_t **pp_meta;
878
879     switch( i_query )
880     {
881         case DEMUX_GET_META:
882             pp_meta = (vlc_meta_t**)va_arg( args, vlc_meta_t** );
883             *pp_meta = vlc_meta_Duplicate( p_sys->meta );
884             return VLC_SUCCESS;
885
886         case DEMUX_GET_LENGTH:
887             pi64 = (int64_t*)va_arg( args, int64_t * );
888             if( p_sys->f_duration > 0.0 )
889             {
890                 *pi64 = (int64_t)(p_sys->f_duration * 1000);
891                 return VLC_SUCCESS;
892             }
893             return VLC_EGENERIC;
894
895         case DEMUX_GET_POSITION:
896             pf = (double*)va_arg( args, double * );
897             if ( p_sys->f_duration > 0.0 )
898                 *pf = (double)(p_sys->i_pts >= p_sys->i_start_pts ? p_sys->i_pts : p_sys->i_start_pts ) / (1000.0 * p_sys->f_duration);
899             return VLC_SUCCESS;
900
901         case DEMUX_SET_POSITION:
902             f = (double)va_arg( args, double );
903             Seek( p_demux, -1, f, NULL );
904             return VLC_SUCCESS;
905
906         case DEMUX_GET_TIME:
907             pi64 = (int64_t*)va_arg( args, int64_t * );
908             *pi64 = p_sys->i_pts;
909             return VLC_SUCCESS;
910
911         case DEMUX_GET_TITLE_INFO:
912             if( p_sys->title && p_sys->title->i_seekpoint > 0 )
913             {
914                 input_title_t ***ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
915                 int *pi_int    = (int*)va_arg( args, int* );
916
917                 *pi_int = 1;
918                 *ppp_title = (input_title_t**)malloc( sizeof( input_title_t**) );
919
920                 (*ppp_title)[0] = vlc_input_title_Duplicate( p_sys->title );
921
922                 return VLC_SUCCESS;
923             }
924             return VLC_EGENERIC;
925
926         case DEMUX_SET_TITLE:
927             /* TODO handle editions as titles & DVD titles as well */
928             if( p_sys->title && p_sys->title->i_seekpoint > 0 )
929             {
930                 return VLC_SUCCESS;
931             }
932             return VLC_EGENERIC;
933
934         case DEMUX_SET_SEEKPOINT:
935             /* FIXME do a better implementation */
936             i_skp = (int)va_arg( args, int );
937
938             if( p_sys->title && i_skp < p_sys->title->i_seekpoint)
939             {
940                 Seek( p_demux, (int64_t)p_sys->title->seekpoint[i_skp]->i_time_offset, -1, NULL);
941                 p_demux->info.i_seekpoint |= INPUT_UPDATE_SEEKPOINT;
942                 p_demux->info.i_seekpoint = i_skp;
943                 return VLC_SUCCESS;
944             }
945             return VLC_EGENERIC;
946
947         case DEMUX_SET_TIME:
948         case DEMUX_GET_FPS:
949         default:
950             return VLC_EGENERIC;
951     }
952 }
953
954 int matroska_segment_t::BlockGet( KaxBlock **pp_block, int64_t *pi_ref1, int64_t *pi_ref2, int64_t *pi_duration )
955 {
956     *pp_block = NULL;
957     *pi_ref1  = -1;
958     *pi_ref2  = -1;
959
960     for( ;; )
961     {
962         EbmlElement *el;
963         int         i_level;
964
965         el = ep->Get();
966         i_level = ep->GetLevel();
967
968         if( el == NULL && *pp_block != NULL )
969         {
970             /* update the index */
971 #define idx index[i_index - 1]
972             if( i_index > 0 && idx.i_time == -1 )
973             {
974                 idx.i_time        = (*pp_block)->GlobalTimecode() / (mtime_t)1000;
975                 idx.b_key         = *pi_ref1 == -1 ? VLC_TRUE : VLC_FALSE;
976             }
977 #undef idx
978             return VLC_SUCCESS;
979         }
980
981         if( el == NULL )
982         {
983             if( ep->GetLevel() > 1 )
984             {
985                 ep->Up();
986                 continue;
987             }
988             msg_Warn( &sys.demuxer, "EOF" );
989             return VLC_EGENERIC;
990         }
991
992         /* do parsing */
993         if( i_level == 1 )
994         {
995             if( MKV_IS_ID( el, KaxCluster ) )
996             {
997                 cluster = (KaxCluster*)el;
998
999                 /* add it to the index */
1000                 if( i_index == 0 ||
1001                     ( i_index > 0 && index[i_index - 1].i_position < (int64_t)cluster->GetElementPosition() ) )
1002                 {
1003                     IndexAppendCluster( cluster );
1004                 }
1005
1006                 // reset silent tracks
1007                 for (size_t i=0; i<tracks.size(); i++)
1008                 {
1009                     tracks[i]->b_silent = VLC_FALSE;
1010                 }
1011
1012                 ep->Down();
1013             }
1014             else if( MKV_IS_ID( el, KaxCues ) )
1015             {
1016                 msg_Warn( &sys.demuxer, "find KaxCues FIXME" );
1017                 return VLC_EGENERIC;
1018             }
1019             else
1020             {
1021                 msg_Dbg( &sys.demuxer, "unknown (%s)", typeid( el ).name() );
1022             }
1023         }
1024         else if( i_level == 2 )
1025         {
1026             if( MKV_IS_ID( el, KaxClusterTimecode ) )
1027             {
1028                 KaxClusterTimecode &ctc = *(KaxClusterTimecode*)el;
1029
1030                 ctc.ReadData( es.I_O(), SCOPE_ALL_DATA );
1031                 cluster->InitTimecode( uint64( ctc ), i_timescale );
1032             }
1033             else if( MKV_IS_ID( el, KaxClusterSilentTracks ) )
1034             {
1035                 ep->Down();
1036             }
1037             else if( MKV_IS_ID( el, KaxBlockGroup ) )
1038             {
1039                 ep->Down();
1040             }
1041         }
1042         else if( i_level == 3 )
1043         {
1044             if( MKV_IS_ID( el, KaxBlock ) )
1045             {
1046                 *pp_block = (KaxBlock*)el;
1047
1048                 (*pp_block)->ReadData( es.I_O() );
1049                 (*pp_block)->SetParent( *cluster );
1050
1051                 ep->Keep();
1052             }
1053             else if( MKV_IS_ID( el, KaxBlockDuration ) )
1054             {
1055                 KaxBlockDuration &dur = *(KaxBlockDuration*)el;
1056
1057                 dur.ReadData( es.I_O() );
1058                 *pi_duration = uint64( dur );
1059             }
1060             else if( MKV_IS_ID( el, KaxReferenceBlock ) )
1061             {
1062                 KaxReferenceBlock &ref = *(KaxReferenceBlock*)el;
1063
1064                 ref.ReadData( es.I_O() );
1065                 if( *pi_ref1 == -1 )
1066                 {
1067                     *pi_ref1 = int64( ref );
1068                 }
1069                 else
1070                 {
1071                     *pi_ref2 = int64( ref );
1072                 }
1073             }
1074             else if( MKV_IS_ID( el, KaxClusterSilentTrackNumber ) )
1075             {
1076                 KaxClusterSilentTrackNumber &track_num = *(KaxClusterSilentTrackNumber*)el;
1077                 track_num.ReadData( es.I_O() );
1078                 // find the track
1079                 for (size_t i=0; i<tracks.size(); i++)
1080                 {
1081                     if ( tracks[i]->i_number == uint32(track_num))
1082                     {
1083                         tracks[i]->b_silent = VLC_TRUE;
1084                         break;
1085                     }
1086                 }
1087             }
1088         }
1089         else
1090         {
1091             msg_Err( &sys.demuxer, "invalid level = %d", i_level );
1092             return VLC_EGENERIC;
1093         }
1094     }
1095 }
1096
1097 static block_t *MemToBlock( demux_t *p_demux, uint8_t *p_mem, int i_mem)
1098 {
1099     block_t *p_block;
1100     if( !(p_block = block_New( p_demux, i_mem ) ) ) return NULL;
1101     memcpy( p_block->p_buffer, p_mem, i_mem );
1102     //p_block->i_rate = p_input->stream.control.i_rate;
1103     return p_block;
1104 }
1105
1106 static void BlockDecode( demux_t *p_demux, KaxBlock *block, mtime_t i_pts,
1107                          mtime_t i_duration )
1108 {
1109     demux_sys_t        *p_sys = p_demux->p_sys;
1110     matroska_segment_t *p_segment = p_sys->p_current_segment->Segment();
1111
1112     size_t          i_track;
1113     unsigned int    i;
1114     vlc_bool_t      b;
1115
1116 #define tk  p_segment->tracks[i_track]
1117     for( i_track = 0; i_track < p_segment->tracks.size(); i_track++ )
1118     {
1119         if( tk->i_number == block->TrackNum() )
1120         {
1121             break;
1122         }
1123     }
1124
1125     if( i_track >= p_segment->tracks.size() )
1126     {
1127         msg_Err( p_demux, "invalid track number=%d", block->TrackNum() );
1128         return;
1129     }
1130     if( tk->p_es == NULL )
1131     {
1132         msg_Err( p_demux, "unknown track number=%d", block->TrackNum() );
1133         return;
1134     }
1135     if( i_pts < p_sys->i_start_pts && tk->fmt.i_cat == AUDIO_ES )
1136     {
1137         return; /* discard audio packets that shouldn't be rendered */
1138     }
1139
1140     es_out_Control( p_demux->out, ES_OUT_GET_ES_STATE, tk->p_es, &b );
1141     if( !b )
1142     {
1143         tk->b_inited = VLC_FALSE;
1144         return;
1145     }
1146
1147     /* First send init data */
1148     if( !tk->b_inited && tk->i_data_init > 0 )
1149     {
1150         block_t *p_init;
1151
1152         msg_Dbg( p_demux, "sending header (%d bytes)", tk->i_data_init );
1153         p_init = MemToBlock( p_demux, tk->p_data_init, tk->i_data_init );
1154         if( p_init ) es_out_Send( p_demux->out, tk->p_es, p_init );
1155     }
1156     tk->b_inited = VLC_TRUE;
1157
1158
1159     for( i = 0; i < block->NumberFrames(); i++ )
1160     {
1161         block_t *p_block;
1162         DataBuffer &data = block->GetBuffer(i);
1163
1164         p_block = MemToBlock( p_demux, data.Buffer(), data.Size() );
1165
1166         if( p_block == NULL )
1167         {
1168             break;
1169         }
1170
1171 #if defined(HAVE_ZLIB_H)
1172         if( tk->i_compression_type )
1173         {
1174             p_block = block_zlib_decompress( VLC_OBJECT(p_demux), p_block );
1175         }
1176 #endif
1177
1178         // TODO implement correct timestamping when B frames are used
1179         if( tk->fmt.i_cat != VIDEO_ES )
1180         {
1181             p_block->i_dts = p_block->i_pts = i_pts;
1182         }
1183         else
1184         {
1185             p_block->i_dts = i_pts;
1186             p_block->i_pts = 0;
1187         }
1188
1189         if( tk->fmt.i_cat == SPU_ES && strcmp( tk->psz_codec, "S_VOBSUB" ) )
1190         {
1191             p_block->i_length = i_duration * 1000;
1192         }
1193
1194         es_out_Send( p_demux->out, tk->p_es, p_block );
1195
1196         /* use time stamp only for first block */
1197         i_pts = 0;
1198     }
1199
1200 #undef tk
1201 }
1202
1203 matroska_stream_t *demux_sys_t::AnalyseAllSegmentsFound( EbmlStream *p_estream )
1204 {
1205     int i_upper_lvl = 0;
1206     size_t i;
1207     EbmlElement *p_l0, *p_l1, *p_l2;
1208     bool b_keep_stream = false, b_keep_segment;
1209
1210     // verify the EBML Header
1211     p_l0 = p_estream->FindNextID(EbmlHead::ClassInfos, 0xFFFFFFFFL);
1212     if (p_l0 == NULL)
1213     {
1214         return NULL;
1215     }
1216     p_l0->SkipData(*p_estream, EbmlHead_Context);
1217     delete p_l0;
1218
1219     // find all segments in this file
1220     p_l0 = p_estream->FindNextID(KaxSegment::ClassInfos, 0xFFFFFFFFL);
1221     if (p_l0 == NULL)
1222     {
1223         return NULL;
1224     }
1225
1226     matroska_stream_t *p_stream1 = new matroska_stream_t( *this );
1227
1228     while (p_l0 != 0)
1229     {
1230         if (EbmlId(*p_l0) == KaxSegment::ClassInfos.GlobalId)
1231         {
1232             EbmlParser  *ep;
1233             matroska_segment_t *p_segment1 = new matroska_segment_t( *this, *p_estream );
1234             b_keep_segment = false;
1235
1236             ep = new EbmlParser(p_estream, p_l0, &demuxer );
1237             p_segment1->ep = ep;
1238             p_segment1->segment = (KaxSegment*)p_l0;
1239
1240             while ((p_l1 = ep->Get()))
1241             {
1242                 if (MKV_IS_ID(p_l1, KaxInfo))
1243                 {
1244                     // find the families of this segment
1245                     KaxInfo *p_info = static_cast<KaxInfo*>(p_l1);
1246
1247                     p_info->Read(*p_estream, KaxInfo::ClassInfos.Context, i_upper_lvl, p_l2, true);
1248                     for( i = 0; i < p_info->ListSize(); i++ )
1249                     {
1250                         EbmlElement *l = (*p_info)[i];
1251
1252                         if( MKV_IS_ID( l, KaxSegmentUID ) )
1253                         {
1254                             KaxSegmentUID *p_uid = static_cast<KaxSegmentUID*>(l);
1255                             b_keep_segment = (FindSegment( *p_uid ) == NULL);
1256                             if ( !b_keep_segment )
1257                                 break; // this segment is already known
1258                             opened_segments.push_back( p_segment1 );
1259                             p_segment1->segment_uid = *( new KaxSegmentUID(*p_uid) );
1260                         }
1261                         else if( MKV_IS_ID( l, KaxPrevUID ) )
1262                         {
1263                             p_segment1->prev_segment_uid = *( new KaxPrevUID( *static_cast<KaxPrevUID*>(l) ) );
1264                         }
1265                         else if( MKV_IS_ID( l, KaxNextUID ) )
1266                         {
1267                             p_segment1->next_segment_uid = *( new KaxNextUID( *static_cast<KaxNextUID*>(l) ) );
1268                         }
1269                         else if( MKV_IS_ID( l, KaxSegmentFamily ) )
1270                         {
1271                             KaxSegmentFamily *p_fam = new KaxSegmentFamily( *static_cast<KaxSegmentFamily*>(l) );
1272                             p_segment1->families.push_back( *p_fam );
1273                         }
1274                     }
1275                     break;
1276                 }
1277             }
1278             if ( b_keep_segment )
1279             {
1280                 b_keep_stream = true;
1281                 p_stream1->segments.push_back( p_segment1 );
1282             }
1283             else
1284                 delete p_segment1;
1285         }
1286
1287         p_l0->SkipData(*p_estream, EbmlHead_Context);
1288         p_l0 = p_estream->FindNextID(KaxSegment::ClassInfos, 0xFFFFFFFFL);
1289     }
1290
1291     if ( !b_keep_stream )
1292     {
1293         delete p_stream1;
1294         p_stream1 = NULL;
1295     }
1296
1297     return p_stream1;
1298 }
1299
1300 bool matroska_segment_t::Select( mtime_t i_start_time )
1301 {
1302     size_t i_track;
1303
1304     /* add all es */
1305     msg_Dbg( &sys.demuxer, "found %d es", tracks.size() );
1306     for( i_track = 0; i_track < tracks.size(); i_track++ )
1307     {
1308 #define tk  tracks[i_track]
1309         if( tk->fmt.i_cat == UNKNOWN_ES )
1310         {
1311             msg_Warn( &sys.demuxer, "invalid track[%d, n=%d]", i_track, tk->i_number );
1312             tk->p_es = NULL;
1313             continue;
1314         }
1315
1316         if( !strcmp( tk->psz_codec, "V_MS/VFW/FOURCC" ) )
1317         {
1318             if( tk->i_extra_data < (int)sizeof( BITMAPINFOHEADER ) )
1319             {
1320                 msg_Err( &sys.demuxer, "missing/invalid BITMAPINFOHEADER" );
1321                 tk->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
1322             }
1323             else
1324             {
1325                 BITMAPINFOHEADER *p_bih = (BITMAPINFOHEADER*)tk->p_extra_data;
1326
1327                 tk->fmt.video.i_width = GetDWLE( &p_bih->biWidth );
1328                 tk->fmt.video.i_height= GetDWLE( &p_bih->biHeight );
1329                 tk->fmt.i_codec       = GetFOURCC( &p_bih->biCompression );
1330
1331                 tk->fmt.i_extra       = GetDWLE( &p_bih->biSize ) - sizeof( BITMAPINFOHEADER );
1332                 if( tk->fmt.i_extra > 0 )
1333                 {
1334                     tk->fmt.p_extra = malloc( tk->fmt.i_extra );
1335                     memcpy( tk->fmt.p_extra, &p_bih[1], tk->fmt.i_extra );
1336                 }
1337             }
1338         }
1339         else if( !strcmp( tk->psz_codec, "V_MPEG1" ) ||
1340                  !strcmp( tk->psz_codec, "V_MPEG2" ) )
1341         {
1342             tk->fmt.i_codec = VLC_FOURCC( 'm', 'p', 'g', 'v' );
1343         }
1344         else if( !strncmp( tk->psz_codec, "V_MPEG4", 7 ) )
1345         {
1346             if( !strcmp( tk->psz_codec, "V_MPEG4/MS/V3" ) )
1347             {
1348                 tk->fmt.i_codec = VLC_FOURCC( 'D', 'I', 'V', '3' );
1349             }
1350             else if( !strcmp( tk->psz_codec, "V_MPEG4/ISO/AVC" ) )
1351             {
1352                 tk->fmt.i_codec = VLC_FOURCC( 'a', 'v', 'c', '1' );
1353                 tk->fmt.b_packetized = VLC_FALSE;
1354                 tk->fmt.i_extra = tk->i_extra_data;
1355                 tk->fmt.p_extra = malloc( tk->i_extra_data );
1356                 memcpy( tk->fmt.p_extra,tk->p_extra_data, tk->i_extra_data );
1357             }
1358             else
1359             {
1360                 tk->fmt.i_codec = VLC_FOURCC( 'm', 'p', '4', 'v' );
1361             }
1362         }
1363         else if( !strcmp( tk->psz_codec, "V_QUICKTIME" ) )
1364         {
1365             MP4_Box_t *p_box = (MP4_Box_t*)malloc( sizeof( MP4_Box_t ) );
1366 #ifdef VSLHC
1367             stream_t *p_mp4_stream = stream_MemoryNew( VLC_OBJECT(&sys.demuxer),
1368                                                        tk->p_extra_data,
1369                                                        tk->i_extra_data );
1370 #else
1371             stream_t *p_mp4_stream = stream_MemoryNew( VLC_OBJECT(&sys.demuxer),
1372                                                        tk->p_extra_data,
1373                                                        tk->i_extra_data,
1374                                                        VLC_FALSE );
1375 #endif
1376             MP4_ReadBoxCommon( p_mp4_stream, p_box );
1377             MP4_ReadBox_sample_vide( p_mp4_stream, p_box );
1378             tk->fmt.i_codec = p_box->i_type;
1379             tk->fmt.video.i_width = p_box->data.p_sample_vide->i_width;
1380             tk->fmt.video.i_height = p_box->data.p_sample_vide->i_height;
1381             tk->fmt.i_extra = p_box->data.p_sample_vide->i_qt_image_description;
1382             tk->fmt.p_extra = malloc( tk->fmt.i_extra );
1383             memcpy( tk->fmt.p_extra, p_box->data.p_sample_vide->p_qt_image_description, tk->fmt.i_extra );
1384             MP4_FreeBox_sample_vide( p_box );
1385 #ifdef VSLHC
1386             stream_MemoryDelete( p_mp4_stream, VLC_TRUE );
1387 #else
1388             stream_Delete( p_mp4_stream );
1389 #endif        
1390         }
1391         else if( !strcmp( tk->psz_codec, "A_MS/ACM" ) )
1392         {
1393             if( tk->i_extra_data < (int)sizeof( WAVEFORMATEX ) )
1394             {
1395                 msg_Err( &sys.demuxer, "missing/invalid WAVEFORMATEX" );
1396                 tk->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
1397             }
1398             else
1399             {
1400                 WAVEFORMATEX *p_wf = (WAVEFORMATEX*)tk->p_extra_data;
1401
1402                 wf_tag_to_fourcc( GetWLE( &p_wf->wFormatTag ), &tk->fmt.i_codec, NULL );
1403
1404                 tk->fmt.audio.i_channels   = GetWLE( &p_wf->nChannels );
1405                 tk->fmt.audio.i_rate = GetDWLE( &p_wf->nSamplesPerSec );
1406                 tk->fmt.i_bitrate    = GetDWLE( &p_wf->nAvgBytesPerSec ) * 8;
1407                 tk->fmt.audio.i_blockalign = GetWLE( &p_wf->nBlockAlign );;
1408                 tk->fmt.audio.i_bitspersample = GetWLE( &p_wf->wBitsPerSample );
1409
1410                 tk->fmt.i_extra            = GetWLE( &p_wf->cbSize );
1411                 if( tk->fmt.i_extra > 0 )
1412                 {
1413                     tk->fmt.p_extra = malloc( tk->fmt.i_extra );
1414                     memcpy( tk->fmt.p_extra, &p_wf[1], tk->fmt.i_extra );
1415                 }
1416             }
1417         }
1418         else if( !strcmp( tk->psz_codec, "A_MPEG/L3" ) ||
1419                  !strcmp( tk->psz_codec, "A_MPEG/L2" ) ||
1420                  !strcmp( tk->psz_codec, "A_MPEG/L1" ) )
1421         {
1422             tk->fmt.i_codec = VLC_FOURCC( 'm', 'p', 'g', 'a' );
1423         }
1424         else if( !strcmp( tk->psz_codec, "A_AC3" ) )
1425         {
1426             tk->fmt.i_codec = VLC_FOURCC( 'a', '5', '2', ' ' );
1427         }
1428         else if( !strcmp( tk->psz_codec, "A_DTS" ) )
1429         {
1430             tk->fmt.i_codec = VLC_FOURCC( 'd', 't', 's', ' ' );
1431         }
1432         else if( !strcmp( tk->psz_codec, "A_FLAC" ) )
1433         {
1434             tk->fmt.i_codec = VLC_FOURCC( 'f', 'l', 'a', 'c' );
1435             tk->fmt.i_extra = tk->i_extra_data;
1436             tk->fmt.p_extra = malloc( tk->i_extra_data );
1437             memcpy( tk->fmt.p_extra,tk->p_extra_data, tk->i_extra_data );
1438         }
1439         else if( !strcmp( tk->psz_codec, "A_VORBIS" ) )
1440         {
1441             int i, i_offset = 1, i_size[3], i_extra;
1442             uint8_t *p_extra;
1443
1444             tk->fmt.i_codec = VLC_FOURCC( 'v', 'o', 'r', 'b' );
1445
1446             /* Split the 3 headers */
1447             if( tk->p_extra_data[0] != 0x02 )
1448                 msg_Err( &sys.demuxer, "invalid vorbis header" );
1449
1450             for( i = 0; i < 2; i++ )
1451             {
1452                 i_size[i] = 0;
1453                 while( i_offset < tk->i_extra_data )
1454                 {
1455                     i_size[i] += tk->p_extra_data[i_offset];
1456                     if( tk->p_extra_data[i_offset++] != 0xff ) break;
1457                 }
1458             }
1459
1460             i_size[0] = __MIN(i_size[0], tk->i_extra_data - i_offset);
1461             i_size[1] = __MIN(i_size[1], tk->i_extra_data -i_offset -i_size[0]);
1462             i_size[2] = tk->i_extra_data - i_offset - i_size[0] - i_size[1];
1463
1464             tk->fmt.i_extra = 3 * 2 + i_size[0] + i_size[1] + i_size[2];
1465             tk->fmt.p_extra = malloc( tk->fmt.i_extra );
1466             p_extra = (uint8_t *)tk->fmt.p_extra; i_extra = 0;
1467             for( i = 0; i < 3; i++ )
1468             {
1469                 *(p_extra++) = i_size[i] >> 8;
1470                 *(p_extra++) = i_size[i] & 0xFF;
1471                 memcpy( p_extra, tk->p_extra_data + i_offset + i_extra,
1472                         i_size[i] );
1473                 p_extra += i_size[i];
1474                 i_extra += i_size[i];
1475             }
1476         }
1477         else if( !strncmp( tk->psz_codec, "A_AAC/MPEG2/", strlen( "A_AAC/MPEG2/" ) ) ||
1478                  !strncmp( tk->psz_codec, "A_AAC/MPEG4/", strlen( "A_AAC/MPEG4/" ) ) )
1479         {
1480             int i_profile, i_srate;
1481             static unsigned int i_sample_rates[] =
1482             {
1483                     96000, 88200, 64000, 48000, 44100, 32000, 24000, 22050,
1484                         16000, 12000, 11025, 8000,  7350,  0,     0,     0
1485             };
1486
1487             tk->fmt.i_codec = VLC_FOURCC( 'm', 'p', '4', 'a' );
1488             /* create data for faad (MP4DecSpecificDescrTag)*/
1489
1490             if( !strcmp( &tk->psz_codec[12], "MAIN" ) )
1491             {
1492                 i_profile = 0;
1493             }
1494             else if( !strcmp( &tk->psz_codec[12], "LC" ) )
1495             {
1496                 i_profile = 1;
1497             }
1498             else if( !strcmp( &tk->psz_codec[12], "SSR" ) )
1499             {
1500                 i_profile = 2;
1501             }
1502             else
1503             {
1504                 i_profile = 3;
1505             }
1506
1507             for( i_srate = 0; i_srate < 13; i_srate++ )
1508             {
1509                 if( i_sample_rates[i_srate] == tk->fmt.audio.i_rate )
1510                 {
1511                     break;
1512                 }
1513             }
1514             msg_Dbg( &sys.demuxer, "profile=%d srate=%d", i_profile, i_srate );
1515
1516             tk->fmt.i_extra = 2;
1517             tk->fmt.p_extra = malloc( tk->fmt.i_extra );
1518             ((uint8_t*)tk->fmt.p_extra)[0] = ((i_profile + 1) << 3) | ((i_srate&0xe) >> 1);
1519             ((uint8_t*)tk->fmt.p_extra)[1] = ((i_srate & 0x1) << 7) | (tk->fmt.audio.i_channels << 3);
1520         }
1521         else if( !strcmp( tk->psz_codec, "A_PCM/INT/BIG" ) ||
1522                  !strcmp( tk->psz_codec, "A_PCM/INT/LIT" ) ||
1523                  !strcmp( tk->psz_codec, "A_PCM/FLOAT/IEEE" ) )
1524         {
1525             if( !strcmp( tk->psz_codec, "A_PCM/INT/BIG" ) )
1526             {
1527                 tk->fmt.i_codec = VLC_FOURCC( 't', 'w', 'o', 's' );
1528             }
1529             else
1530             {
1531                 tk->fmt.i_codec = VLC_FOURCC( 'a', 'r', 'a', 'w' );
1532             }
1533             tk->fmt.audio.i_blockalign = ( tk->fmt.audio.i_bitspersample + 7 ) / 8 * tk->fmt.audio.i_channels;
1534         }
1535         else if( !strcmp( tk->psz_codec, "A_TTA1" ) )
1536         {
1537             /* FIXME: support this codec */
1538             msg_Err( &sys.demuxer, "TTA not supported yet[%d, n=%d]", i_track, tk->i_number );
1539             tk->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
1540         }
1541         else if( !strcmp( tk->psz_codec, "A_WAVPACK4" ) )
1542         {
1543             /* FIXME: support this codec */
1544             msg_Err( &sys.demuxer, "Wavpack not supported yet[%d, n=%d]", i_track, tk->i_number );
1545             tk->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
1546         }
1547         else if( !strcmp( tk->psz_codec, "S_TEXT/UTF8" ) )
1548         {
1549             tk->fmt.i_codec = VLC_FOURCC( 's', 'u', 'b', 't' );
1550             tk->fmt.subs.psz_encoding = strdup( "UTF-8" );
1551         }
1552         else if( !strcmp( tk->psz_codec, "S_TEXT/SSA" ) ||
1553                  !strcmp( tk->psz_codec, "S_TEXT/ASS" ) ||
1554                  !strcmp( tk->psz_codec, "S_SSA" ) ||
1555                  !strcmp( tk->psz_codec, "S_ASS" ))
1556         {
1557             tk->fmt.i_codec = VLC_FOURCC( 's', 's', 'a', ' ' );
1558             tk->fmt.subs.psz_encoding = strdup( "UTF-8" );
1559         }
1560         else if( !strcmp( tk->psz_codec, "S_VOBSUB" ) )
1561         {
1562             tk->fmt.i_codec = VLC_FOURCC( 's','p','u',' ' );
1563             if( tk->i_extra_data )
1564             {
1565                 char *p_start;
1566                 char *p_buf = (char *)malloc( tk->i_extra_data + 1);
1567                 memcpy( p_buf, tk->p_extra_data , tk->i_extra_data );
1568                 p_buf[tk->i_extra_data] = '\0';
1569                 
1570                 p_start = strstr( p_buf, "size:" );
1571                 if( sscanf( p_start, "size: %dx%d",
1572                         &tk->fmt.subs.spu.i_original_frame_width, &tk->fmt.subs.spu.i_original_frame_height ) == 2 )
1573                 {
1574                     msg_Dbg( &sys.demuxer, "original frame size vobsubs: %dx%d", tk->fmt.subs.spu.i_original_frame_width, tk->fmt.subs.spu.i_original_frame_height );
1575                 }
1576                 else
1577                 {
1578                     msg_Warn( &sys.demuxer, "reading original frame size for vobsub failed" );
1579                 }
1580                 free( p_buf );
1581             }
1582         }
1583         else if( !strcmp( tk->psz_codec, "B_VOBBTN" ) )
1584         {
1585             /* FIXME: support this codec */
1586             msg_Err( &sys.demuxer, "Vob Buttons not supported yet[%d, n=%d]", i_track, tk->i_number );
1587             tk->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
1588         }
1589         else
1590         {
1591             msg_Err( &sys.demuxer, "unknow codec id=`%s'", tk->psz_codec );
1592             tk->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
1593         }
1594         if( tk->b_default )
1595         {
1596             tk->fmt.i_priority = 1000;
1597         }
1598
1599         tk->p_es = es_out_Add( sys.demuxer.out, &tk->fmt );
1600
1601         es_out_Control( sys.demuxer.out, ES_OUT_SET_NEXT_DISPLAY_TIME, tk->p_es, i_start_time );
1602 #undef tk
1603     }
1604     
1605     sys.i_start_pts = i_start_time;
1606     // reset the stream reading to the first cluster of the segment used
1607     es.I_O().setFilePointer( i_start_pos );
1608
1609     delete ep;
1610     ep = new EbmlParser( &es, segment, &sys.demuxer );
1611
1612     return true;
1613 }
1614
1615 void matroska_segment_t::UnSelect( )
1616 {
1617     size_t i_track;
1618
1619     for( i_track = 0; i_track < tracks.size(); i_track++ )
1620     {
1621 #define tk  tracks[i_track]
1622         if ( tk->p_es != NULL )
1623         {
1624             es_out_Del( sys.demuxer.out, tk->p_es );
1625             tk->p_es = NULL;
1626         }
1627 #undef tk
1628     }
1629     delete ep;
1630     ep = NULL;
1631 }
1632
1633 bool virtual_segment_t::Select( input_title_t & title )
1634 {
1635     if ( linked_segments.size() == 0 )
1636         return false;
1637
1638     // !!! should be called only once !!!
1639     matroska_segment_t *p_segment;
1640     size_t i, j;
1641
1642     // copy editions from the first segment
1643     p_segment = linked_segments[0];
1644     editions = p_segment->stored_editions;
1645
1646     for ( i=1 ; i<linked_segments.size(); i++ )
1647     {
1648         p_segment = linked_segments[i];
1649         // FIXME assume we have the same editions in all segments
1650         for (j=0; j<p_segment->stored_editions.size(); j++)
1651             editions[j].Append( p_segment->stored_editions[j] );
1652     }
1653
1654     if ( Edition() != NULL )
1655         Edition()->PublishChapters( title );
1656
1657     return true;
1658 }
1659
1660 void chapter_edition_t::PublishChapters( input_title_t & title )
1661 {
1662     title.i_seekpoint = 0;
1663     if ( title.seekpoint != NULL )
1664         free( title.seekpoint );
1665     chapter_item_t::PublishChapters( title, 0 );
1666 }
1667
1668 void chapter_item_t::PublishChapters( input_title_t & title, int i_level )
1669 {
1670     if (b_display_seekpoint)
1671     {
1672         seekpoint_t *sk = vlc_seekpoint_New();
1673
1674         sk->i_level = i_level;
1675         sk->i_time_offset = i_start_time;
1676         sk->psz_name = strdup( psz_name.c_str() );
1677
1678         // A start time of '0' is ok. A missing ChapterTime element is ok, too, because '0' is its default value.
1679         title.i_seekpoint++;
1680         title.seekpoint = (seekpoint_t**)realloc( title.seekpoint, title.i_seekpoint * sizeof( seekpoint_t* ) );
1681         title.seekpoint[title.i_seekpoint-1] = sk;
1682     
1683         i_seekpoint_num = title.i_seekpoint;
1684     }
1685
1686     for ( size_t i=0; i<sub_chapters.size() ; i++)
1687     {
1688         sub_chapters[i].PublishChapters( title, i_level+1 );
1689     }
1690 }
1691
1692 void virtual_segment_t::UpdateCurrentToChapter( demux_t & demux )
1693 {
1694     demux_sys_t & sys = *demux.p_sys;
1695     const chapter_item_t *psz_curr_chapter;
1696
1697     /* update current chapter/seekpoint */
1698     if ( editions.size() )
1699     {
1700         /* 1st, we need to know in which chapter we are */
1701         psz_curr_chapter = editions[i_current_edition].FindTimecode( sys.i_pts );
1702
1703         /* we have moved to a new chapter */
1704         if (psz_curr_chapter != NULL && psz_current_chapter != NULL && psz_current_chapter != psz_curr_chapter)
1705         {
1706             if (psz_current_chapter->i_seekpoint_num != psz_curr_chapter->i_seekpoint_num && psz_curr_chapter->i_seekpoint_num > 0)
1707             {
1708                 demux.info.i_update |= INPUT_UPDATE_SEEKPOINT;
1709                 demux.info.i_seekpoint = psz_curr_chapter->i_seekpoint_num - 1;
1710             }
1711
1712             if ( editions[i_current_edition].b_ordered )
1713             {
1714                 /* TODO check if we need to silently seek to a new location in the stream (switch to another chapter) */
1715                 if (psz_current_chapter->i_end_time != psz_curr_chapter->i_start_time)
1716                     Seek( demux, sys.i_pts, 0, psz_curr_chapter );
1717                 /* count the last duration time found for each track in a table (-1 not found, -2 silent) */
1718                 /* only seek after each duration >= end timecode of the current chapter */
1719             }
1720
1721 //            i_user_time = psz_curr_chapter->i_user_start_time - psz_curr_chapter->i_start_time;
1722 //            i_start_pts = psz_curr_chapter->i_user_start_time;
1723         }
1724         psz_current_chapter = psz_curr_chapter;
1725     }
1726 }
1727
1728 void chapter_item_t::Append( const chapter_item_t & chapter )
1729 {
1730     // we are appending content for the same chapter UID
1731     size_t i;
1732     chapter_item_t *p_chapter;
1733
1734     for ( i=0; i<chapter.sub_chapters.size(); i++ )
1735     {
1736         p_chapter = FindChapter( chapter.sub_chapters[i] );
1737         if ( p_chapter != NULL )
1738         {
1739             p_chapter->Append( chapter.sub_chapters[i] );
1740         }
1741         else
1742         {
1743             sub_chapters.push_back( chapter.sub_chapters[i] );
1744         }
1745     }
1746
1747     i_user_start_time = min( i_user_start_time, chapter.i_user_start_time );
1748     i_user_end_time = max( i_user_end_time, chapter.i_user_end_time );
1749 }
1750
1751 chapter_item_t * chapter_item_t::FindChapter( const chapter_item_t & chapter )
1752 {
1753     size_t i;
1754     for ( i=0; i<sub_chapters.size(); i++)
1755     {
1756         if ( sub_chapters[i].i_uid == chapter.i_uid )
1757             return &sub_chapters[i];
1758     }
1759     return NULL;
1760 }
1761
1762 static void Seek( demux_t *p_demux, mtime_t i_date, double f_percent, const chapter_item_t *psz_chapter )
1763 {
1764     demux_sys_t        *p_sys = p_demux->p_sys;
1765     virtual_segment_t  *p_vsegment = p_sys->p_current_segment;
1766     matroska_segment_t *p_segment = p_vsegment->Segment();
1767     mtime_t            i_time_offset = 0;
1768
1769     int         i_index;
1770
1771     msg_Dbg( p_demux, "seek request to "I64Fd" (%f%%)", i_date, f_percent );
1772     if( i_date < 0 && f_percent < 0 )
1773     {
1774         msg_Warn( p_demux, "cannot seek nowhere !" );
1775         return;
1776     }
1777     if( f_percent > 1.0 )
1778     {
1779         msg_Warn( p_demux, "cannot seek so far !" );
1780         return;
1781     }
1782
1783     /* seek without index or without date */
1784     if( f_percent >= 0 && (config_GetInt( p_demux, "mkv-seek-percent" ) || !p_segment->b_cues || i_date < 0 ))
1785     {
1786         if (p_sys->f_duration >= 0)
1787         {
1788             i_date = int64_t( f_percent * p_sys->f_duration * 1000.0 );
1789         }
1790         else
1791         {
1792             int64_t i_pos = int64_t( f_percent * stream_Size( p_demux->s ) );
1793
1794             msg_Dbg( p_demux, "inacurate way of seeking" );
1795             for( i_index = 0; i_index < p_segment->i_index; i_index++ )
1796             {
1797                 if( p_segment->index[i_index].i_position >= i_pos)
1798                 {
1799                     break;
1800                 }
1801             }
1802             if( i_index == p_segment->i_index )
1803             {
1804                 i_index--;
1805             }
1806
1807             i_date = p_segment->index[i_index].i_time;
1808
1809 #if 0
1810             if( p_segment->index[i_index].i_position < i_pos )
1811             {
1812                 EbmlElement *el;
1813
1814                 msg_Warn( p_demux, "searching for cluster, could take some time" );
1815
1816                 /* search a cluster */
1817                 while( ( el = p_sys->ep->Get() ) != NULL )
1818                 {
1819                     if( MKV_IS_ID( el, KaxCluster ) )
1820                     {
1821                         KaxCluster *cluster = (KaxCluster*)el;
1822
1823                         /* add it to the index */
1824                         p_segment->IndexAppendCluster( cluster );
1825
1826                         if( (int64_t)cluster->GetElementPosition() >= i_pos )
1827                         {
1828                             p_sys->cluster = cluster;
1829                             p_sys->ep->Down();
1830                             break;
1831                         }
1832                     }
1833                 }
1834             }
1835 #endif
1836         }
1837     }
1838
1839     p_vsegment->Seek( *p_demux, i_date, i_time_offset, psz_chapter );
1840 }
1841
1842 /*****************************************************************************
1843  * Demux: reads and demuxes data packets
1844  *****************************************************************************
1845  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
1846  *****************************************************************************/
1847 static int Demux( demux_t *p_demux)
1848 {
1849     demux_sys_t        *p_sys = p_demux->p_sys;
1850     virtual_segment_t  *p_vsegment = p_sys->p_current_segment;
1851     matroska_segment_t *p_segmet = p_vsegment->Segment();
1852     if ( p_segmet == NULL ) return 0;
1853     int                i_block_count = 0;
1854
1855     KaxBlock *block;
1856     int64_t i_block_duration;
1857     int64_t i_block_ref1;
1858     int64_t i_block_ref2;
1859
1860     for( ;; )
1861     {
1862         if ( p_sys->demuxer.b_die )
1863             return 0;
1864
1865         if( p_sys->i_pts >= p_sys->i_start_pts  )
1866             p_vsegment->UpdateCurrentToChapter( *p_demux );
1867         
1868         if ( p_vsegment->EditionIsOrdered() && p_vsegment->CurrentChapter() == NULL )
1869         {
1870             /* nothing left to read in this ordered edition */
1871             if ( !p_vsegment->SelectNext() )
1872                 return 0;
1873             p_segmet->UnSelect( );
1874             
1875             es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
1876
1877             /* switch to the next segment */
1878             p_segmet = p_vsegment->Segment();
1879             if ( !p_segmet->Select( 0 ) )
1880             {
1881                 msg_Err( p_demux, "Failed to select new segment" );
1882                 return 0;
1883             }
1884             continue;
1885         }
1886
1887
1888         if( p_segmet->BlockGet( &block, &i_block_ref1, &i_block_ref2, &i_block_duration ) )
1889         {
1890             if ( p_vsegment->EditionIsOrdered() )
1891             {
1892                 // check if there are more chapters to read
1893                 if ( p_vsegment->CurrentChapter() != NULL )
1894                 {
1895                     p_sys->i_pts = p_vsegment->CurrentChapter()->i_user_end_time;
1896                     return 1;
1897                 }
1898
1899                 return 0;
1900             }
1901             msg_Warn( p_demux, "cannot get block EOF?" );
1902             p_segmet->UnSelect( );
1903             
1904             es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
1905
1906             /* switch to the next segment */
1907             if ( !p_vsegment->SelectNext() )
1908                 // no more segments in this stream
1909                 return 0;
1910             p_segmet = p_vsegment->Segment();
1911             if ( !p_segmet->Select( 0 ) )
1912             {
1913                 msg_Err( p_demux, "Failed to select new segment" );
1914                 return 0;
1915             }
1916
1917             continue;
1918         }
1919
1920         p_sys->i_pts = p_sys->i_chapter_time + block->GlobalTimecode() / (mtime_t) 1000;
1921
1922         if( p_sys->i_pts >= p_sys->i_start_pts  )
1923         {
1924             es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_pts );
1925         }
1926
1927         BlockDecode( p_demux, block, p_sys->i_pts, i_block_duration );
1928
1929         delete block;
1930         i_block_count++;
1931
1932         // TODO optimize when there is need to leave or when seeking has been called
1933         if( i_block_count > 5 )
1934         {
1935             return 1;
1936         }
1937     }
1938 }
1939
1940
1941
1942 /*****************************************************************************
1943  * Stream managment
1944  *****************************************************************************/
1945 vlc_stream_io_callback::vlc_stream_io_callback( stream_t *s_ )
1946 {
1947     s = s_;
1948     mb_eof = VLC_FALSE;
1949 }
1950
1951 uint32 vlc_stream_io_callback::read( void *p_buffer, size_t i_size )
1952 {
1953     if( i_size <= 0 || mb_eof )
1954     {
1955         return 0;
1956     }
1957
1958     return stream_Read( s, p_buffer, i_size );
1959 }
1960 void vlc_stream_io_callback::setFilePointer(int64_t i_offset, seek_mode mode )
1961 {
1962     int64_t i_pos;
1963
1964     switch( mode )
1965     {
1966         case seek_beginning:
1967             i_pos = i_offset;
1968             break;
1969         case seek_end:
1970             i_pos = stream_Size( s ) - i_offset;
1971             break;
1972         default:
1973             i_pos= stream_Tell( s ) + i_offset;
1974             break;
1975     }
1976
1977     if( i_pos < 0 || i_pos >= stream_Size( s ) )
1978     {
1979         mb_eof = VLC_TRUE;
1980         return;
1981     }
1982
1983     mb_eof = VLC_FALSE;
1984     if( stream_Seek( s, i_pos ) )
1985     {
1986         mb_eof = VLC_TRUE;
1987     }
1988     return;
1989 }
1990 size_t vlc_stream_io_callback::write( const void *p_buffer, size_t i_size )
1991 {
1992     return 0;
1993 }
1994 uint64 vlc_stream_io_callback::getFilePointer( void )
1995 {
1996     return stream_Tell( s );
1997 }
1998 void vlc_stream_io_callback::close( void )
1999 {
2000     return;
2001 }
2002
2003
2004 /*****************************************************************************
2005  * Ebml Stream parser
2006  *****************************************************************************/
2007 EbmlParser::EbmlParser( EbmlStream *es, EbmlElement *el_start, demux_t *p_demux )
2008 {
2009     int i;
2010
2011     m_es = es;
2012     m_got = NULL;
2013     m_el[0] = el_start;
2014     mi_remain_size[0] = el_start->GetSize();
2015
2016     for( i = 1; i < 6; i++ )
2017     {
2018         m_el[i] = NULL;
2019     }
2020     mi_level = 1;
2021     mi_user_level = 1;
2022     mb_keep = VLC_FALSE;
2023     mb_dummy = config_GetInt( p_demux, "mkv-use-dummy" );
2024 }
2025
2026 EbmlParser::~EbmlParser( void )
2027 {
2028     int i;
2029
2030     for( i = 1; i < mi_level; i++ )
2031     {
2032         if( !mb_keep )
2033         {
2034             delete m_el[i];
2035         }
2036         mb_keep = VLC_FALSE;
2037     }
2038 }
2039
2040 void EbmlParser::Up( void )
2041 {
2042     if( mi_user_level == mi_level )
2043     {
2044         fprintf( stderr," arrrrrrrrrrrrrg Up cannot escape itself\n" );
2045     }
2046
2047     mi_user_level--;
2048 }
2049
2050 void EbmlParser::Down( void )
2051 {
2052     mi_user_level++;
2053     mi_level++;
2054 }
2055
2056 void EbmlParser::Keep( void )
2057 {
2058     mb_keep = VLC_TRUE;
2059 }
2060
2061 int EbmlParser::GetLevel( void )
2062 {
2063     return mi_user_level;
2064 }
2065
2066 void EbmlParser::Reset( demux_t *p_demux )
2067 {
2068     while ( mi_level > 0)
2069     {
2070         delete m_el[mi_level];
2071         m_el[mi_level] = NULL;
2072         mi_level--;
2073     }
2074     mi_user_level = mi_level = 1;
2075 #if LIBEBML_VERSION >= 0x000704
2076     // a little faster and cleaner
2077     m_es->I_O().setFilePointer( static_cast<KaxSegment*>(m_el[0])->GetGlobalPosition(0) );
2078 #else
2079     m_es->I_O().setFilePointer( m_el[0]->GetElementPosition() + m_el[0]->ElementSize(true) - m_el[0]->GetSize() );
2080 #endif
2081     mb_dummy = config_GetInt( p_demux, "mkv-use-dummy" );
2082 }
2083
2084 EbmlElement *EbmlParser::Get( void )
2085 {
2086     int i_ulev = 0;
2087
2088     if( mi_user_level != mi_level )
2089     {
2090         return NULL;
2091     }
2092     if( m_got )
2093     {
2094         EbmlElement *ret = m_got;
2095         m_got = NULL;
2096
2097         return ret;
2098     }
2099
2100     if( m_el[mi_level] )
2101     {
2102         m_el[mi_level]->SkipData( *m_es, m_el[mi_level]->Generic().Context );
2103         if( !mb_keep )
2104         {
2105             delete m_el[mi_level];
2106         }
2107         mb_keep = VLC_FALSE;
2108     }
2109
2110     m_el[mi_level] = m_es->FindNextElement( m_el[mi_level - 1]->Generic().Context, i_ulev, 0xFFFFFFFFL, mb_dummy, 1 );
2111 //    mi_remain_size[mi_level] = m_el[mi_level]->GetSize();
2112     if( i_ulev > 0 )
2113     {
2114         while( i_ulev > 0 )
2115         {
2116             if( mi_level == 1 )
2117             {
2118                 mi_level = 0;
2119                 return NULL;
2120             }
2121
2122             delete m_el[mi_level - 1];
2123             m_got = m_el[mi_level -1] = m_el[mi_level];
2124             m_el[mi_level] = NULL;
2125
2126             mi_level--;
2127             i_ulev--;
2128         }
2129         return NULL;
2130     }
2131     else if( m_el[mi_level] == NULL )
2132     {
2133         fprintf( stderr," m_el[mi_level] == NULL\n" );
2134     }
2135
2136     return m_el[mi_level];
2137 }
2138
2139
2140 /*****************************************************************************
2141  * Tools
2142  *  * LoadCues : load the cues element and update index
2143  *
2144  *  * LoadTags : load ... the tags element
2145  *
2146  *  * InformationCreate : create all information, load tags if present
2147  *
2148  *****************************************************************************/
2149 void matroska_segment_t::LoadCues( )
2150 {
2151     int64_t     i_sav_position = es.I_O().getFilePointer();
2152     EbmlParser  *ep;
2153     EbmlElement *el, *cues;
2154
2155     /* *** Load the cue if found *** */
2156     if( i_cues_position < 0 )
2157     {
2158         msg_Warn( &sys.demuxer, "no cues/empty cues found->seek won't be precise" );
2159
2160 //        IndexAppendCluster( cluster );
2161     }
2162
2163     vlc_bool_t b_seekable;
2164
2165     stream_Control( sys.demuxer.s, STREAM_CAN_FASTSEEK, &b_seekable );
2166     if( !b_seekable )
2167         return;
2168
2169     msg_Dbg( &sys.demuxer, "loading cues" );
2170     es.I_O().setFilePointer( i_cues_position, seek_beginning );
2171     cues = es.FindNextID( KaxCues::ClassInfos, 0xFFFFFFFFL);
2172
2173     if( cues == NULL )
2174     {
2175         msg_Err( &sys.demuxer, "cannot load cues (broken seekhead or file)" );
2176         es.I_O().setFilePointer( i_sav_position, seek_beginning );
2177         return;
2178     }
2179
2180     ep = new EbmlParser( &es, cues, &sys.demuxer );
2181     while( ( el = ep->Get() ) != NULL )
2182     {
2183         if( MKV_IS_ID( el, KaxCuePoint ) )
2184         {
2185 #define idx index[i_index]
2186
2187             idx.i_track       = -1;
2188             idx.i_block_number= -1;
2189             idx.i_position    = -1;
2190             idx.i_time        = 0;
2191             idx.b_key         = VLC_TRUE;
2192
2193             ep->Down();
2194             while( ( el = ep->Get() ) != NULL )
2195             {
2196                 if( MKV_IS_ID( el, KaxCueTime ) )
2197                 {
2198                     KaxCueTime &ctime = *(KaxCueTime*)el;
2199
2200                     ctime.ReadData( es.I_O() );
2201
2202                     idx.i_time = uint64( ctime ) * i_timescale / (mtime_t)1000;
2203                 }
2204                 else if( MKV_IS_ID( el, KaxCueTrackPositions ) )
2205                 {
2206                     ep->Down();
2207                     while( ( el = ep->Get() ) != NULL )
2208                     {
2209                         if( MKV_IS_ID( el, KaxCueTrack ) )
2210                         {
2211                             KaxCueTrack &ctrack = *(KaxCueTrack*)el;
2212
2213                             ctrack.ReadData( es.I_O() );
2214                             idx.i_track = uint16( ctrack );
2215                         }
2216                         else if( MKV_IS_ID( el, KaxCueClusterPosition ) )
2217                         {
2218                             KaxCueClusterPosition &ccpos = *(KaxCueClusterPosition*)el;
2219
2220                             ccpos.ReadData( es.I_O() );
2221                             idx.i_position = segment->GetGlobalPosition( uint64( ccpos ) );
2222                         }
2223                         else if( MKV_IS_ID( el, KaxCueBlockNumber ) )
2224                         {
2225                             KaxCueBlockNumber &cbnum = *(KaxCueBlockNumber*)el;
2226
2227                             cbnum.ReadData( es.I_O() );
2228                             idx.i_block_number = uint32( cbnum );
2229                         }
2230                         else
2231                         {
2232                             msg_Dbg( &sys.demuxer, "         * Unknown (%s)", typeid(*el).name() );
2233                         }
2234                     }
2235                     ep->Up();
2236                 }
2237                 else
2238                 {
2239                     msg_Dbg( &sys.demuxer, "     * Unknown (%s)", typeid(*el).name() );
2240                 }
2241             }
2242             ep->Up();
2243
2244 #if 0
2245             msg_Dbg( &sys.demuxer, " * added time="I64Fd" pos="I64Fd
2246                      " track=%d bnum=%d", idx.i_time, idx.i_position,
2247                      idx.i_track, idx.i_block_number );
2248 #endif
2249
2250             i_index++;
2251             if( i_index >= i_index_max )
2252             {
2253                 i_index_max += 1024;
2254                 index = (mkv_index_t*)realloc( index, sizeof( mkv_index_t ) * i_index_max );
2255             }
2256 #undef idx
2257         }
2258         else
2259         {
2260             msg_Dbg( &sys.demuxer, " * Unknown (%s)", typeid(*el).name() );
2261         }
2262     }
2263     delete ep;
2264     delete cues;
2265
2266     b_cues = VLC_TRUE;
2267
2268     msg_Dbg( &sys.demuxer, "loading cues done." );
2269     es.I_O().setFilePointer( i_sav_position, seek_beginning );
2270 }
2271
2272 void matroska_segment_t::LoadTags( )
2273 {
2274     int64_t     i_sav_position = es.I_O().getFilePointer();
2275     EbmlParser  *ep;
2276     EbmlElement *el, *tags;
2277
2278     msg_Dbg( &sys.demuxer, "loading tags" );
2279     es.I_O().setFilePointer( i_tags_position, seek_beginning );
2280     tags = es.FindNextID( KaxTags::ClassInfos, 0xFFFFFFFFL);
2281
2282     if( tags == NULL )
2283     {
2284         msg_Err( &sys.demuxer, "cannot load tags (broken seekhead or file)" );
2285         es.I_O().setFilePointer( i_sav_position, seek_beginning );
2286         return;
2287     }
2288
2289     msg_Dbg( &sys.demuxer, "Tags" );
2290     ep = new EbmlParser( &es, tags, &sys.demuxer );
2291     while( ( el = ep->Get() ) != NULL )
2292     {
2293         if( MKV_IS_ID( el, KaxTag ) )
2294         {
2295             msg_Dbg( &sys.demuxer, "+ Tag" );
2296             ep->Down();
2297             while( ( el = ep->Get() ) != NULL )
2298             {
2299                 if( MKV_IS_ID( el, KaxTagTargets ) )
2300                 {
2301                     msg_Dbg( &sys.demuxer, "|   + Targets" );
2302                     ep->Down();
2303                     while( ( el = ep->Get() ) != NULL )
2304                     {
2305                         msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid( *el ).name() );
2306                     }
2307                     ep->Up();
2308                 }
2309                 else if( MKV_IS_ID( el, KaxTagGeneral ) )
2310                 {
2311                     msg_Dbg( &sys.demuxer, "|   + General" );
2312                     ep->Down();
2313                     while( ( el = ep->Get() ) != NULL )
2314                     {
2315                         msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid( *el ).name() );
2316                     }
2317                     ep->Up();
2318                 }
2319                 else if( MKV_IS_ID( el, KaxTagGenres ) )
2320                 {
2321                     msg_Dbg( &sys.demuxer, "|   + Genres" );
2322                     ep->Down();
2323                     while( ( el = ep->Get() ) != NULL )
2324                     {
2325                         msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid( *el ).name() );
2326                     }
2327                     ep->Up();
2328                 }
2329                 else if( MKV_IS_ID( el, KaxTagAudioSpecific ) )
2330                 {
2331                     msg_Dbg( &sys.demuxer, "|   + Audio Specific" );
2332                     ep->Down();
2333                     while( ( el = ep->Get() ) != NULL )
2334                     {
2335                         msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid( *el ).name() );
2336                     }
2337                     ep->Up();
2338                 }
2339                 else if( MKV_IS_ID( el, KaxTagImageSpecific ) )
2340                 {
2341                     msg_Dbg( &sys.demuxer, "|   + Images Specific" );
2342                     ep->Down();
2343                     while( ( el = ep->Get() ) != NULL )
2344                     {
2345                         msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid( *el ).name() );
2346                     }
2347                     ep->Up();
2348                 }
2349                 else if( MKV_IS_ID( el, KaxTagMultiComment ) )
2350                 {
2351                     msg_Dbg( &sys.demuxer, "|   + Multi Comment" );
2352                 }
2353                 else if( MKV_IS_ID( el, KaxTagMultiCommercial ) )
2354                 {
2355                     msg_Dbg( &sys.demuxer, "|   + Multi Commercial" );
2356                 }
2357                 else if( MKV_IS_ID( el, KaxTagMultiDate ) )
2358                 {
2359                     msg_Dbg( &sys.demuxer, "|   + Multi Date" );
2360                 }
2361                 else if( MKV_IS_ID( el, KaxTagMultiEntity ) )
2362                 {
2363                     msg_Dbg( &sys.demuxer, "|   + Multi Entity" );
2364                 }
2365                 else if( MKV_IS_ID( el, KaxTagMultiIdentifier ) )
2366                 {
2367                     msg_Dbg( &sys.demuxer, "|   + Multi Identifier" );
2368                 }
2369                 else if( MKV_IS_ID( el, KaxTagMultiLegal ) )
2370                 {
2371                     msg_Dbg( &sys.demuxer, "|   + Multi Legal" );
2372                 }
2373                 else if( MKV_IS_ID( el, KaxTagMultiTitle ) )
2374                 {
2375                     msg_Dbg( &sys.demuxer, "|   + Multi Title" );
2376                 }
2377                 else
2378                 {
2379                     msg_Dbg( &sys.demuxer, "|   + Unknown (%s)", typeid( *el ).name() );
2380                 }
2381             }
2382             ep->Up();
2383         }
2384         else
2385         {
2386             msg_Dbg( &sys.demuxer, "+ Unknown (%s)", typeid( *el ).name() );
2387         }
2388     }
2389     delete ep;
2390     delete tags;
2391
2392     msg_Dbg( &sys.demuxer, "loading tags done." );
2393     es.I_O().setFilePointer( i_sav_position, seek_beginning );
2394 }
2395
2396 /*****************************************************************************
2397  * ParseSeekHead:
2398  *****************************************************************************/
2399 void matroska_segment_t::ParseSeekHead( EbmlElement *seekhead )
2400 {
2401     EbmlElement *el;
2402     EbmlMaster  *m;
2403     unsigned int i;
2404     int i_upper_level = 0;
2405
2406     msg_Dbg( &sys.demuxer, "|   + Seek head" );
2407
2408     /* Master elements */
2409     m = static_cast<EbmlMaster *>(seekhead);
2410     m->Read( es, seekhead->Generic().Context, i_upper_level, el, true );
2411
2412     for( i = 0; i < m->ListSize(); i++ )
2413     {
2414         EbmlElement *l = (*m)[i];
2415
2416         if( MKV_IS_ID( l, KaxSeek ) )
2417         {
2418             EbmlMaster *sk = static_cast<EbmlMaster *>(l);
2419             EbmlId id = EbmlVoid::ClassInfos.GlobalId;
2420             int64_t i_pos = -1;
2421
2422             unsigned int j;
2423
2424             for( j = 0; j < sk->ListSize(); j++ )
2425             {
2426                 EbmlElement *l = (*sk)[j];
2427
2428                 if( MKV_IS_ID( l, KaxSeekID ) )
2429                 {
2430                     KaxSeekID &sid = *(KaxSeekID*)l;
2431                     id = EbmlId( sid.GetBuffer(), sid.GetSize() );
2432                 }
2433                 else if( MKV_IS_ID( l, KaxSeekPosition ) )
2434                 {
2435                     KaxSeekPosition &spos = *(KaxSeekPosition*)l;
2436                     i_pos = uint64( spos );
2437                 }
2438                 else
2439                 {
2440                     msg_Dbg( &sys.demuxer, "|   |   |   + Unknown (%s)", typeid(*l).name() );
2441                 }
2442             }
2443
2444             if( i_pos >= 0 )
2445             {
2446                 if( id == KaxCues::ClassInfos.GlobalId )
2447                 {
2448                     msg_Dbg( &sys.demuxer, "|   |   |   = cues at "I64Fd, i_pos );
2449                     i_cues_position = segment->GetGlobalPosition( i_pos );
2450                 }
2451                 else if( id == KaxChapters::ClassInfos.GlobalId )
2452                 {
2453                     msg_Dbg( &sys.demuxer, "|   |   |   = chapters at "I64Fd, i_pos );
2454                     i_chapters_position = segment->GetGlobalPosition( i_pos );
2455                 }
2456                 else if( id == KaxTags::ClassInfos.GlobalId )
2457                 {
2458                     msg_Dbg( &sys.demuxer, "|   |   |   = tags at "I64Fd, i_pos );
2459                     i_tags_position = segment->GetGlobalPosition( i_pos );
2460                 }
2461             }
2462         }
2463         else
2464         {
2465             msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid(*l).name() );
2466         }
2467     }
2468 }
2469
2470 /*****************************************************************************
2471  * ParseTrackEntry:
2472  *****************************************************************************/
2473 void matroska_segment_t::ParseTrackEntry( EbmlMaster *m )
2474 {
2475     unsigned int i;
2476
2477     mkv_track_t *tk;
2478
2479     msg_Dbg( &sys.demuxer, "|   |   + Track Entry" );
2480
2481     tk = new mkv_track_t();
2482     tracks.push_back( tk );
2483
2484     /* Init the track */
2485     memset( tk, 0, sizeof( mkv_track_t ) );
2486
2487     es_format_Init( &tk->fmt, UNKNOWN_ES, 0 );
2488     tk->fmt.psz_language = strdup("English");
2489     tk->fmt.psz_description = NULL;
2490
2491     tk->b_default = VLC_TRUE;
2492     tk->b_enabled = VLC_TRUE;
2493     tk->b_silent = VLC_FALSE;
2494     tk->i_number = tracks.size() - 1;
2495     tk->i_extra_data = 0;
2496     tk->p_extra_data = NULL;
2497     tk->psz_codec = NULL;
2498     tk->i_default_duration = 0;
2499     tk->f_timecodescale = 1.0;
2500
2501     tk->b_inited = VLC_FALSE;
2502     tk->i_data_init = 0;
2503     tk->p_data_init = NULL;
2504
2505     tk->psz_codec_name = NULL;
2506     tk->psz_codec_settings = NULL;
2507     tk->psz_codec_info_url = NULL;
2508     tk->psz_codec_download_url = NULL;
2509     
2510     tk->i_compression_type = MATROSKA_COMPRESSION_NONE;
2511
2512     for( i = 0; i < m->ListSize(); i++ )
2513     {
2514         EbmlElement *l = (*m)[i];
2515
2516         if( MKV_IS_ID( l, KaxTrackNumber ) )
2517         {
2518             KaxTrackNumber &tnum = *(KaxTrackNumber*)l;
2519
2520             tk->i_number = uint32( tnum );
2521             msg_Dbg( &sys.demuxer, "|   |   |   + Track Number=%u", uint32( tnum ) );
2522         }
2523         else  if( MKV_IS_ID( l, KaxTrackUID ) )
2524         {
2525             KaxTrackUID &tuid = *(KaxTrackUID*)l;
2526
2527             msg_Dbg( &sys.demuxer, "|   |   |   + Track UID=%u",  uint32( tuid ) );
2528         }
2529         else  if( MKV_IS_ID( l, KaxTrackType ) )
2530         {
2531             char *psz_type;
2532             KaxTrackType &ttype = *(KaxTrackType*)l;
2533
2534             switch( uint8(ttype) )
2535             {
2536                 case track_audio:
2537                     psz_type = "audio";
2538                     tk->fmt.i_cat = AUDIO_ES;
2539                     break;
2540                 case track_video:
2541                     psz_type = "video";
2542                     tk->fmt.i_cat = VIDEO_ES;
2543                     break;
2544                 case track_subtitle:
2545                     psz_type = "subtitle";
2546                     tk->fmt.i_cat = SPU_ES;
2547                     break;
2548                 default:
2549                     psz_type = "unknown";
2550                     tk->fmt.i_cat = UNKNOWN_ES;
2551                     break;
2552             }
2553
2554             msg_Dbg( &sys.demuxer, "|   |   |   + Track Type=%s", psz_type );
2555         }
2556 //        else  if( EbmlId( *l ) == KaxTrackFlagEnabled::ClassInfos.GlobalId )
2557 //        {
2558 //            KaxTrackFlagEnabled &fenb = *(KaxTrackFlagEnabled*)l;
2559
2560 //            tk->b_enabled = uint32( fenb );
2561 //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Enabled=%u",
2562 //                     uint32( fenb )  );
2563 //        }
2564         else  if( MKV_IS_ID( l, KaxTrackFlagDefault ) )
2565         {
2566             KaxTrackFlagDefault &fdef = *(KaxTrackFlagDefault*)l;
2567
2568             tk->b_default = uint32( fdef );
2569             msg_Dbg( &sys.demuxer, "|   |   |   + Track Default=%u", uint32( fdef )  );
2570         }
2571         else  if( MKV_IS_ID( l, KaxTrackFlagLacing ) )
2572         {
2573             KaxTrackFlagLacing &lac = *(KaxTrackFlagLacing*)l;
2574
2575             msg_Dbg( &sys.demuxer, "|   |   |   + Track Lacing=%d", uint32( lac ) );
2576         }
2577         else  if( MKV_IS_ID( l, KaxTrackMinCache ) )
2578         {
2579             KaxTrackMinCache &cmin = *(KaxTrackMinCache*)l;
2580
2581             msg_Dbg( &sys.demuxer, "|   |   |   + Track MinCache=%d", uint32( cmin ) );
2582         }
2583         else  if( MKV_IS_ID( l, KaxTrackMaxCache ) )
2584         {
2585             KaxTrackMaxCache &cmax = *(KaxTrackMaxCache*)l;
2586
2587             msg_Dbg( &sys.demuxer, "|   |   |   + Track MaxCache=%d", uint32( cmax ) );
2588         }
2589         else  if( MKV_IS_ID( l, KaxTrackDefaultDuration ) )
2590         {
2591             KaxTrackDefaultDuration &defd = *(KaxTrackDefaultDuration*)l;
2592
2593             tk->i_default_duration = uint64(defd);
2594             msg_Dbg( &sys.demuxer, "|   |   |   + Track Default Duration="I64Fd, uint64(defd) );
2595         }
2596         else  if( MKV_IS_ID( l, KaxTrackTimecodeScale ) )
2597         {
2598             KaxTrackTimecodeScale &ttcs = *(KaxTrackTimecodeScale*)l;
2599
2600             tk->f_timecodescale = float( ttcs );
2601             msg_Dbg( &sys.demuxer, "|   |   |   + Track TimeCodeScale=%f", tk->f_timecodescale );
2602         }
2603         else if( MKV_IS_ID( l, KaxTrackName ) )
2604         {
2605             KaxTrackName &tname = *(KaxTrackName*)l;
2606
2607             tk->fmt.psz_description = UTF8ToStr( UTFstring( tname ) );
2608             msg_Dbg( &sys.demuxer, "|   |   |   + Track Name=%s", tk->fmt.psz_description );
2609         }
2610         else  if( MKV_IS_ID( l, KaxTrackLanguage ) )
2611         {
2612             KaxTrackLanguage &lang = *(KaxTrackLanguage*)l;
2613
2614             tk->fmt.psz_language = strdup( string( lang ).c_str() );
2615             msg_Dbg( &sys.demuxer,
2616                      "|   |   |   + Track Language=`%s'", tk->fmt.psz_language );
2617         }
2618         else  if( MKV_IS_ID( l, KaxCodecID ) )
2619         {
2620             KaxCodecID &codecid = *(KaxCodecID*)l;
2621
2622             tk->psz_codec = strdup( string( codecid ).c_str() );
2623             msg_Dbg( &sys.demuxer, "|   |   |   + Track CodecId=%s", string( codecid ).c_str() );
2624         }
2625         else  if( MKV_IS_ID( l, KaxCodecPrivate ) )
2626         {
2627             KaxCodecPrivate &cpriv = *(KaxCodecPrivate*)l;
2628
2629             tk->i_extra_data = cpriv.GetSize();
2630             if( tk->i_extra_data > 0 )
2631             {
2632                 tk->p_extra_data = (uint8_t*)malloc( tk->i_extra_data );
2633                 memcpy( tk->p_extra_data, cpriv.GetBuffer(), tk->i_extra_data );
2634             }
2635             msg_Dbg( &sys.demuxer, "|   |   |   + Track CodecPrivate size="I64Fd, cpriv.GetSize() );
2636         }
2637         else if( MKV_IS_ID( l, KaxCodecName ) )
2638         {
2639             KaxCodecName &cname = *(KaxCodecName*)l;
2640
2641             tk->psz_codec_name = UTF8ToStr( UTFstring( cname ) );
2642             msg_Dbg( &sys.demuxer, "|   |   |   + Track Codec Name=%s", tk->psz_codec_name );
2643         }
2644         else if( MKV_IS_ID( l, KaxContentEncodings ) )
2645         {
2646             EbmlMaster *cencs = static_cast<EbmlMaster*>(l);
2647             MkvTree( sys.demuxer, 3, "Content Encodings" );
2648             for( unsigned int i = 0; i < cencs->ListSize(); i++ )
2649             {
2650                 EbmlElement *l2 = (*cencs)[i];
2651                 if( MKV_IS_ID( l2, KaxContentEncoding ) )
2652                 {
2653                     MkvTree( sys.demuxer, 4, "Content Encoding" );
2654                     EbmlMaster *cenc = static_cast<EbmlMaster*>(l2);
2655                     for( unsigned int i = 0; i < cenc->ListSize(); i++ )
2656                     {
2657                         EbmlElement *l3 = (*cenc)[i];
2658                         if( MKV_IS_ID( l3, KaxContentEncodingOrder ) )
2659                         {
2660                             KaxContentEncodingOrder &encord = *(KaxContentEncodingOrder*)l3;
2661                             MkvTree( sys.demuxer, 5, "Order: %i", uint32( encord ) );
2662                         }
2663                         else if( MKV_IS_ID( l3, KaxContentEncodingScope ) )
2664                         {
2665                             KaxContentEncodingScope &encscope = *(KaxContentEncodingScope*)l3;
2666                             MkvTree( sys.demuxer, 5, "Scope: %i", uint32( encscope ) );
2667                         }
2668                         else if( MKV_IS_ID( l3, KaxContentEncodingType ) )
2669                         {
2670                             KaxContentEncodingType &enctype = *(KaxContentEncodingType*)l3;
2671                             MkvTree( sys.demuxer, 5, "Type: %i", uint32( enctype ) );
2672                         }
2673                         else if( MKV_IS_ID( l3, KaxContentCompression ) )
2674                         {
2675                             EbmlMaster *compr = static_cast<EbmlMaster*>(l3);
2676                             MkvTree( sys.demuxer, 5, "Content Compression" );
2677                             for( unsigned int i = 0; i < compr->ListSize(); i++ )
2678                             {
2679                                 EbmlElement *l4 = (*compr)[i];
2680                                 if( MKV_IS_ID( l4, KaxContentCompAlgo ) )
2681                                 {
2682                                     KaxContentCompAlgo &compalg = *(KaxContentCompAlgo*)l4;
2683                                     MkvTree( sys.demuxer, 6, "Compression Algorithm: %i", uint32(compalg) );
2684                                     if( uint32( compalg ) == 0 )
2685                                     {
2686                                         tk->i_compression_type = MATROSKA_COMPRESSION_ZLIB;
2687                                     }
2688                                 }
2689                                 else
2690                                 {
2691                                     MkvTree( sys.demuxer, 6, "Unknown (%s)", typeid(*l4).name() );
2692                                 }
2693                             }
2694                         }
2695
2696                         else
2697                         {
2698                             MkvTree( sys.demuxer, 5, "Unknown (%s)", typeid(*l3).name() );
2699                         }
2700                     }
2701                     
2702                 }
2703                 else
2704                 {
2705                     MkvTree( sys.demuxer, 4, "Unknown (%s)", typeid(*l2).name() );
2706                 }
2707             }
2708                 
2709         }
2710 //        else if( EbmlId( *l ) == KaxCodecSettings::ClassInfos.GlobalId )
2711 //        {
2712 //            KaxCodecSettings &cset = *(KaxCodecSettings*)l;
2713
2714 //            tk->psz_codec_settings = UTF8ToStr( UTFstring( cset ) );
2715 //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Codec Settings=%s", tk->psz_codec_settings );
2716 //        }
2717 //        else if( EbmlId( *l ) == KaxCodecInfoURL::ClassInfos.GlobalId )
2718 //        {
2719 //            KaxCodecInfoURL &ciurl = *(KaxCodecInfoURL*)l;
2720
2721 //            tk->psz_codec_info_url = strdup( string( ciurl ).c_str() );
2722 //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Codec Info URL=%s", tk->psz_codec_info_url );
2723 //        }
2724 //        else if( EbmlId( *l ) == KaxCodecDownloadURL::ClassInfos.GlobalId )
2725 //        {
2726 //            KaxCodecDownloadURL &cdurl = *(KaxCodecDownloadURL*)l;
2727
2728 //            tk->psz_codec_download_url = strdup( string( cdurl ).c_str() );
2729 //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Codec Info URL=%s", tk->psz_codec_download_url );
2730 //        }
2731 //        else if( EbmlId( *l ) == KaxCodecDecodeAll::ClassInfos.GlobalId )
2732 //        {
2733 //            KaxCodecDecodeAll &cdall = *(KaxCodecDecodeAll*)l;
2734
2735 //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Codec Decode All=%u <== UNUSED", uint8( cdall ) );
2736 //        }
2737 //        else if( EbmlId( *l ) == KaxTrackOverlay::ClassInfos.GlobalId )
2738 //        {
2739 //            KaxTrackOverlay &tovr = *(KaxTrackOverlay*)l;
2740
2741 //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Overlay=%u <== UNUSED", uint32( tovr ) );
2742 //        }
2743         else  if( MKV_IS_ID( l, KaxTrackVideo ) )
2744         {
2745             EbmlMaster *tkv = static_cast<EbmlMaster*>(l);
2746             unsigned int j;
2747
2748             msg_Dbg( &sys.demuxer, "|   |   |   + Track Video" );
2749             tk->f_fps = 0.0;
2750
2751             for( j = 0; j < tkv->ListSize(); j++ )
2752             {
2753                 EbmlElement *l = (*tkv)[j];
2754 //                if( EbmlId( *el4 ) == KaxVideoFlagInterlaced::ClassInfos.GlobalId )
2755 //                {
2756 //                    KaxVideoFlagInterlaced &fint = *(KaxVideoFlagInterlaced*)el4;
2757
2758 //                    msg_Dbg( &sys.demuxer, "|   |   |   |   + Track Video Interlaced=%u", uint8( fint ) );
2759 //                }
2760 //                else if( EbmlId( *el4 ) == KaxVideoStereoMode::ClassInfos.GlobalId )
2761 //                {
2762 //                    KaxVideoStereoMode &stereo = *(KaxVideoStereoMode*)el4;
2763
2764 //                    msg_Dbg( &sys.demuxer, "|   |   |   |   + Track Video Stereo Mode=%u", uint8( stereo ) );
2765 //                }
2766 //                else
2767                 if( MKV_IS_ID( l, KaxVideoPixelWidth ) )
2768                 {
2769                     KaxVideoPixelWidth &vwidth = *(KaxVideoPixelWidth*)l;
2770
2771                     tk->fmt.video.i_width = uint16( vwidth );
2772                     msg_Dbg( &sys.demuxer, "|   |   |   |   + width=%d", uint16( vwidth ) );
2773                 }
2774                 else if( MKV_IS_ID( l, KaxVideoPixelHeight ) )
2775                 {
2776                     KaxVideoPixelWidth &vheight = *(KaxVideoPixelWidth*)l;
2777
2778                     tk->fmt.video.i_height = uint16( vheight );
2779                     msg_Dbg( &sys.demuxer, "|   |   |   |   + height=%d", uint16( vheight ) );
2780                 }
2781                 else if( MKV_IS_ID( l, KaxVideoDisplayWidth ) )
2782                 {
2783                     KaxVideoDisplayWidth &vwidth = *(KaxVideoDisplayWidth*)l;
2784
2785                     tk->fmt.video.i_visible_width = uint16( vwidth );
2786                     msg_Dbg( &sys.demuxer, "|   |   |   |   + display width=%d", uint16( vwidth ) );
2787                 }
2788                 else if( MKV_IS_ID( l, KaxVideoDisplayHeight ) )
2789                 {
2790                     KaxVideoDisplayWidth &vheight = *(KaxVideoDisplayWidth*)l;
2791
2792                     tk->fmt.video.i_visible_height = uint16( vheight );
2793                     msg_Dbg( &sys.demuxer, "|   |   |   |   + display height=%d", uint16( vheight ) );
2794                 }
2795                 else if( MKV_IS_ID( l, KaxVideoFrameRate ) )
2796                 {
2797                     KaxVideoFrameRate &vfps = *(KaxVideoFrameRate*)l;
2798
2799                     tk->f_fps = float( vfps );
2800                     msg_Dbg( &sys.demuxer, "   |   |   |   + fps=%f", float( vfps ) );
2801                 }
2802 //                else if( EbmlId( *l ) == KaxVideoDisplayUnit::ClassInfos.GlobalId )
2803 //                {
2804 //                     KaxVideoDisplayUnit &vdmode = *(KaxVideoDisplayUnit*)l;
2805
2806 //                    msg_Dbg( &sys.demuxer, "|   |   |   |   + Track Video Display Unit=%s",
2807 //                             uint8( vdmode ) == 0 ? "pixels" : ( uint8( vdmode ) == 1 ? "centimeters": "inches" ) );
2808 //                }
2809 //                else if( EbmlId( *l ) == KaxVideoAspectRatio::ClassInfos.GlobalId )
2810 //                {
2811 //                    KaxVideoAspectRatio &ratio = *(KaxVideoAspectRatio*)l;
2812
2813 //                    msg_Dbg( &sys.demuxer, "   |   |   |   + Track Video Aspect Ratio Type=%u", uint8( ratio ) );
2814 //                }
2815 //                else if( EbmlId( *l ) == KaxVideoGamma::ClassInfos.GlobalId )
2816 //                {
2817 //                    KaxVideoGamma &gamma = *(KaxVideoGamma*)l;
2818
2819 //                    msg_Dbg( &sys.demuxer, "   |   |   |   + fps=%f", float( gamma ) );
2820 //                }
2821                 else
2822                 {
2823                     msg_Dbg( &sys.demuxer, "|   |   |   |   + Unknown (%s)", typeid(*l).name() );
2824                 }
2825             }
2826             if ( tk->fmt.video.i_visible_height && tk->fmt.video.i_visible_width )
2827                 tk->fmt.video.i_aspect = VOUT_ASPECT_FACTOR * tk->fmt.video.i_visible_width / tk->fmt.video.i_visible_height;
2828         }
2829         else  if( MKV_IS_ID( l, KaxTrackAudio ) )
2830         {
2831             EbmlMaster *tka = static_cast<EbmlMaster*>(l);
2832             unsigned int j;
2833
2834             msg_Dbg( &sys.demuxer, "|   |   |   + Track Audio" );
2835
2836             for( j = 0; j < tka->ListSize(); j++ )
2837             {
2838                 EbmlElement *l = (*tka)[j];
2839
2840                 if( MKV_IS_ID( l, KaxAudioSamplingFreq ) )
2841                 {
2842                     KaxAudioSamplingFreq &afreq = *(KaxAudioSamplingFreq*)l;
2843
2844                     tk->fmt.audio.i_rate = (int)float( afreq );
2845                     msg_Dbg( &sys.demuxer, "|   |   |   |   + afreq=%d", tk->fmt.audio.i_rate );
2846                 }
2847                 else if( MKV_IS_ID( l, KaxAudioChannels ) )
2848                 {
2849                     KaxAudioChannels &achan = *(KaxAudioChannels*)l;
2850
2851                     tk->fmt.audio.i_channels = uint8( achan );
2852                     msg_Dbg( &sys.demuxer, "|   |   |   |   + achan=%u", uint8( achan ) );
2853                 }
2854                 else if( MKV_IS_ID( l, KaxAudioBitDepth ) )
2855                 {
2856                     KaxAudioBitDepth &abits = *(KaxAudioBitDepth*)l;
2857
2858                     tk->fmt.audio.i_bitspersample = uint8( abits );
2859                     msg_Dbg( &sys.demuxer, "|   |   |   |   + abits=%u", uint8( abits ) );
2860                 }
2861                 else
2862                 {
2863                     msg_Dbg( &sys.demuxer, "|   |   |   |   + Unknown (%s)", typeid(*l).name() );
2864                 }
2865             }
2866         }
2867         else
2868         {
2869             msg_Dbg( &sys.demuxer, "|   |   |   + Unknown (%s)",
2870                      typeid(*l).name() );
2871         }
2872     }
2873 }
2874
2875 /*****************************************************************************
2876  * ParseTracks:
2877  *****************************************************************************/
2878 void matroska_segment_t::ParseTracks( EbmlElement *tracks )
2879 {
2880     EbmlElement *el;
2881     EbmlMaster  *m;
2882     unsigned int i;
2883     int i_upper_level = 0;
2884
2885     msg_Dbg( &sys.demuxer, "|   + Tracks" );
2886
2887     /* Master elements */
2888     m = static_cast<EbmlMaster *>(tracks);
2889     m->Read( es, tracks->Generic().Context, i_upper_level, el, true );
2890
2891     for( i = 0; i < m->ListSize(); i++ )
2892     {
2893         EbmlElement *l = (*m)[i];
2894
2895         if( MKV_IS_ID( l, KaxTrackEntry ) )
2896         {
2897             ParseTrackEntry( static_cast<EbmlMaster *>(l) );
2898         }
2899         else
2900         {
2901             msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid(*l).name() );
2902         }
2903     }
2904 }
2905
2906 /*****************************************************************************
2907  * ParseInfo:
2908  *****************************************************************************/
2909 void matroska_segment_t::ParseInfo( EbmlElement *info )
2910 {
2911     EbmlElement *el;
2912     EbmlMaster  *m;
2913     size_t i, j;
2914     int i_upper_level = 0;
2915
2916     msg_Dbg( &sys.demuxer, "|   + Information" );
2917
2918     /* Master elements */
2919     m = static_cast<EbmlMaster *>(info);
2920     m->Read( es, info->Generic().Context, i_upper_level, el, true );
2921
2922     for( i = 0; i < m->ListSize(); i++ )
2923     {
2924         EbmlElement *l = (*m)[i];
2925
2926         if( MKV_IS_ID( l, KaxSegmentUID ) )
2927         {
2928             segment_uid = *(new KaxSegmentUID(*static_cast<KaxSegmentUID*>(l)));
2929
2930             msg_Dbg( &sys.demuxer, "|   |   + UID=%d", *(uint32*)segment_uid.GetBuffer() );
2931         }
2932         else if( MKV_IS_ID( l, KaxPrevUID ) )
2933         {
2934             prev_segment_uid = *(new KaxPrevUID(*static_cast<KaxPrevUID*>(l)));
2935
2936             msg_Dbg( &sys.demuxer, "|   |   + PrevUID=%d", *(uint32*)prev_segment_uid.GetBuffer() );
2937         }
2938         else if( MKV_IS_ID( l, KaxNextUID ) )
2939         {
2940             next_segment_uid = *(new KaxNextUID(*static_cast<KaxNextUID*>(l)));
2941
2942             msg_Dbg( &sys.demuxer, "|   |   + NextUID=%d", *(uint32*)next_segment_uid.GetBuffer() );
2943         }
2944         else if( MKV_IS_ID( l, KaxTimecodeScale ) )
2945         {
2946             KaxTimecodeScale &tcs = *(KaxTimecodeScale*)l;
2947
2948             i_timescale = uint64(tcs);
2949
2950             msg_Dbg( &sys.demuxer, "|   |   + TimecodeScale="I64Fd,
2951                      i_timescale );
2952         }
2953         else if( MKV_IS_ID( l, KaxDuration ) )
2954         {
2955             KaxDuration &dur = *(KaxDuration*)l;
2956
2957             i_duration = mtime_t( double( dur ) );
2958
2959             msg_Dbg( &sys.demuxer, "|   |   + Duration="I64Fd,
2960                      i_duration );
2961         }
2962         else if( MKV_IS_ID( l, KaxMuxingApp ) )
2963         {
2964             KaxMuxingApp &mapp = *(KaxMuxingApp*)l;
2965
2966             psz_muxing_application = UTF8ToStr( UTFstring( mapp ) );
2967
2968             msg_Dbg( &sys.demuxer, "|   |   + Muxing Application=%s",
2969                      psz_muxing_application );
2970         }
2971         else if( MKV_IS_ID( l, KaxWritingApp ) )
2972         {
2973             KaxWritingApp &wapp = *(KaxWritingApp*)l;
2974
2975             psz_writing_application = UTF8ToStr( UTFstring( wapp ) );
2976
2977             msg_Dbg( &sys.demuxer, "|   |   + Writing Application=%s",
2978                      psz_writing_application );
2979         }
2980         else if( MKV_IS_ID( l, KaxSegmentFilename ) )
2981         {
2982             KaxSegmentFilename &sfn = *(KaxSegmentFilename*)l;
2983
2984             psz_segment_filename = UTF8ToStr( UTFstring( sfn ) );
2985
2986             msg_Dbg( &sys.demuxer, "|   |   + Segment Filename=%s",
2987                      psz_segment_filename );
2988         }
2989         else if( MKV_IS_ID( l, KaxTitle ) )
2990         {
2991             KaxTitle &title = *(KaxTitle*)l;
2992
2993             psz_title = UTF8ToStr( UTFstring( title ) );
2994
2995             msg_Dbg( &sys.demuxer, "|   |   + Title=%s", psz_title );
2996         }
2997         else if( MKV_IS_ID( l, KaxSegmentFamily ) )
2998         {
2999             KaxSegmentFamily *uid = static_cast<KaxSegmentFamily*>(l);
3000
3001             families.push_back(*uid);
3002
3003             msg_Dbg( &sys.demuxer, "|   |   + family=%d", *(uint32*)uid->GetBuffer() );
3004         }
3005 #if defined( HAVE_GMTIME_R ) && !defined( SYS_DARWIN )
3006         else if( MKV_IS_ID( l, KaxDateUTC ) )
3007         {
3008             KaxDateUTC &date = *(KaxDateUTC*)l;
3009             time_t i_date;
3010             struct tm tmres;
3011             char   buffer[256];
3012
3013             i_date = date.GetEpochDate();
3014             memset( buffer, 0, 256 );
3015             if( gmtime_r( &i_date, &tmres ) &&
3016                 asctime_r( &tmres, buffer ) )
3017             {
3018                 buffer[strlen( buffer)-1]= '\0';
3019                 psz_date_utc = strdup( buffer );
3020                 msg_Dbg( &sys.demuxer, "|   |   + Date=%s", psz_date_utc );
3021             }
3022         }
3023 #endif
3024 #if LIBMATROSKA_VERSION >= 0x000704
3025         else if( MKV_IS_ID( l, KaxChapterTranslate ) )
3026         {
3027             KaxChapterTranslate *p_trans = static_cast<KaxChapterTranslate*>( l );
3028             chapter_translation_t translated;
3029
3030             p_trans->Read( es, p_trans->Generic().Context, i_upper_level, el, true );
3031             for( j = 0; j < p_trans->ListSize(); j++ )
3032             {
3033                 EbmlElement *l = (*p_trans)[j];
3034
3035                 if( MKV_IS_ID( l, KaxChapterTranslateEditionUID ) )
3036                 {
3037                     translated.editions.push_back( uint64( *static_cast<KaxChapterTranslateEditionUID*>( l ) ) );
3038                 }
3039                 else if( MKV_IS_ID( l, KaxChapterTranslateCodec ) )
3040                 {
3041                     translated.codec_id = uint32( *static_cast<KaxChapterTranslateCodec*>( l ) );
3042                 }
3043                 else if( MKV_IS_ID( l, KaxChapterTranslateID ) )
3044                 {
3045                     translated.translated = *( new KaxChapterTranslateID( *static_cast<KaxChapterTranslateID*>( l ) ) );
3046                 }
3047             }
3048
3049             translations.push_back( translated );
3050         }
3051 #endif
3052         else
3053         {
3054             msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid(*l).name() );
3055         }
3056     }
3057
3058     double f_dur = double(i_duration) * double(i_timescale) / 1000000.0;
3059     i_duration = mtime_t(f_dur);
3060 }
3061
3062
3063 /*****************************************************************************
3064  * ParseChapterAtom
3065  *****************************************************************************/
3066 void matroska_segment_t::ParseChapterAtom( int i_level, EbmlMaster *ca, chapter_item_t & chapters )
3067 {
3068     unsigned int i;
3069
3070     if( sys.title == NULL )
3071     {
3072         sys.title = vlc_input_title_New();
3073     }
3074
3075     msg_Dbg( &sys.demuxer, "|   |   |   + ChapterAtom (level=%d)", i_level );
3076     for( i = 0; i < ca->ListSize(); i++ )
3077     {
3078         EbmlElement *l = (*ca)[i];
3079
3080         if( MKV_IS_ID( l, KaxChapterUID ) )
3081         {
3082             chapters.i_uid = uint64_t(*(KaxChapterUID*)l);
3083             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterUID: %lld", chapters.i_uid );
3084         }
3085         else if( MKV_IS_ID( l, KaxChapterFlagHidden ) )
3086         {
3087             KaxChapterFlagHidden &flag =*(KaxChapterFlagHidden*)l;
3088             chapters.b_display_seekpoint = uint8( flag ) == 0;
3089
3090             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterFlagHidden: %s", chapters.b_display_seekpoint ? "no":"yes" );
3091         }
3092         else if( MKV_IS_ID( l, KaxChapterTimeStart ) )
3093         {
3094             KaxChapterTimeStart &start =*(KaxChapterTimeStart*)l;
3095             chapters.i_start_time = uint64( start ) / I64C(1000);
3096
3097             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterTimeStart: %lld", chapters.i_start_time );
3098         }
3099         else if( MKV_IS_ID( l, KaxChapterTimeEnd ) )
3100         {
3101             KaxChapterTimeEnd &end =*(KaxChapterTimeEnd*)l;
3102             chapters.i_end_time = uint64( end ) / I64C(1000);
3103
3104             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterTimeEnd: %lld", chapters.i_end_time );
3105         }
3106         else if( MKV_IS_ID( l, KaxChapterDisplay ) )
3107         {
3108             EbmlMaster *cd = static_cast<EbmlMaster *>(l);
3109             unsigned int j;
3110
3111             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterDisplay" );
3112             for( j = 0; j < cd->ListSize(); j++ )
3113             {
3114                 EbmlElement *l= (*cd)[j];
3115
3116                 if( MKV_IS_ID( l, KaxChapterString ) )
3117                 {
3118                     int k;
3119
3120                     KaxChapterString &name =*(KaxChapterString*)l;
3121                     for (k = 0; k < i_level; k++)
3122                         chapters.psz_name += '+';
3123                     chapters.psz_name += ' ';
3124                     chapters.psz_name += UTF8ToStr( UTFstring( name ) );
3125
3126                     msg_Dbg( &sys.demuxer, "|   |   |   |   |    + ChapterString '%s'", UTF8ToStr(UTFstring(name)) );
3127                 }
3128                 else if( MKV_IS_ID( l, KaxChapterLanguage ) )
3129                 {
3130                     KaxChapterLanguage &lang =*(KaxChapterLanguage*)l;
3131                     const char *psz = string( lang ).c_str();
3132
3133                     msg_Dbg( &sys.demuxer, "|   |   |   |   |    + ChapterLanguage '%s'", psz );
3134                 }
3135                 else if( MKV_IS_ID( l, KaxChapterCountry ) )
3136                 {
3137                     KaxChapterCountry &ct =*(KaxChapterCountry*)l;
3138                     const char *psz = string( ct ).c_str();
3139
3140                     msg_Dbg( &sys.demuxer, "|   |   |   |   |    + ChapterCountry '%s'", psz );
3141                 }
3142             }
3143         }
3144         else if( MKV_IS_ID( l, KaxChapterAtom ) )
3145         {
3146             chapter_item_t new_sub_chapter;
3147             ParseChapterAtom( i_level+1, static_cast<EbmlMaster *>(l), new_sub_chapter );
3148             new_sub_chapter.psz_parent = &chapters;
3149             chapters.sub_chapters.push_back( new_sub_chapter );
3150         }
3151     }
3152 }
3153
3154 /*****************************************************************************
3155  * ParseChapters:
3156  *****************************************************************************/
3157 void matroska_segment_t::ParseChapters( EbmlElement *chapters )
3158 {
3159     EbmlElement *el;
3160     EbmlMaster  *m;
3161     unsigned int i;
3162     int i_upper_level = 0;
3163     mtime_t i_dur;
3164
3165     /* Master elements */
3166     m = static_cast<EbmlMaster *>(chapters);
3167     m->Read( es, chapters->Generic().Context, i_upper_level, el, true );
3168
3169     for( i = 0; i < m->ListSize(); i++ )
3170     {
3171         EbmlElement *l = (*m)[i];
3172
3173         if( MKV_IS_ID( l, KaxEditionEntry ) )
3174         {
3175             chapter_edition_t edition;
3176             
3177             EbmlMaster *E = static_cast<EbmlMaster *>(l );
3178             unsigned int j;
3179             msg_Dbg( &sys.demuxer, "|   |   + EditionEntry" );
3180             for( j = 0; j < E->ListSize(); j++ )
3181             {
3182                 EbmlElement *l = (*E)[j];
3183
3184                 if( MKV_IS_ID( l, KaxChapterAtom ) )
3185                 {
3186                     chapter_item_t new_sub_chapter;
3187                     ParseChapterAtom( 0, static_cast<EbmlMaster *>(l), new_sub_chapter );
3188                     edition.sub_chapters.push_back( new_sub_chapter );
3189                 }
3190                 else if( MKV_IS_ID( l, KaxEditionUID ) )
3191                 {
3192                     edition.i_uid = uint64(*static_cast<KaxEditionUID *>( l ));
3193                 }
3194                 else if( MKV_IS_ID( l, KaxEditionFlagOrdered ) )
3195                 {
3196                     edition.b_ordered = config_GetInt( &sys.demuxer, "mkv-use-ordered-chapters" ) ? (uint8(*static_cast<KaxEditionFlagOrdered *>( l )) != 0) : 0;
3197                 }
3198                 else if( MKV_IS_ID( l, KaxEditionFlagDefault ) )
3199                 {
3200                     if (uint8(*static_cast<KaxEditionFlagDefault *>( l )) != 0)
3201                         i_default_edition = stored_editions.size();
3202                 }
3203                 else
3204                 {
3205                     msg_Dbg( &sys.demuxer, "|   |   |   + Unknown (%s)", typeid(*l).name() );
3206                 }
3207             }
3208             stored_editions.push_back( edition );
3209         }
3210         else
3211         {
3212             msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid(*l).name() );
3213         }
3214     }
3215
3216     for( i = 0; i < stored_editions.size(); i++ )
3217     {
3218         stored_editions[i].RefreshChapters( );
3219     }
3220     
3221     if ( stored_editions[i_default_edition].b_ordered )
3222     {
3223         /* update the duration of the segment according to the sum of all sub chapters */
3224         i_dur = stored_editions[i_default_edition].Duration() / I64C(1000);
3225         if (i_dur > 0)
3226             i_duration = i_dur;
3227     }
3228 }
3229
3230 void matroska_segment_t::ParseCluster( )
3231 {
3232     EbmlElement *el;
3233     EbmlMaster  *m;
3234     unsigned int i;
3235     int i_upper_level = 0;
3236
3237     /* Master elements */
3238     m = static_cast<EbmlMaster *>( cluster );
3239     m->Read( es, cluster->Generic().Context, i_upper_level, el, true );
3240
3241     for( i = 0; i < m->ListSize(); i++ )
3242     {
3243         EbmlElement *l = (*m)[i];
3244
3245         if( MKV_IS_ID( l, KaxClusterTimecode ) )
3246         {
3247             KaxClusterTimecode &ctc = *(KaxClusterTimecode*)l;
3248
3249             cluster->InitTimecode( uint64( ctc ), i_timescale );
3250             break;
3251         }
3252     }
3253
3254     i_start_time = cluster->GlobalTimecode() / 1000;
3255 }
3256
3257 /*****************************************************************************
3258  * InformationCreate:
3259  *****************************************************************************/
3260 void matroska_segment_t::InformationCreate( )
3261 {
3262     size_t      i_track;
3263
3264     sys.meta = vlc_meta_New();
3265
3266     if( psz_title )
3267     {
3268         vlc_meta_Add( sys.meta, VLC_META_TITLE, psz_title );
3269     }
3270     if( psz_date_utc )
3271     {
3272         vlc_meta_Add( sys.meta, VLC_META_DATE, psz_date_utc );
3273     }
3274     if( psz_segment_filename )
3275     {
3276         vlc_meta_Add( sys.meta, _("Segment filename"), psz_segment_filename );
3277     }
3278     if( psz_muxing_application )
3279     {
3280         vlc_meta_Add( sys.meta, _("Muxing application"), psz_muxing_application );
3281     }
3282     if( psz_writing_application )
3283     {
3284         vlc_meta_Add( sys.meta, _("Writing application"), psz_writing_application );
3285     }
3286
3287     for( i_track = 0; i_track < tracks.size(); i_track++ )
3288     {
3289         mkv_track_t *tk = tracks[i_track];
3290         vlc_meta_t *mtk = vlc_meta_New();
3291
3292         sys.meta->track = (vlc_meta_t**)realloc( sys.meta->track,
3293                                                     sizeof( vlc_meta_t * ) * ( sys.meta->i_track + 1 ) );
3294         sys.meta->track[sys.meta->i_track++] = mtk;
3295
3296         if( tk->fmt.psz_description )
3297         {
3298             vlc_meta_Add( sys.meta, VLC_META_DESCRIPTION, tk->fmt.psz_description );
3299         }
3300         if( tk->psz_codec_name )
3301         {
3302             vlc_meta_Add( sys.meta, VLC_META_CODEC_NAME, tk->psz_codec_name );
3303         }
3304         if( tk->psz_codec_settings )
3305         {
3306             vlc_meta_Add( sys.meta, VLC_META_SETTING, tk->psz_codec_settings );
3307         }
3308         if( tk->psz_codec_info_url )
3309         {
3310             vlc_meta_Add( sys.meta, VLC_META_CODEC_DESCRIPTION, tk->psz_codec_info_url );
3311         }
3312         if( tk->psz_codec_download_url )
3313         {
3314             vlc_meta_Add( sys.meta, VLC_META_URL, tk->psz_codec_download_url );
3315         }
3316     }
3317
3318     if( i_tags_position >= 0 )
3319     {
3320         vlc_bool_t b_seekable;
3321
3322         stream_Control( sys.demuxer.s, STREAM_CAN_FASTSEEK, &b_seekable );
3323         if( b_seekable )
3324         {
3325             LoadTags( );
3326         }
3327     }
3328 }
3329
3330
3331 /*****************************************************************************
3332  * Divers
3333  *****************************************************************************/
3334
3335 void matroska_segment_t::IndexAppendCluster( KaxCluster *cluster )
3336 {
3337 #define idx index[i_index]
3338     idx.i_track       = -1;
3339     idx.i_block_number= -1;
3340     idx.i_position    = cluster->GetElementPosition();
3341     idx.i_time        = -1;
3342     idx.b_key         = VLC_TRUE;
3343
3344     i_index++;
3345     if( i_index >= i_index_max )
3346     {
3347         i_index_max += 1024;
3348         index = (mkv_index_t*)realloc( index, sizeof( mkv_index_t ) * i_index_max );
3349     }
3350 #undef idx
3351 }
3352
3353 static char * UTF8ToStr( const UTFstring &u )
3354 {
3355     int     i_src;
3356     const wchar_t *src;
3357     char *dst, *p;
3358
3359     i_src = u.length();
3360     src   = u.c_str();
3361
3362     p = dst = (char*)malloc( i_src + 1);
3363     while( i_src > 0 )
3364     {
3365         if( *src < 255 )
3366         {
3367             *p++ = (char)*src;
3368         }
3369         else
3370         {
3371             *p++ = '?';
3372         }
3373         src++;
3374         i_src--;
3375     }
3376     *p++= '\0';
3377
3378     return dst;
3379 }
3380
3381 void chapter_edition_t::RefreshChapters( )
3382 {
3383     chapter_item_t::RefreshChapters( b_ordered, -1 );
3384     b_display_seekpoint = false;
3385 }
3386
3387 int64_t chapter_item_t::RefreshChapters( bool b_ordered, int64_t i_prev_user_time )
3388 {
3389     int64_t i_user_time = i_prev_user_time;
3390     
3391     // first the sub-chapters, and then ourself
3392     std::vector<chapter_item_t>::iterator index = sub_chapters.begin();
3393     while ( index != sub_chapters.end() )
3394     {
3395         i_user_time = (*index).RefreshChapters( b_ordered, i_user_time );
3396         index++;
3397     }
3398
3399     if ( b_ordered )
3400     {
3401         i_user_start_time = i_prev_user_time;
3402         if ( i_end_time != -1 && i_user_time == i_prev_user_time )
3403         {
3404             i_user_end_time = i_user_start_time - i_start_time + i_end_time;
3405         }
3406         else
3407         {
3408             i_user_end_time = i_user_time;
3409         }
3410     }
3411     else
3412     {
3413         std::sort( sub_chapters.begin(), sub_chapters.end() );
3414         i_user_start_time = i_start_time;
3415         if ( i_end_time != -1 )
3416             i_user_end_time = i_end_time;
3417         else if ( i_user_time != -1 )
3418             i_user_end_time = i_user_time;
3419         else
3420             i_user_end_time = i_user_start_time;
3421     }
3422
3423     return i_user_end_time;
3424 }
3425
3426 mtime_t chapter_edition_t::Duration() const
3427 {
3428     mtime_t i_result = 0;
3429     
3430     if ( sub_chapters.size() )
3431     {
3432         std::vector<chapter_item_t>::const_iterator index = sub_chapters.end();
3433         index--;
3434         i_result = (*index).i_user_end_time;
3435     }
3436     
3437     return i_result;
3438 }
3439
3440 const chapter_item_t *chapter_item_t::FindTimecode( mtime_t i_user_timecode ) const
3441 {
3442     const chapter_item_t *psz_result = NULL;
3443
3444     if (i_user_timecode >= i_user_start_time && i_user_timecode < i_user_end_time)
3445     {
3446         std::vector<chapter_item_t>::const_iterator index = sub_chapters.begin();
3447         while ( index != sub_chapters.end() && psz_result == NULL )
3448         {
3449             psz_result = (*index).FindTimecode( i_user_timecode );
3450             index++;
3451         }
3452         
3453         if ( psz_result == NULL )
3454             psz_result = this;
3455     }
3456
3457     return psz_result;
3458 }
3459
3460 void demux_sys_t::PreloadFamily( const matroska_segment_t & of_segment )
3461 {
3462     for (size_t i=0; i<opened_segments.size(); i++)
3463     {
3464         opened_segments[i]->PreloadFamily( of_segment );
3465     }
3466 }
3467 bool matroska_segment_t::PreloadFamily( const matroska_segment_t & of_segment )
3468 {
3469     if ( b_preloaded )
3470         return false;
3471
3472     for (size_t i=0; i<families.size(); i++)
3473     {
3474         for (size_t j=0; j<of_segment.families.size(); j++)
3475         {
3476             if ( families[i] == of_segment.families[j] )
3477                 return Preload( );
3478         }
3479     }
3480
3481     return false;
3482 }
3483
3484 // preload all the linked segments for all preloaded segments
3485 void demux_sys_t::PreloadLinked( matroska_segment_t *p_segment )
3486 {
3487     size_t i_preloaded, i;
3488
3489     delete p_current_segment;
3490     p_current_segment = new virtual_segment_t( p_segment );
3491
3492     // fill our current virtual segment with all hard linked segments
3493     do {
3494         i_preloaded = 0;
3495         for ( i=0; i< opened_segments.size(); i++ )
3496         {
3497             i_preloaded += p_current_segment->AddSegment( opened_segments[i] );
3498         }
3499     } while ( i_preloaded ); // worst case: will stop when all segments are found as linked
3500
3501     p_current_segment->Sort( );
3502
3503     p_current_segment->PreloadLinked( );
3504 }
3505
3506 bool demux_sys_t::PreparePlayback( )
3507 {
3508     p_current_segment->LoadCues();
3509     f_duration = p_current_segment->Duration();
3510
3511     /* add information */
3512     p_current_segment->Segment()->InformationCreate( );
3513
3514     p_current_segment->Segment()->Select( 0 );
3515
3516     return p_current_segment->Select( *title );
3517 }
3518
3519 bool matroska_segment_t::CompareSegmentUIDs( const matroska_segment_t * p_item_a, const matroska_segment_t * p_item_b )
3520 {
3521     EbmlBinary * p_itema = (EbmlBinary *)(&p_item_a->segment_uid);
3522     if ( *p_itema == p_item_b->prev_segment_uid )
3523         return true;
3524
3525     p_itema = (EbmlBinary *)(&p_item_a->next_segment_uid);
3526     if ( *p_itema == p_item_b->segment_uid )
3527         return true;
3528
3529     if ( *p_itema == p_item_b->prev_segment_uid )
3530         return true;
3531
3532     return false;
3533 }
3534
3535 bool matroska_segment_t::Preload( )
3536 {
3537     if ( b_preloaded )
3538         return false;
3539
3540     EbmlElement *el = NULL;
3541
3542     ep->Reset( &sys.demuxer );
3543
3544     while( ( el = ep->Get() ) != NULL )
3545     {
3546         if( MKV_IS_ID( el, KaxInfo ) )
3547         {
3548             ParseInfo( el );
3549         }
3550         else if( MKV_IS_ID( el, KaxTracks ) )
3551         {
3552             ParseTracks( el );
3553         }
3554         else if( MKV_IS_ID( el, KaxSeekHead ) )
3555         {
3556             ParseSeekHead( el );
3557         }
3558         else if( MKV_IS_ID( el, KaxCues ) )
3559         {
3560             msg_Dbg( &sys.demuxer, "|   + Cues" );
3561         }
3562         else if( MKV_IS_ID( el, KaxCluster ) )
3563         {
3564             msg_Dbg( &sys.demuxer, "|   + Cluster" );
3565
3566             cluster = (KaxCluster*)el;
3567
3568             i_start_pos = cluster->GetElementPosition();
3569             ParseCluster( );
3570
3571             ep->Down();
3572             /* stop parsing the stream */
3573             break;
3574         }
3575         else if( MKV_IS_ID( el, KaxAttachments ) )
3576         {
3577             msg_Dbg( &sys.demuxer, "|   + Attachments FIXME TODO (but probably never supported)" );
3578         }
3579         else if( MKV_IS_ID( el, KaxChapters ) )
3580         {
3581             msg_Dbg( &sys.demuxer, "|   + Chapters" );
3582             ParseChapters( el );
3583         }
3584         else if( MKV_IS_ID( el, KaxTag ) )
3585         {
3586             msg_Dbg( &sys.demuxer, "|   + Tags FIXME TODO" );
3587         }
3588         else
3589         {
3590             msg_Dbg( &sys.demuxer, "|   + Unknown (%s)", typeid(*el).name() );
3591         }
3592     }
3593
3594     b_preloaded = true;
3595
3596     return true;
3597 }
3598
3599 matroska_segment_t *demux_sys_t::FindSegment( const EbmlBinary & uid ) const
3600 {
3601     for (size_t i=0; i<opened_segments.size(); i++)
3602     {
3603         if ( opened_segments[i]->segment_uid == uid )
3604             return opened_segments[i];
3605     }
3606     return NULL;
3607 }
3608
3609 void virtual_segment_t::Sort()
3610 {
3611     // keep the current segment index
3612     matroska_segment_t *p_segment = linked_segments[i_current_segment];
3613
3614     std::sort( linked_segments.begin(), linked_segments.end(), matroska_segment_t::CompareSegmentUIDs );
3615
3616     for ( i_current_segment=0; i_current_segment<linked_segments.size(); i_current_segment++)
3617         if ( linked_segments[i_current_segment] == p_segment )
3618             break;
3619 }
3620
3621 size_t virtual_segment_t::AddSegment( matroska_segment_t *p_segment )
3622 {
3623     size_t i;
3624     // check if it's not already in here
3625     for ( i=0; i<linked_segments.size(); i++ )
3626     {
3627         if ( p_segment->segment_uid == linked_segments[i]->segment_uid )
3628             return 0;
3629     }
3630
3631     // find possible mates
3632     for ( i=0; i<linked_uids.size(); i++ )
3633     {
3634         if (   p_segment->segment_uid == linked_uids[i] 
3635             || p_segment->prev_segment_uid == linked_uids[i] 
3636             || p_segment->next_segment_uid == linked_uids[i] )
3637         {
3638             linked_segments.push_back( p_segment );
3639
3640             AppendUID( p_segment->prev_segment_uid );
3641             AppendUID( p_segment->next_segment_uid );
3642
3643             return 1;
3644         }
3645     }
3646     return 0;
3647 }
3648
3649 void virtual_segment_t::PreloadLinked( )
3650 {
3651     for ( size_t i=0; i<linked_segments.size(); i++ )
3652     {
3653         linked_segments[i]->Preload( );
3654     }
3655     i_current_edition = linked_segments[0]->i_default_edition;
3656 }
3657
3658 mtime_t virtual_segment_t::Duration() const
3659 {
3660     mtime_t i_duration;
3661     if ( linked_segments.size() == 0 )
3662         i_duration = 0;
3663     else {
3664         matroska_segment_t *p_last_segment = linked_segments[linked_segments.size()-1];
3665 //        p_last_segment->ParseCluster( );
3666
3667         i_duration = p_last_segment->i_start_time / 1000 + p_last_segment->i_duration;
3668     }
3669     return i_duration;
3670 }
3671
3672 void virtual_segment_t::LoadCues( )
3673 {
3674     for ( size_t i=0; i<linked_segments.size(); i++ )
3675     {
3676         linked_segments[i]->LoadCues();
3677     }
3678 }
3679
3680 void virtual_segment_t::AppendUID( const EbmlBinary & UID )
3681 {
3682     if ( UID.GetBuffer() == NULL )
3683         return;
3684
3685     for (size_t i=0; i<linked_uids.size(); i++)
3686     {
3687         if ( UID == linked_uids[i] )
3688             return;
3689     }
3690     linked_uids.push_back( *(KaxSegmentUID*)(&UID) );
3691 }
3692
3693 void matroska_segment_t::Seek( mtime_t i_date, mtime_t i_time_offset )
3694 {
3695     KaxBlock    *block;
3696     int         i_track_skipping;
3697     int64_t     i_block_duration;
3698     int64_t     i_block_ref1;
3699     int64_t     i_block_ref2;
3700     size_t      i_track;
3701     int64_t     i_seek_position = i_start_pos;
3702     int64_t     i_seek_time = i_start_time;
3703
3704     if ( i_index > 0 )
3705     {
3706         int i_idx = 0;
3707
3708         for( ; i_idx < i_index; i_idx++ )
3709         {
3710             if( index[i_idx].i_time + i_time_offset > i_date )
3711             {
3712                 break;
3713             }
3714         }
3715
3716         if( i_idx > 0 )
3717         {
3718             i_idx--;
3719         }
3720
3721         i_seek_position = index[i_idx].i_position;
3722         i_seek_time = index[i_idx].i_time;
3723     }
3724
3725     msg_Dbg( &sys.demuxer, "seek got "I64Fd" (%d%%)",
3726                 i_seek_time, (int)( 100 * i_seek_position / stream_Size( sys.demuxer.s ) ) );
3727
3728     es.I_O().setFilePointer( i_seek_position, seek_beginning );
3729
3730     delete ep;
3731     ep = new EbmlParser( &es, segment, &sys.demuxer );
3732     cluster = NULL;
3733
3734     sys.i_start_pts = i_date;
3735
3736     es_out_Control( sys.demuxer.out, ES_OUT_RESET_PCR );
3737
3738     /* now parse until key frame */
3739 #define tk  tracks[i_track]
3740     i_track_skipping = 0;
3741     for( i_track = 0; i_track < tracks.size(); i_track++ )
3742     {
3743         if( tk->fmt.i_cat == VIDEO_ES )
3744         {
3745             tk->b_search_keyframe = VLC_TRUE;
3746             i_track_skipping++;
3747         }
3748         es_out_Control( sys.demuxer.out, ES_OUT_SET_NEXT_DISPLAY_TIME, tk->p_es, i_date );
3749     }
3750
3751
3752     while( i_track_skipping > 0 )
3753     {
3754         if( BlockGet( &block, &i_block_ref1, &i_block_ref2, &i_block_duration ) )
3755         {
3756             msg_Warn( &sys.demuxer, "cannot get block EOF?" );
3757
3758             return;
3759         }
3760
3761         for( i_track = 0; i_track < tracks.size(); i_track++ )
3762         {
3763             if( tk->i_number == block->TrackNum() )
3764             {
3765                 break;
3766             }
3767         }
3768
3769         sys.i_pts = sys.i_chapter_time + block->GlobalTimecode() / (mtime_t) 1000;
3770
3771         if( i_track < tracks.size() )
3772         {
3773             if( sys.i_pts >= sys.i_start_pts )
3774             {
3775                 BlockDecode( &sys.demuxer, block, sys.i_pts, 0 );
3776                 i_track_skipping = 0;
3777             }
3778             else if( tk->fmt.i_cat == VIDEO_ES )
3779             {
3780                 if( i_block_ref1 == -1 && tk->b_search_keyframe )
3781                 {
3782                     tk->b_search_keyframe = VLC_FALSE;
3783                     i_track_skipping--;
3784                 }
3785                 if( !tk->b_search_keyframe )
3786                 {
3787                     BlockDecode( &sys.demuxer, block, sys.i_pts, 0 );
3788                 }
3789             } 
3790         }
3791
3792         delete block;
3793     }
3794 #undef tk
3795 }
3796
3797 void virtual_segment_t::Seek( demux_t & demuxer, mtime_t i_date, mtime_t i_time_offset, const chapter_item_t *psz_chapter )
3798 {
3799     demux_sys_t *p_sys = demuxer.p_sys;
3800     size_t i;
3801
3802     // find the actual time for an ordered edition
3803     if ( psz_chapter == NULL )
3804     {
3805         if ( EditionIsOrdered() )
3806         {
3807             /* 1st, we need to know in which chapter we are */
3808             psz_chapter = editions[i_current_edition].FindTimecode( i_date );
3809         }
3810     }
3811
3812     if ( psz_chapter != NULL )
3813     {
3814         psz_current_chapter = psz_chapter;
3815         p_sys->i_chapter_time = i_time_offset = psz_chapter->i_user_start_time - psz_chapter->i_start_time;
3816         demuxer.info.i_update |= INPUT_UPDATE_SEEKPOINT;
3817         demuxer.info.i_seekpoint = psz_chapter->i_seekpoint_num - 1;
3818     }
3819
3820     // find the best matching segment
3821     for ( i=0; i<linked_segments.size(); i++ )
3822     {
3823         if ( i_date < linked_segments[i]->i_start_time )
3824             break;
3825     }
3826
3827     if ( i > 0 )
3828         i--;
3829
3830     if ( i_current_segment != i  )
3831     {
3832         linked_segments[i_current_segment]->UnSelect();
3833         linked_segments[i]->Select( i_date );
3834         i_current_segment = i;
3835     }
3836
3837     linked_segments[i]->Seek( i_date, i_time_offset );
3838 }