]> git.sesse.net Git - vlc/blob - modules/demux/mkv.cpp
mkv.cpp: fix the end of stream handling (when there are pending Post commands)
[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 #include "vlc_keys.h"
88
89 extern "C" {
90    #include "mp4/libmp4.h"
91 }
92 #ifdef HAVE_ZLIB_H
93 #   include <zlib.h>
94 #endif
95
96 #define MATROSKA_COMPRESSION_NONE 0
97 #define MATROSKA_COMPRESSION_ZLIB 1
98
99 #define MKVD_TIMECODESCALE 1000000
100
101 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
102 #ifdef VSLHC1
103 #define DVDNAV_COMPILE
104 #include <dvdnav.h>
105 #else /* VSLHC */
106
107 #undef ATTRIBUTE_PACKED
108 #undef PRAGMA_PACK_BEGIN 
109 #undef PRAGMA_PACK_END
110
111 #if defined(__GNUC__)
112 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)
113 #define ATTRIBUTE_PACKED __attribute__ ((packed))
114 #define PRAGMA_PACK 0
115 #endif
116 #endif
117
118 #if !defined(ATTRIBUTE_PACKED)
119 #define ATTRIBUTE_PACKED
120 #define PRAGMA_PACK 1
121 #endif
122
123 #if PRAGMA_PACK
124 #pragma pack(1)
125 #endif
126
127 /*************************************
128 *  taken from libdvdnav / libdvdread
129 **************************************/
130
131 /**
132  * DVD Time Information.
133  */
134 typedef struct {
135   uint8_t hour;
136   uint8_t minute;
137   uint8_t second;
138   uint8_t frame_u; /* The two high bits are the frame rate. */
139 } ATTRIBUTE_PACKED dvd_time_t;
140
141 /**
142  * User Operations.
143  */
144 typedef struct {
145 #ifdef WORDS_BIGENDIAN
146   unsigned char zero                           : 7; /* 25-31 */
147   unsigned char video_pres_mode_change         : 1; /* 24 */
148   
149   unsigned char karaoke_audio_pres_mode_change : 1; /* 23 */
150   unsigned char angle_change                   : 1;
151   unsigned char subpic_stream_change           : 1;
152   unsigned char audio_stream_change            : 1;
153   unsigned char pause_on                       : 1;
154   unsigned char still_off                      : 1;
155   unsigned char button_select_or_activate      : 1;
156   unsigned char resume                         : 1; /* 16 */
157   
158   unsigned char chapter_menu_call              : 1; /* 15 */
159   unsigned char angle_menu_call                : 1;
160   unsigned char audio_menu_call                : 1;
161   unsigned char subpic_menu_call               : 1;
162   unsigned char root_menu_call                 : 1;
163   unsigned char title_menu_call                : 1;
164   unsigned char backward_scan                  : 1;
165   unsigned char forward_scan                   : 1; /* 8 */
166   
167   unsigned char next_pg_search                 : 1; /* 7 */
168   unsigned char prev_or_top_pg_search          : 1;
169   unsigned char time_or_chapter_search         : 1;
170   unsigned char go_up                          : 1;
171   unsigned char stop                           : 1;
172   unsigned char title_play                     : 1;
173   unsigned char chapter_search_or_play         : 1;
174   unsigned char title_or_time_play             : 1; /* 0 */
175 #else
176   unsigned char video_pres_mode_change         : 1; /* 24 */
177   unsigned char zero                           : 7; /* 25-31 */
178   
179   unsigned char resume                         : 1; /* 16 */
180   unsigned char button_select_or_activate      : 1;
181   unsigned char still_off                      : 1;
182   unsigned char pause_on                       : 1;
183   unsigned char audio_stream_change            : 1;
184   unsigned char subpic_stream_change           : 1;
185   unsigned char angle_change                   : 1;
186   unsigned char karaoke_audio_pres_mode_change : 1; /* 23 */
187   
188   unsigned char forward_scan                   : 1; /* 8 */
189   unsigned char backward_scan                  : 1;
190   unsigned char title_menu_call                : 1;
191   unsigned char root_menu_call                 : 1;
192   unsigned char subpic_menu_call               : 1;
193   unsigned char audio_menu_call                : 1;
194   unsigned char angle_menu_call                : 1;
195   unsigned char chapter_menu_call              : 1; /* 15 */
196   
197   unsigned char title_or_time_play             : 1; /* 0 */
198   unsigned char chapter_search_or_play         : 1;
199   unsigned char title_play                     : 1;
200   unsigned char stop                           : 1;
201   unsigned char go_up                          : 1;
202   unsigned char time_or_chapter_search         : 1;
203   unsigned char prev_or_top_pg_search          : 1;
204   unsigned char next_pg_search                 : 1; /* 7 */
205 #endif
206 } ATTRIBUTE_PACKED user_ops_t;
207
208 /**
209  * Type to store per-command data.
210  */
211 typedef struct {
212   uint8_t bytes[8];
213 } ATTRIBUTE_PACKED vm_cmd_t;
214 #define COMMAND_DATA_SIZE 8
215
216 /**
217  * PCI General Information 
218  */
219 typedef struct {
220   uint32_t nv_pck_lbn;      /**< sector address of this nav pack */
221   uint16_t vobu_cat;        /**< 'category' of vobu */
222   uint16_t zero1;           /**< reserved */
223   user_ops_t vobu_uop_ctl;  /**< UOP of vobu */
224   uint32_t vobu_s_ptm;      /**< start presentation time of vobu */
225   uint32_t vobu_e_ptm;      /**< end presentation time of vobu */
226   uint32_t vobu_se_e_ptm;   /**< end ptm of sequence end in vobu */
227   dvd_time_t e_eltm;        /**< Cell elapsed time */
228   char vobu_isrc[32];
229 } ATTRIBUTE_PACKED pci_gi_t;
230
231 /**
232  * Non Seamless Angle Information
233  */
234 typedef struct {
235   uint32_t nsml_agl_dsta[9];  /**< address of destination vobu in AGL_C#n */
236 } ATTRIBUTE_PACKED nsml_agli_t;
237
238 /** 
239  * Highlight General Information 
240  *
241  * For btngrX_dsp_ty the bits have the following meaning:
242  * 000b: normal 4/3 only buttons
243  * XX1b: wide (16/9) buttons
244  * X1Xb: letterbox buttons
245  * 1XXb: pan&scan buttons
246  */
247 typedef struct {
248   uint16_t hli_ss; /**< status, only low 2 bits 0: no buttons, 1: different 2: equal 3: eual except for button cmds */
249   uint32_t hli_s_ptm;              /**< start ptm of hli */
250   uint32_t hli_e_ptm;              /**< end ptm of hli */
251   uint32_t btn_se_e_ptm;           /**< end ptm of button select */
252 #ifdef WORDS_BIGENDIAN
253   unsigned char zero1 : 2;          /**< reserved */
254   unsigned char btngr_ns : 2;       /**< number of button groups 1, 2 or 3 with 36/18/12 buttons */
255   unsigned char zero2 : 1;          /**< reserved */
256   unsigned char btngr1_dsp_ty : 3;  /**< display type of subpic stream for button group 1 */
257   unsigned char zero3 : 1;          /**< reserved */
258   unsigned char btngr2_dsp_ty : 3;  /**< display type of subpic stream for button group 2 */
259   unsigned char zero4 : 1;          /**< reserved */
260   unsigned char btngr3_dsp_ty : 3;  /**< display type of subpic stream for button group 3 */
261 #else
262   unsigned char btngr1_dsp_ty : 3;
263   unsigned char zero2 : 1;
264   unsigned char btngr_ns : 2;
265   unsigned char zero1 : 2;
266   unsigned char btngr3_dsp_ty : 3;
267   unsigned char zero4 : 1;
268   unsigned char btngr2_dsp_ty : 3;
269   unsigned char zero3 : 1;
270 #endif
271   uint8_t btn_ofn;     /**< button offset number range 0-255 */
272   uint8_t btn_ns;      /**< number of valid buttons  <= 36/18/12 (low 6 bits) */  
273   uint8_t nsl_btn_ns;  /**< number of buttons selectable by U_BTNNi (low 6 bits)   nsl_btn_ns <= btn_ns */
274   uint8_t zero5;       /**< reserved */
275   uint8_t fosl_btnn;   /**< forcedly selected button  (low 6 bits) */
276   uint8_t foac_btnn;   /**< forcedly activated button (low 6 bits) */
277 } ATTRIBUTE_PACKED hl_gi_t;
278
279
280 /** 
281  * Button Color Information Table 
282  * Each entry beeing a 32bit word that contains the color indexs and alpha
283  * values to use.  They are all represented by 4 bit number and stored
284  * like this [Ci3, Ci2, Ci1, Ci0, A3, A2, A1, A0].   The actual palette
285  * that the indexes reference is in the PGC.
286  * @TODO split the uint32_t into a struct
287  */
288 typedef struct {
289   uint32_t btn_coli[3][2];  /**< [button color number-1][select:0/action:1] */
290 } ATTRIBUTE_PACKED btn_colit_t;
291
292 /** 
293  * Button Information
294  *
295  * NOTE: I've had to change the structure from the disk layout to get
296  * the packing to work with Sun's Forte C compiler.
297  * The 4 and 7 bytes are 'rotated' was: ABC DEF GHIJ  is: ABCG DEFH IJ
298  */
299 typedef struct {
300 #ifdef WORDS_BIGENDIAN
301   uint32        btn_coln         : 2;  /**< button color number */
302   uint32        x_start          : 10; /**< x start offset within the overlay */
303   uint32        zero1            : 2;  /**< reserved */
304   uint32        x_end            : 10; /**< x end offset within the overlay */
305
306   uint32        zero3            : 2;  /**< reserved */
307   uint32        up               : 6;  /**< button index when pressing up */
308
309   uint32        auto_action_mode : 2;  /**< 0: no, 1: activated if selected */
310   uint32        y_start          : 10; /**< y start offset within the overlay */
311   uint32        zero2            : 2;  /**< reserved */
312   uint32        y_end            : 10; /**< y end offset within the overlay */
313
314   uint32        zero4            : 2;  /**< reserved */
315   uint32        down             : 6;  /**< button index when pressing down */
316   unsigned char zero5            : 2;  /**< reserved */
317   unsigned char left             : 6;  /**< button index when pressing left */
318   unsigned char zero6            : 2;  /**< reserved */
319   unsigned char right            : 6;  /**< button index when pressing right */
320 #else
321   uint32        x_end            : 10;
322   uint32        zero1            : 2;
323   uint32        x_start          : 10;
324   uint32        btn_coln         : 2;
325
326   uint32        up               : 6;
327   uint32        zero3            : 2;
328
329   uint32        y_end            : 10;
330   uint32        zero2            : 2;
331   uint32        y_start          : 10;
332   uint32        auto_action_mode : 2;
333
334   uint32        down             : 6;
335   uint32        zero4            : 2;
336   unsigned char left             : 6;
337   unsigned char zero5            : 2;
338   unsigned char right            : 6;
339   unsigned char zero6            : 2;
340 #endif
341   vm_cmd_t cmd;
342 } ATTRIBUTE_PACKED btni_t;
343
344 /**
345  * Highlight Information 
346  */
347 typedef struct {
348   hl_gi_t     hl_gi;
349   btn_colit_t btn_colit;
350   btni_t      btnit[36];
351 } ATTRIBUTE_PACKED hli_t;
352
353 /**
354  * PCI packet
355  */
356 typedef struct {
357   pci_gi_t    pci_gi;
358   nsml_agli_t nsml_agli;
359   hli_t       hli;
360   uint8_t     zero1[189];
361 } ATTRIBUTE_PACKED pci_t;
362
363
364 #if PRAGMA_PACK
365 #pragma pack()
366 #endif
367
368 #endif /* VSLHC */
369 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
370
371
372 /**
373  * What's between a directory and a filename?
374  */
375 #if defined( WIN32 )
376     #define DIRECTORY_SEPARATOR '\\'
377 #else
378     #define DIRECTORY_SEPARATOR '/'
379 #endif
380
381 using namespace LIBMATROSKA_NAMESPACE;
382 using namespace std;
383
384 /*****************************************************************************
385  * Module descriptor
386  *****************************************************************************/
387 static int  Open ( vlc_object_t * );
388 static void Close( vlc_object_t * );
389
390 vlc_module_begin();
391     set_shortname( _("Matroska") );
392     set_description( _("Matroska stream demuxer" ) );
393     set_capability( "demux2", 50 );
394     set_callbacks( Open, Close );
395     set_category( CAT_INPUT );
396     set_subcategory( SUBCAT_INPUT_DEMUX );
397
398     add_bool( "mkv-use-ordered-chapters", 1, NULL,
399             N_("Ordered chapters"),
400             N_("Play ordered chapters as specified in the segment"), VLC_TRUE );
401
402     add_bool( "mkv-use-chapter-codec", 1, NULL,
403             N_("Chapter codecs"),
404             N_("Use chapter codecs found in the segment"), VLC_TRUE );
405
406     add_bool( "mkv-seek-percent", 0, NULL,
407             N_("Seek based on percent not time"),
408             N_("Seek based on percent not time"), VLC_TRUE );
409
410     add_bool( "mkv-use-dummy", 0, NULL,
411             N_("Dummy Elements"),
412             N_("Read and discard unknown EBML elements (not good for broken files)"), VLC_TRUE );
413
414     add_shortcut( "mka" );
415     add_shortcut( "mkv" );
416 vlc_module_end();
417
418 /*****************************************************************************
419  * Local prototypes
420  *****************************************************************************/
421 #ifdef HAVE_ZLIB_H
422 block_t *block_zlib_decompress( vlc_object_t *p_this, block_t *p_in_block ) {
423     int result, dstsize, n;
424     unsigned char *dst;
425     block_t *p_block;
426     z_stream d_stream;
427
428     d_stream.zalloc = (alloc_func)0;
429     d_stream.zfree = (free_func)0;
430     d_stream.opaque = (voidpf)0;
431     result = inflateInit(&d_stream);
432     if( result != Z_OK )
433     {
434         msg_Dbg( p_this, "inflateInit() failed. Result: %d", result );
435         return NULL;
436     }
437
438     d_stream.next_in = (Bytef *)p_in_block->p_buffer;
439     d_stream.avail_in = p_in_block->i_buffer;
440     n = 0;
441     p_block = block_New( p_this, 0 );
442     dst = NULL;
443     do
444     {
445         n++;
446         p_block = block_Realloc( p_block, 0, n * 1000 );
447         dst = (unsigned char *)p_block->p_buffer;
448         d_stream.next_out = (Bytef *)&dst[(n - 1) * 1000];
449         d_stream.avail_out = 1000;
450         result = inflate(&d_stream, Z_NO_FLUSH);
451         if( ( result != Z_OK ) && ( result != Z_STREAM_END ) )
452         {
453             msg_Dbg( p_this, "Zlib decompression failed. Result: %d", result );
454             return NULL;
455         }
456     }
457     while( ( d_stream.avail_out == 0 ) && ( d_stream.avail_in != 0 ) &&
458            ( result != Z_STREAM_END ) );
459
460     dstsize = d_stream.total_out;
461     inflateEnd( &d_stream );
462
463     p_block = block_Realloc( p_block, 0, dstsize );
464     p_block->i_buffer = dstsize;
465     block_Release( p_in_block );
466
467     return p_block;
468 }
469 #endif
470
471 /**
472  * Helper function to print the mkv parse tree
473  */
474 static void MkvTree( demux_t & demuxer, int i_level, char *psz_format, ... )
475 {
476     va_list args;
477     if( i_level > 9 )
478     {
479         msg_Err( &demuxer, "too deep tree" );
480         return;
481     }
482     va_start( args, psz_format );
483     static char *psz_foo = "|   |   |   |   |   |   |   |   |   |";
484     char *psz_foo2 = (char*)malloc( ( i_level * 4 + 3 + strlen( psz_format ) ) * sizeof(char) );
485     strncpy( psz_foo2, psz_foo, 4 * i_level );
486     psz_foo2[ 4 * i_level ] = '+';
487     psz_foo2[ 4 * i_level + 1 ] = ' ';
488     strcpy( &psz_foo2[ 4 * i_level + 2 ], psz_format );
489     __msg_GenericVa( VLC_OBJECT(&demuxer), VLC_MSG_DBG, "mkv", psz_foo2, args );
490     free( psz_foo2 );
491     va_end( args );
492 }
493     
494 /*****************************************************************************
495  * Stream managment
496  *****************************************************************************/
497 class vlc_stream_io_callback: public IOCallback
498 {
499   private:
500     stream_t       *s;
501     vlc_bool_t     mb_eof;
502
503   public:
504     vlc_stream_io_callback( stream_t * );
505
506     virtual uint32   read            ( void *p_buffer, size_t i_size);
507     virtual void     setFilePointer  ( int64_t i_offset, seek_mode mode = seek_beginning );
508     virtual size_t   write           ( const void *p_buffer, size_t i_size);
509     virtual uint64   getFilePointer  ( void );
510     virtual void     close           ( void );
511 };
512
513 /*****************************************************************************
514  * Ebml Stream parser
515  *****************************************************************************/
516 class EbmlParser
517 {
518   public:
519     EbmlParser( EbmlStream *es, EbmlElement *el_start, demux_t *p_demux );
520     virtual ~EbmlParser( void );
521
522     void Up( void );
523     void Down( void );
524     void Reset( demux_t *p_demux );
525     EbmlElement *Get( void );
526     void        Keep( void );
527
528     int GetLevel( void );
529
530   private:
531     EbmlStream  *m_es;
532     int         mi_level;
533     EbmlElement *m_el[10];
534     int64_t      mi_remain_size[10];
535
536     EbmlElement *m_got;
537
538     int         mi_user_level;
539     vlc_bool_t  mb_keep;
540     vlc_bool_t  mb_dummy;
541 };
542
543
544 /*****************************************************************************
545  * Some functions to manipulate memory
546  *****************************************************************************/
547 #define GetFOURCC( p )  __GetFOURCC( (uint8_t*)p )
548 static vlc_fourcc_t __GetFOURCC( uint8_t *p )
549 {
550     return VLC_FOURCC( p[0], p[1], p[2], p[3] );
551 }
552
553 /*****************************************************************************
554  * definitions of structures and functions used by this plugins
555  *****************************************************************************/
556 typedef struct
557 {
558     vlc_bool_t   b_default;
559     vlc_bool_t   b_enabled;
560     unsigned int i_number;
561
562     int          i_extra_data;
563     uint8_t      *p_extra_data;
564
565     char         *psz_codec;
566
567     uint64_t     i_default_duration;
568     float        f_timecodescale;
569
570     /* video */
571     es_format_t fmt;
572     float       f_fps;
573     es_out_id_t *p_es;
574
575     vlc_bool_t      b_inited;
576     /* data to be send first */
577     int             i_data_init;
578     uint8_t         *p_data_init;
579
580     /* hack : it's for seek */
581     vlc_bool_t      b_search_keyframe;
582     vlc_bool_t      b_silent;
583
584     /* informative */
585     char         *psz_codec_name;
586     char         *psz_codec_settings;
587     char         *psz_codec_info_url;
588     char         *psz_codec_download_url;
589     
590     /* encryption/compression */
591     int           i_compression_type;
592
593 } mkv_track_t;
594
595 typedef struct
596 {
597     int     i_track;
598     int     i_block_number;
599
600     int64_t i_position;
601     int64_t i_time;
602
603     vlc_bool_t b_key;
604 } mkv_index_t;
605
606 class demux_sys_t;
607
608 const binary MATROSKA_DVD_LEVEL_SS   = 0x30;
609 const binary MATROSKA_DVD_LEVEL_LU   = 0x2A;
610 const binary MATROSKA_DVD_LEVEL_TT   = 0x28;
611 const binary MATROSKA_DVD_LEVEL_PGC  = 0x20;
612 const binary MATROSKA_DVD_LEVEL_PG   = 0x18;
613 const binary MATROSKA_DVD_LEVEL_PTT  = 0x10;
614 const binary MATROSKA_DVD_LEVEL_CN   = 0x08;
615
616 class chapter_codec_cmds_c
617 {
618 public:
619     chapter_codec_cmds_c( demux_sys_t & demuxer, int codec_id = -1)
620     :i_codec_id( codec_id )
621     ,sys( demuxer )
622     {}
623         
624     virtual ~chapter_codec_cmds_c() {}
625
626     void SetPrivate( const KaxChapterProcessPrivate & private_data )
627     {
628         m_private_data = *( new KaxChapterProcessPrivate( private_data ) );
629     }
630
631     void AddCommand( const KaxChapterProcessCommand & command );
632     
633     /// \return wether the codec has seeked in the files or not
634     virtual bool Enter() { return false; }
635     virtual bool Leave() { return false; }
636     virtual std::string GetCodecName( bool f_for_title = false ) const { return ""; }
637     virtual int16 GetTitleNumber() { return -1; }
638
639     KaxChapterProcessPrivate m_private_data;
640
641 protected:
642     std::vector<KaxChapterProcessData> enter_cmds;
643     std::vector<KaxChapterProcessData> during_cmds;
644     std::vector<KaxChapterProcessData> leave_cmds;
645
646     int i_codec_id;
647     demux_sys_t & sys;
648 };
649
650 class dvd_command_interpretor_c
651 {
652 public:
653     dvd_command_interpretor_c( demux_sys_t & demuxer )
654     :sys( demuxer )
655     {
656         memset( p_PRMs, 0, sizeof(p_PRMs) );
657         p_PRMs[ 0x80 + 1 ] = 15;
658         p_PRMs[ 0x80 + 2 ] = 62;
659         p_PRMs[ 0x80 + 3 ] = 1;
660         p_PRMs[ 0x80 + 4 ] = 1;
661         p_PRMs[ 0x80 + 7 ] = 1;
662         p_PRMs[ 0x80 + 8 ] = 1;
663         p_PRMs[ 0x80 + 16 ] = 0xFFFFu;
664         p_PRMs[ 0x80 + 18 ] = 0xFFFFu;
665     }
666     
667     bool Interpret( const binary * p_command, size_t i_size = 8 );
668     
669     uint16 GetPRM( size_t index ) const
670     {
671         if ( index < 256 )
672             return p_PRMs[ index ];
673         else return 0;
674     }
675
676     uint16 GetGPRM( size_t index ) const
677     {
678         if ( index >= 0 && index < 16 )
679             return p_PRMs[ index ];
680         else return 0;
681     }
682
683     uint16 GetSPRM( size_t index ) const
684     {
685         // 21,22,23 reserved for future use
686         if ( index >= 0x80 && index < 0x95 )
687             return p_PRMs[ index ];
688         else return 0;
689     }
690
691     bool SetPRM( size_t index, uint16 value )
692     {
693         if ( index >= 0 && index < 16 )
694         {
695             p_PRMs[ index ] = value;
696             return true;
697         }
698         return false;
699     }
700     
701     bool SetGPRM( size_t index, uint16 value )
702     {
703         if ( index >= 0 && index < 16 )
704         {
705             p_PRMs[ index ] = value;
706             return true;
707         }
708         return false;
709     }
710
711     bool SetSPRM( size_t index, uint16 value )
712     {
713         if ( index > 0x80 && index <= 0x8D && index != 0x8C )
714         {
715             p_PRMs[ index ] = value;
716             return true;
717         }
718         return false;
719     }
720
721 protected:
722     std::string GetRegTypeName( bool b_value, uint16 value ) const
723     {
724         std::string result;
725         char s_value[6], s_reg_value[6];
726         sprintf( s_value, "%.5d", value );
727
728         if ( b_value )
729         {
730             result = "value (";
731             result += s_value;
732             result += ")";
733         }
734         else if ( value < 0x80 )
735         {
736             sprintf( s_reg_value, "%.5d", GetPRM( value ) );
737             result = "GPreg[";
738             result += s_value;
739             result += "] (";
740             result += s_reg_value;
741             result += ")";
742         }
743         else
744         {
745             sprintf( s_reg_value, "%.5d", GetPRM( value ) );
746             result = "SPreg[";
747             result += s_value;
748             result += "] (";
749             result += s_reg_value;
750             result += ")";
751         }
752         return result;
753     }
754
755     uint16       p_PRMs[256];
756     demux_sys_t  & sys;
757     
758     // DVD command IDs
759
760     // Tests
761     // wether the test has to be positive or not
762     static const uint16 CMD_DVD_IF_NOT              = 0x10;
763     // wether it's a comparison on the value or register
764     static const uint16 CMD_DVD_TEST_VALUE          = 0x80;
765     static const uint16 CMD_DVD_IF_GPREG_AND        = (0 << 5);
766     static const uint16 CMD_DVD_IF_GPREG_EQUAL      = (1 << 5);
767     static const uint16 CMD_DVD_IF_GPREG_SUP_EQUAL  = (2 << 5);
768     static const uint16 CMD_DVD_IF_GPREG_INF        = (3 << 5);
769     
770     static const uint16 CMD_DVD_NOP                    = 0x0000;
771     static const uint16 CMD_DVD_GOTO_LINE              = 0x0001;
772     static const uint16 CMD_DVD_BREAK                  = 0x0002;
773     // Links
774     static const uint16 CMD_DVD_NOP2                   = 0x2001;
775     static const uint16 CMD_DVD_LINKPGCN               = 0x2004;
776     static const uint16 CMD_DVD_LINKPGN                = 0x2006;
777     static const uint16 CMD_DVD_LINKCN                 = 0x2007;
778     static const uint16 CMD_DVD_JUMP_TT                = 0x3002;
779     static const uint16 CMD_DVD_JUMPVTS_TT             = 0x3003;
780     static const uint16 CMD_DVD_JUMPVTS_PTT            = 0x3005;
781     static const uint16 CMD_DVD_JUMP_SS                = 0x3006;
782     static const uint16 CMD_DVD_CALLSS_VTSM1           = 0x3008;
783     //
784     static const uint16 CMD_DVD_SET_HL_BTNN2           = 0x4600;
785     static const uint16 CMD_DVD_SET_HL_BTNN_LINKPGCN1  = 0x4604;
786     static const uint16 CMD_DVD_SET_STREAM             = 0x5100;
787     static const uint16 CMD_DVD_SET_GPRMMD             = 0x5300;
788     static const uint16 CMD_DVD_SET_HL_BTNN1           = 0x5600;
789     static const uint16 CMD_DVD_SET_HL_BTNN_LINKPGCN2  = 0x5604;
790     static const uint16 CMD_DVD_SET_HL_BTNN_LINKCN     = 0x5607;
791     // Operations
792     static const uint16 CMD_DVD_MOV_SPREG_PREG         = 0x6100;
793     static const uint16 CMD_DVD_GPREG_MOV_VALUE        = 0x7100;
794     static const uint16 CMD_DVD_SUB_GPREG              = 0x7400;
795     static const uint16 CMD_DVD_MULT_GPREG             = 0x7500;
796     static const uint16 CMD_DVD_GPREG_DIV_VALUE        = 0x7600;
797     static const uint16 CMD_DVD_GPREG_AND_VALUE        = 0x7900;
798     
799     // callbacks when browsing inside CodecPrivate
800     static bool MatchIsDomain     ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
801     static bool MatchVTSNumber    ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
802     static bool MatchTitleNumber  ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
803     static bool MatchPgcType      ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
804     static bool MatchPgcNumber    ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
805     static bool MatchChapterNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
806     static bool MatchCellNumber   ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
807 };
808
809 class dvd_chapter_codec_c : public chapter_codec_cmds_c
810 {
811 public:
812     dvd_chapter_codec_c( demux_sys_t & sys )
813     :chapter_codec_cmds_c( sys, 1 )
814     {}
815
816     bool Enter();
817     bool Leave();
818     std::string GetCodecName( bool f_for_title = false ) const;
819     int16 GetTitleNumber();
820 };
821
822 class matroska_script_interpretor_c
823 {
824 public:
825     matroska_script_interpretor_c( demux_sys_t & demuxer )
826     :sys( demuxer )
827     {}
828
829     bool Interpret( const binary * p_command, size_t i_size );
830     
831     // DVD command IDs
832     static const std::string CMD_MS_GOTO_AND_PLAY;
833     
834 protected:
835     demux_sys_t  & sys;
836 };
837
838 const std::string matroska_script_interpretor_c::CMD_MS_GOTO_AND_PLAY = "GotoAndPlay";
839
840
841 class matroska_script_codec_c : public chapter_codec_cmds_c
842 {
843 public:
844     matroska_script_codec_c( demux_sys_t & sys )
845     :chapter_codec_cmds_c( sys, 0 )
846     ,interpretor( sys )
847     {}
848
849     bool Enter();
850     bool Leave();
851
852 protected:
853     matroska_script_interpretor_c interpretor; 
854 };
855
856 class chapter_translation_c
857 {
858 public:
859     KaxChapterTranslateID  translated;
860     unsigned int           codec_id;
861     std::vector<uint64_t>  editions;
862 };
863
864 class chapter_item_c
865 {
866 public:
867     chapter_item_c()
868     :i_start_time(0)
869     ,i_end_time(-1)
870     ,i_user_start_time(-1)
871     ,i_user_end_time(-1)
872     ,i_seekpoint_num(-1)
873     ,b_display_seekpoint(true)
874     ,b_user_display(false)
875     ,psz_parent(NULL)
876     ,b_is_leaving(false)
877     {}
878
879     virtual ~chapter_item_c()
880     {
881         std::vector<chapter_codec_cmds_c*>::iterator index = codecs.begin();
882         while ( index != codecs.end() )
883         {
884             delete (*index);
885             index++;
886         }
887         std::vector<chapter_item_c*>::iterator index_ = sub_chapters.begin();
888         while ( index_ != sub_chapters.end() )
889         {
890             delete (*index_);
891             index_++;
892         }
893     }
894
895     int64_t RefreshChapters( bool b_ordered, int64_t i_prev_user_time );
896     int PublishChapters( input_title_t & title, int & i_user_chapters, int i_level = 0 );
897     chapter_item_c * FindTimecode( mtime_t i_timecode );
898     void Append( const chapter_item_c & edition );
899     chapter_item_c * FindChapter( int64_t i_find_uid );
900     virtual chapter_item_c *BrowseCodecPrivate( unsigned int codec_id, 
901                                     bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ), 
902                                     const void *p_cookie, 
903                                     size_t i_cookie_size );
904     std::string                 GetCodecName( bool f_for_title = false ) const;
905     bool                        ParentOf( const chapter_item_c & item ) const;
906     int16                       GetTitleNumber( ) const;
907     
908     int64_t                     i_start_time, i_end_time;
909     int64_t                     i_user_start_time, i_user_end_time; /* the time in the stream when an edition is ordered */
910     std::vector<chapter_item_c*> sub_chapters;
911     int                         i_seekpoint_num;
912     int64_t                     i_uid;
913     bool                        b_display_seekpoint;
914     bool                        b_user_display;
915     std::string                 psz_name;
916     chapter_item_c              *psz_parent;
917     bool                        b_is_leaving;
918     
919     std::vector<chapter_codec_cmds_c*> codecs;
920
921     bool operator<( const chapter_item_c & item ) const
922     {
923         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) );
924     }
925
926     bool Enter( bool b_do_subchapters );
927     bool Leave( bool b_do_subchapters );
928     bool EnterAndLeave( chapter_item_c *p_item );
929 };
930
931 class chapter_edition_c : public chapter_item_c
932 {
933 public:
934     chapter_edition_c()
935     :b_ordered(false)
936     {}
937     
938     void RefreshChapters( );
939     mtime_t Duration() const;
940     std::string GetMainName() const;
941     
942     bool                        b_ordered;
943 };
944
945 class matroska_segment_c
946 {
947 public:
948     matroska_segment_c( demux_sys_t & demuxer, EbmlStream & estream )
949         :segment(NULL)
950         ,es(estream)
951         ,i_timescale(MKVD_TIMECODESCALE)
952         ,i_duration(-1)
953         ,i_start_time(0)
954         ,i_cues_position(-1)
955         ,i_chapters_position(-1)
956         ,i_tags_position(-1)
957         ,cluster(NULL)
958         ,i_start_pos(0)
959         ,b_cues(VLC_FALSE)
960         ,i_index(0)
961         ,i_index_max(1024)
962         ,psz_muxing_application(NULL)
963         ,psz_writing_application(NULL)
964         ,psz_segment_filename(NULL)
965         ,psz_title(NULL)
966         ,psz_date_utc(NULL)
967         ,i_default_edition(0)
968         ,sys(demuxer)
969         ,ep(NULL)
970         ,b_preloaded(false)
971     {
972         index = (mkv_index_t*)malloc( sizeof( mkv_index_t ) * i_index_max );
973     }
974
975     virtual ~matroska_segment_c()
976     {
977         for( size_t i_track = 0; i_track < tracks.size(); i_track++ )
978         {
979             if( tracks[i_track]->fmt.psz_description )
980             {
981                 free( tracks[i_track]->fmt.psz_description );
982             }
983             if( tracks[i_track]->psz_codec )
984             {
985                 free( tracks[i_track]->psz_codec );
986             }
987             if( tracks[i_track]->fmt.psz_language )
988             {
989                 free( tracks[i_track]->fmt.psz_language );
990             }
991             delete tracks[i_track];
992         }
993         
994         if( psz_writing_application )
995         {
996             free( psz_writing_application );
997         }
998         if( psz_muxing_application )
999         {
1000             free( psz_muxing_application );
1001         }
1002         if( psz_segment_filename )
1003         {
1004             free( psz_segment_filename );
1005         }
1006         if( psz_title )
1007         {
1008             free( psz_title );
1009         }
1010         if( psz_date_utc )
1011         {
1012             free( psz_date_utc );
1013         }
1014         if ( index )
1015             free( index );
1016
1017         delete ep;
1018
1019         std::vector<chapter_edition_c*>::iterator index = stored_editions.begin();
1020         while ( index != stored_editions.end() )
1021         {
1022             delete (*index);
1023             index++;
1024         }
1025     }
1026
1027     KaxSegment              *segment;
1028     EbmlStream              & es;
1029
1030     /* time scale */
1031     uint64_t                i_timescale;
1032
1033     /* duration of the segment */
1034     mtime_t                 i_duration;
1035     mtime_t                 i_start_time;
1036
1037     /* all tracks */
1038     std::vector<mkv_track_t*> tracks;
1039
1040     /* from seekhead */
1041     int64_t                 i_cues_position;
1042     int64_t                 i_chapters_position;
1043     int64_t                 i_tags_position;
1044
1045     KaxCluster              *cluster;
1046     int64_t                 i_start_pos;
1047     KaxSegmentUID           segment_uid;
1048     KaxPrevUID              prev_segment_uid;
1049     KaxNextUID              next_segment_uid;
1050
1051     vlc_bool_t              b_cues;
1052     int                     i_index;
1053     int                     i_index_max;
1054     mkv_index_t             *index;
1055
1056     /* info */
1057     char                    *psz_muxing_application;
1058     char                    *psz_writing_application;
1059     char                    *psz_segment_filename;
1060     char                    *psz_title;
1061     char                    *psz_date_utc;
1062
1063     /* !!!!! GCC 3.3 bug on Darwin !!!!! */
1064     /* when you remove this variable the compiler issues an atomicity error */
1065     /* this variable only works when using std::vector<chapter_edition_c> */
1066     std::vector<chapter_edition_c*> stored_editions;
1067     int                             i_default_edition;
1068
1069     std::vector<chapter_translation_c> translations;
1070     std::vector<KaxSegmentFamily>  families;
1071     
1072     demux_sys_t                    & sys;
1073     EbmlParser                     *ep;
1074     bool                           b_preloaded;
1075
1076     bool Preload( );
1077     bool PreloadFamily( const matroska_segment_c & segment );
1078     void ParseInfo( KaxInfo *info );
1079     void ParseChapters( KaxChapters *chapters );
1080     void ParseSeekHead( KaxSeekHead *seekhead );
1081     void ParseTracks( KaxTracks *tracks );
1082     void ParseChapterAtom( int i_level, KaxChapterAtom *ca, chapter_item_c & chapters );
1083     void ParseTrackEntry( KaxTrackEntry *m );
1084     void ParseCluster( );
1085     void IndexAppendCluster( KaxCluster *cluster );
1086     void LoadCues( );
1087     void LoadTags( );
1088     void InformationCreate( );
1089     void Seek( mtime_t i_date, mtime_t i_time_offset );
1090     int BlockGet( KaxBlock **pp_block, int64_t *pi_ref1, int64_t *pi_ref2, int64_t *pi_duration );
1091     bool Select( mtime_t i_start_time );
1092     void UnSelect( );
1093
1094     static bool CompareSegmentUIDs( const matroska_segment_c * item_a, const matroska_segment_c * item_b );
1095 };
1096
1097 // class holding hard-linked segment together in the playback order
1098 class virtual_segment_c
1099 {
1100 public:
1101     virtual_segment_c( matroska_segment_c *p_segment )
1102         :p_editions(NULL)
1103         ,i_sys_title(0)
1104         ,i_current_segment(0)
1105         ,i_current_edition(-1)
1106         ,psz_current_chapter(NULL)
1107     {
1108         linked_segments.push_back( p_segment );
1109
1110         AppendUID( p_segment->segment_uid );
1111         AppendUID( p_segment->prev_segment_uid );
1112         AppendUID( p_segment->next_segment_uid );
1113     }
1114
1115     void Sort();
1116     size_t AddSegment( matroska_segment_c *p_segment );
1117     void PreloadLinked( );
1118     mtime_t Duration( ) const;
1119     void LoadCues( );
1120     void Seek( demux_t & demuxer, mtime_t i_date, mtime_t i_time_offset, chapter_item_c *psz_chapter );
1121
1122     inline chapter_edition_c *Edition()
1123     {
1124         if ( i_current_edition >= 0 && size_t(i_current_edition) < p_editions->size() )
1125             return (*p_editions)[i_current_edition];
1126         return NULL;
1127     }
1128
1129     matroska_segment_c * Segment() const
1130     {
1131         if ( linked_segments.size() == 0 || i_current_segment >= linked_segments.size() )
1132             return NULL;
1133         return linked_segments[i_current_segment];
1134     }
1135
1136     inline chapter_item_c *CurrentChapter() {
1137         return psz_current_chapter;
1138     }
1139
1140     bool SelectNext()
1141     {
1142         if ( i_current_segment < linked_segments.size()-1 )
1143         {
1144             i_current_segment++;
1145             return true;
1146         }
1147         return false;
1148     }
1149
1150     bool FindUID( KaxSegmentUID & uid ) const
1151     {
1152         for ( size_t i=0; i<linked_uids.size(); i++ )
1153         {
1154             if ( linked_uids[i] == uid )
1155                 return true;
1156         }
1157         return false;
1158     }
1159
1160     bool UpdateCurrentToChapter( demux_t & demux );
1161     void PrepareChapters( );
1162
1163     chapter_item_c *BrowseCodecPrivate( unsigned int codec_id, 
1164                                         bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ), 
1165                                         const void *p_cookie, 
1166                                         size_t i_cookie_size );
1167     chapter_item_c *FindChapter( int64_t i_find_uid );
1168
1169     std::vector<chapter_edition_c*>  *p_editions;
1170     int                              i_sys_title;
1171
1172 protected:
1173     std::vector<matroska_segment_c*> linked_segments;
1174     std::vector<KaxSegmentUID>       linked_uids;
1175     size_t                           i_current_segment;
1176
1177     int                              i_current_edition;
1178     chapter_item_c                   *psz_current_chapter;
1179
1180     void                             AppendUID( const EbmlBinary & UID );
1181 };
1182
1183 class matroska_stream_c
1184 {
1185 public:
1186     matroska_stream_c( demux_sys_t & demuxer )
1187         :p_in(NULL)
1188         ,p_es(NULL)
1189         ,sys(demuxer)
1190     {}
1191
1192     virtual ~matroska_stream_c()
1193     {
1194         delete p_in;
1195         delete p_es;
1196     }
1197
1198     IOCallback         *p_in;
1199     EbmlStream         *p_es;
1200
1201     std::vector<matroska_segment_c*> segments;
1202
1203     demux_sys_t                      & sys;
1204 };
1205
1206 typedef struct
1207 {
1208     VLC_COMMON_MEMBERS
1209
1210     demux_t        *p_demux;
1211     vlc_mutex_t     lock;
1212
1213     vlc_bool_t      b_moved;
1214     vlc_bool_t      b_clicked;
1215     vlc_bool_t      b_key;
1216
1217 } event_thread_t;
1218
1219 class demux_sys_t
1220 {
1221 public:
1222     demux_sys_t( demux_t & demux )
1223         :demuxer(demux)
1224         ,i_pts(0)
1225         ,i_start_pts(0)
1226         ,i_chapter_time(0)
1227         ,meta(NULL)
1228         ,i_current_title(0)
1229         ,p_current_segment(NULL)
1230         ,dvd_interpretor( *this )
1231         ,f_duration(-1.0)
1232         ,b_ui_hooked(false)
1233         ,p_input(NULL)
1234         ,b_pci_packet_set(false)
1235         ,i_curr_button(0)
1236         ,p_ev(NULL)
1237     {
1238         vlc_mutex_init( &demuxer, &lock_demuxer );
1239         StartUiThread();
1240     }
1241
1242     virtual ~demux_sys_t()
1243     {
1244         StopUiThread();
1245         size_t i;
1246         for ( i=0; i<streams.size(); i++ )
1247             delete streams[i];
1248         for ( i=0; i<opened_segments.size(); i++ )
1249             delete opened_segments[i];
1250         for ( i=0; i<used_segments.size(); i++ )
1251             delete used_segments[i];
1252         vlc_mutex_destroy( &lock_demuxer );
1253     }
1254
1255     /* current data */
1256     demux_t                 & demuxer;
1257
1258     mtime_t                 i_pts;
1259     mtime_t                 i_start_pts;
1260     mtime_t                 i_chapter_time;
1261
1262     vlc_meta_t              *meta;
1263
1264     std::vector<input_title_t>       titles; // matroska editions
1265     size_t                           i_current_title;
1266
1267     std::vector<matroska_stream_c*>  streams;
1268     std::vector<matroska_segment_c*> opened_segments;
1269     std::vector<virtual_segment_c*>  used_segments;
1270     virtual_segment_c                *p_current_segment;
1271
1272     dvd_command_interpretor_c        dvd_interpretor;
1273
1274     /* duration of the stream */
1275     float                   f_duration;
1276
1277     matroska_segment_c *FindSegment( const EbmlBinary & uid ) const;
1278     chapter_item_c *BrowseCodecPrivate( unsigned int codec_id, 
1279                                         bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ), 
1280                                         const void *p_cookie, 
1281                                         size_t i_cookie_size, 
1282                                         virtual_segment_c * & p_segment_found );
1283     chapter_item_c *FindChapter( int64_t i_find_uid, virtual_segment_c * & p_segment_found );
1284
1285     void PreloadFamily( const matroska_segment_c & of_segment );
1286     void PreloadLinked( matroska_segment_c *p_segment );
1287     bool PreparePlayback( virtual_segment_c *p_new_segment );
1288     matroska_stream_c *AnalyseAllSegmentsFound( EbmlStream *p_estream );
1289
1290     void StartUiThread();
1291     void StopUiThread();
1292     bool b_ui_hooked;
1293     inline void SwapButtons();
1294
1295     /* for spu variables */
1296     input_thread_t *p_input;
1297     pci_t          pci_packet;
1298     bool           b_pci_packet_set;
1299     int16          i_curr_button;
1300     uint8_t        alpha[4];
1301     vlc_mutex_t    lock_demuxer;
1302
1303     /* event */
1304     event_thread_t *p_ev;
1305     static int EventThread( vlc_object_t *p_this );
1306     static int EventMouse( vlc_object_t *p_this, char const *psz_var,
1307                        vlc_value_t oldval, vlc_value_t newval, void *p_data );
1308     static int EventKey( vlc_object_t *p_this, char const *psz_var,
1309                      vlc_value_t oldval, vlc_value_t newval, void *p_data );
1310
1311
1312
1313 protected:
1314     virtual_segment_c *VirtualFromSegments( matroska_segment_c *p_segment ) const;
1315     bool IsUsedSegment( matroska_segment_c &p_segment ) const;
1316 };
1317
1318 static int  Demux  ( demux_t * );
1319 static int  Control( demux_t *, int, va_list );
1320 static void Seek   ( demux_t *, mtime_t i_date, double f_percent, chapter_item_c *psz_chapter );
1321
1322 #define MKV_IS_ID( el, C ) ( EbmlId( (*el) ) == C::ClassInfos.GlobalId )
1323
1324 static char *UTF8ToStr          ( const UTFstring &u );
1325
1326 /*****************************************************************************
1327  * Open: initializes matroska demux structures
1328  *****************************************************************************/
1329 static int Open( vlc_object_t * p_this )
1330 {
1331     demux_t            *p_demux = (demux_t*)p_this;
1332     demux_sys_t        *p_sys;
1333     matroska_stream_c  *p_stream;
1334     matroska_segment_c *p_segment;
1335     uint8_t            *p_peek;
1336     std::string        s_path, s_filename;
1337     vlc_stream_io_callback *p_io_callback;
1338     EbmlStream         *p_io_stream;
1339
1340     /* peek the begining */
1341     if( stream_Peek( p_demux->s, &p_peek, 4 ) < 4 ) return VLC_EGENERIC;
1342
1343     /* is a valid file */
1344     if( p_peek[0] != 0x1a || p_peek[1] != 0x45 ||
1345         p_peek[2] != 0xdf || p_peek[3] != 0xa3 ) return VLC_EGENERIC;
1346
1347     /* Set the demux function */
1348     p_demux->pf_demux   = Demux;
1349     p_demux->pf_control = Control;
1350     p_demux->p_sys      = p_sys = new demux_sys_t( *p_demux );
1351
1352     p_io_callback = new vlc_stream_io_callback( p_demux->s );
1353     p_io_stream = new EbmlStream( *p_io_callback );
1354
1355     if( p_io_stream == NULL )
1356     {
1357         msg_Err( p_demux, "failed to create EbmlStream" );
1358         delete p_io_callback;
1359         delete p_sys;
1360         return VLC_EGENERIC;
1361     }
1362
1363     p_stream = p_sys->AnalyseAllSegmentsFound( p_io_stream );
1364     if( p_stream == NULL )
1365     {
1366         msg_Err( p_demux, "cannot find KaxSegment" );
1367         goto error;
1368     }
1369     p_sys->streams.push_back( p_stream );
1370
1371     p_stream->p_in = p_io_callback;
1372     p_stream->p_es = p_io_stream;
1373
1374     for (size_t i=0; i<p_stream->segments.size(); i++)
1375     {
1376         p_stream->segments[i]->Preload();
1377     }
1378
1379     p_segment = p_stream->segments[0];
1380     if( p_segment->cluster != NULL )
1381     {
1382         msg_Warn( p_demux, "cannot find any cluster, damaged file ?" );
1383
1384         // reset the stream reading to the first cluster of the segment used
1385         p_stream->p_in->setFilePointer( p_segment->cluster->GetElementPosition() );
1386     }
1387
1388     /* get the files from the same dir from the same family (based on p_demux->psz_path) */
1389     if (p_demux->psz_path[0] != '\0' && !strcmp(p_demux->psz_access, ""))
1390     {
1391         // assume it's a regular file
1392         // get the directory path
1393         s_path = p_demux->psz_path;
1394         if (s_path.at(s_path.length() - 1) == DIRECTORY_SEPARATOR)
1395         {
1396             s_path = s_path.substr(0,s_path.length()-1);
1397         }
1398         else
1399         {
1400             if (s_path.find_last_of(DIRECTORY_SEPARATOR) > 0) 
1401             {
1402                 s_path = s_path.substr(0,s_path.find_last_of(DIRECTORY_SEPARATOR));
1403             }
1404         }
1405
1406         struct dirent *p_file_item;
1407         DIR *p_src_dir = opendir(s_path.c_str());
1408
1409         if (p_src_dir != NULL)
1410         {
1411             while ((p_file_item = (dirent *) readdir(p_src_dir)))
1412             {
1413                 if (strlen(p_file_item->d_name) > 4)
1414                 {
1415                     s_filename = s_path + DIRECTORY_SEPARATOR + p_file_item->d_name;
1416
1417                     if (!s_filename.compare(p_demux->psz_path))
1418                         continue; // don't reuse the original opened file
1419
1420 #if defined(__GNUC__) && (__GNUC__ < 3)
1421                     if (!s_filename.compare("mkv", s_filename.length() - 3, 3) || 
1422                         !s_filename.compare("mka", s_filename.length() - 3, 3))
1423 #else
1424                     if (!s_filename.compare(s_filename.length() - 3, 3, "mkv") || 
1425                         !s_filename.compare(s_filename.length() - 3, 3, "mka"))
1426 #endif
1427                     {
1428                         // test wether this file belongs to the our family
1429                         StdIOCallback *p_file_io = new StdIOCallback(s_filename.c_str(), MODE_READ);
1430                         EbmlStream *p_estream = new EbmlStream(*p_file_io);
1431
1432                         p_stream = p_sys->AnalyseAllSegmentsFound( p_estream );
1433                         if ( p_stream == NULL )
1434                         {
1435                             msg_Dbg( p_demux, "the file '%s' will not be used", s_filename.c_str() );
1436                             delete p_estream;
1437                             delete p_file_io;
1438                         }
1439                         else
1440                         {
1441                             p_stream->p_in = p_file_io;
1442                             p_stream->p_es = p_estream;
1443                             p_sys->streams.push_back( p_stream );
1444                         }
1445                     }
1446                 }
1447             }
1448             closedir( p_src_dir );
1449         }
1450     }
1451
1452     p_sys->PreloadFamily( *p_segment );
1453     p_sys->PreloadLinked( p_segment );
1454     if ( !p_sys->PreparePlayback( NULL ) )
1455     {
1456         msg_Err( p_demux, "cannot use the segment" );
1457         goto error;
1458     }
1459     
1460     return VLC_SUCCESS;
1461
1462 error:
1463     delete p_sys;
1464     return VLC_EGENERIC;
1465 }
1466
1467 /*****************************************************************************
1468  * Close: frees unused data
1469  *****************************************************************************/
1470 static void Close( vlc_object_t *p_this )
1471 {
1472     demux_t     *p_demux = (demux_t*)p_this;
1473     demux_sys_t *p_sys   = p_demux->p_sys;
1474
1475     delete p_sys;
1476 }
1477
1478 /*****************************************************************************
1479  * Control:
1480  *****************************************************************************/
1481 static int Control( demux_t *p_demux, int i_query, va_list args )
1482 {
1483     demux_sys_t        *p_sys = p_demux->p_sys;
1484     int64_t     *pi64;
1485     double      *pf, f;
1486     int         i_skp;
1487     size_t      i_idx;
1488
1489     vlc_meta_t **pp_meta;
1490
1491     switch( i_query )
1492     {
1493         case DEMUX_GET_META:
1494             pp_meta = (vlc_meta_t**)va_arg( args, vlc_meta_t** );
1495             *pp_meta = vlc_meta_Duplicate( p_sys->meta );
1496             return VLC_SUCCESS;
1497
1498         case DEMUX_GET_LENGTH:
1499             pi64 = (int64_t*)va_arg( args, int64_t * );
1500             if( p_sys->f_duration > 0.0 )
1501             {
1502                 *pi64 = (int64_t)(p_sys->f_duration * 1000);
1503                 return VLC_SUCCESS;
1504             }
1505             return VLC_EGENERIC;
1506
1507         case DEMUX_GET_POSITION:
1508             pf = (double*)va_arg( args, double * );
1509             if ( p_sys->f_duration > 0.0 )
1510                 *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);
1511             return VLC_SUCCESS;
1512
1513         case DEMUX_SET_POSITION:
1514             f = (double)va_arg( args, double );
1515             Seek( p_demux, -1, f, NULL );
1516             return VLC_SUCCESS;
1517
1518         case DEMUX_GET_TIME:
1519             pi64 = (int64_t*)va_arg( args, int64_t * );
1520             *pi64 = p_sys->i_pts;
1521             return VLC_SUCCESS;
1522
1523         case DEMUX_GET_TITLE_INFO:
1524             if( p_sys->titles.size() )
1525             {
1526                 input_title_t ***ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
1527                 int *pi_int    = (int*)va_arg( args, int* );
1528
1529                 *pi_int = p_sys->titles.size();
1530                 *ppp_title = (input_title_t**)malloc( sizeof( input_title_t**) * p_sys->titles.size() );
1531
1532                 for( size_t i = 0; i < p_sys->titles.size(); i++ )
1533                 {
1534                     (*ppp_title)[i] = vlc_input_title_Duplicate( &p_sys->titles[i] );
1535                 }
1536
1537                 return VLC_SUCCESS;
1538             }
1539             return VLC_EGENERIC;
1540
1541         case DEMUX_SET_TITLE:
1542             /* TODO handle editions as titles */
1543             i_idx = (int)va_arg( args, int );
1544             if( i_idx < p_sys->used_segments.size() )
1545             {
1546                 p_sys->PreparePlayback( p_sys->used_segments[i_idx] );
1547                 return VLC_SUCCESS;
1548             }
1549             return VLC_EGENERIC;
1550
1551         case DEMUX_SET_SEEKPOINT:
1552             i_skp = (int)va_arg( args, int );
1553
1554             // TODO change the way it works with the << & >> buttons on the UI (+1/-1 instead of a number)
1555             if( p_sys->titles.size() && i_skp < p_sys->titles[p_sys->i_current_title].i_seekpoint)
1556             {
1557                 Seek( p_demux, (int64_t)p_sys->titles[p_sys->i_current_title].seekpoint[i_skp]->i_time_offset, -1, NULL);
1558                 p_demux->info.i_seekpoint |= INPUT_UPDATE_SEEKPOINT;
1559                 p_demux->info.i_seekpoint = i_skp;
1560                 return VLC_SUCCESS;
1561             }
1562             return VLC_EGENERIC;
1563
1564         case DEMUX_SET_TIME:
1565         case DEMUX_GET_FPS:
1566         default:
1567             return VLC_EGENERIC;
1568     }
1569 }
1570
1571 int matroska_segment_c::BlockGet( KaxBlock **pp_block, int64_t *pi_ref1, int64_t *pi_ref2, int64_t *pi_duration )
1572 {
1573     *pp_block = NULL;
1574     *pi_ref1  = -1;
1575     *pi_ref2  = -1;
1576
1577     for( ;; )
1578     {
1579         EbmlElement *el;
1580         int         i_level;
1581
1582         if ( ep == NULL )
1583             return VLC_EGENERIC;
1584
1585         el = ep->Get();
1586         i_level = ep->GetLevel();
1587
1588         if( el == NULL && *pp_block != NULL )
1589         {
1590             /* update the index */
1591 #define idx index[i_index - 1]
1592             if( i_index > 0 && idx.i_time == -1 )
1593             {
1594                 idx.i_time        = (*pp_block)->GlobalTimecode() / (mtime_t)1000;
1595                 idx.b_key         = *pi_ref1 == -1 ? VLC_TRUE : VLC_FALSE;
1596             }
1597 #undef idx
1598             return VLC_SUCCESS;
1599         }
1600
1601         if( el == NULL )
1602         {
1603             if( ep->GetLevel() > 1 )
1604             {
1605                 ep->Up();
1606                 continue;
1607             }
1608             msg_Warn( &sys.demuxer, "EOF" );
1609             return VLC_EGENERIC;
1610         }
1611
1612         /* do parsing */
1613         switch ( i_level )
1614         {
1615         case 1:
1616             if( MKV_IS_ID( el, KaxCluster ) )
1617             {
1618                 cluster = (KaxCluster*)el;
1619
1620                 /* add it to the index */
1621                 if( i_index == 0 ||
1622                     ( i_index > 0 && index[i_index - 1].i_position < (int64_t)cluster->GetElementPosition() ) )
1623                 {
1624                     IndexAppendCluster( cluster );
1625                 }
1626
1627                 // reset silent tracks
1628                 for (size_t i=0; i<tracks.size(); i++)
1629                 {
1630                     tracks[i]->b_silent = VLC_FALSE;
1631                 }
1632
1633                 ep->Down();
1634             }
1635             else if( MKV_IS_ID( el, KaxCues ) )
1636             {
1637                 msg_Warn( &sys.demuxer, "find KaxCues FIXME" );
1638                 return VLC_EGENERIC;
1639             }
1640             else
1641             {
1642                 msg_Dbg( &sys.demuxer, "unknown (%s)", typeid( el ).name() );
1643             }
1644             break;
1645         case 2:
1646             if( MKV_IS_ID( el, KaxClusterTimecode ) )
1647             {
1648                 KaxClusterTimecode &ctc = *(KaxClusterTimecode*)el;
1649
1650                 ctc.ReadData( es.I_O(), SCOPE_ALL_DATA );
1651                 cluster->InitTimecode( uint64( ctc ), i_timescale );
1652             }
1653             else if( MKV_IS_ID( el, KaxClusterSilentTracks ) )
1654             {
1655                 ep->Down();
1656             }
1657             else if( MKV_IS_ID( el, KaxBlockGroup ) )
1658             {
1659                 ep->Down();
1660             }
1661             break;
1662         case 3:
1663             if( MKV_IS_ID( el, KaxBlock ) )
1664             {
1665                 *pp_block = (KaxBlock*)el;
1666
1667                 (*pp_block)->ReadData( es.I_O() );
1668                 (*pp_block)->SetParent( *cluster );
1669
1670                 ep->Keep();
1671             }
1672             else if( MKV_IS_ID( el, KaxBlockDuration ) )
1673             {
1674                 KaxBlockDuration &dur = *(KaxBlockDuration*)el;
1675
1676                 dur.ReadData( es.I_O() );
1677                 *pi_duration = uint64( dur );
1678             }
1679             else if( MKV_IS_ID( el, KaxReferenceBlock ) )
1680             {
1681                 KaxReferenceBlock &ref = *(KaxReferenceBlock*)el;
1682
1683                 ref.ReadData( es.I_O() );
1684                 if( *pi_ref1 == -1 )
1685                 {
1686                     *pi_ref1 = int64( ref );
1687                 }
1688                 else
1689                 {
1690                     *pi_ref2 = int64( ref );
1691                 }
1692             }
1693             else if( MKV_IS_ID( el, KaxClusterSilentTrackNumber ) )
1694             {
1695                 KaxClusterSilentTrackNumber &track_num = *(KaxClusterSilentTrackNumber*)el;
1696                 track_num.ReadData( es.I_O() );
1697                 // find the track
1698                 for (size_t i=0; i<tracks.size(); i++)
1699                 {
1700                     if ( tracks[i]->i_number == uint32(track_num))
1701                     {
1702                         tracks[i]->b_silent = VLC_TRUE;
1703                         break;
1704                     }
1705                 }
1706             }
1707             break;
1708         default:
1709             msg_Err( &sys.demuxer, "invalid level = %d", i_level );
1710             return VLC_EGENERIC;
1711         }
1712     }
1713 }
1714
1715 static block_t *MemToBlock( demux_t *p_demux, uint8_t *p_mem, int i_mem)
1716 {
1717     block_t *p_block;
1718     if( !(p_block = block_New( p_demux, i_mem ) ) ) return NULL;
1719     memcpy( p_block->p_buffer, p_mem, i_mem );
1720     //p_block->i_rate = p_input->stream.control.i_rate;
1721     return p_block;
1722 }
1723
1724 static void BlockDecode( demux_t *p_demux, KaxBlock *block, mtime_t i_pts,
1725                          mtime_t i_duration )
1726 {
1727     demux_sys_t        *p_sys = p_demux->p_sys;
1728     matroska_segment_c *p_segment = p_sys->p_current_segment->Segment();
1729
1730     size_t          i_track;
1731     unsigned int    i;
1732     vlc_bool_t      b;
1733
1734 #define tk  p_segment->tracks[i_track]
1735     for( i_track = 0; i_track < p_segment->tracks.size(); i_track++ )
1736     {
1737         if( tk->i_number == block->TrackNum() )
1738         {
1739             break;
1740         }
1741     }
1742
1743     if( i_track >= p_segment->tracks.size() )
1744     {
1745         msg_Err( p_demux, "invalid track number=%d", block->TrackNum() );
1746         return;
1747     }
1748     if( tk->p_es == NULL )
1749     {
1750         msg_Err( p_demux, "unknown track number=%d", block->TrackNum() );
1751         return;
1752     }
1753     if( i_pts < p_sys->i_start_pts && tk->fmt.i_cat == AUDIO_ES )
1754     {
1755         return; /* discard audio packets that shouldn't be rendered */
1756     }
1757
1758     if ( tk->fmt.i_cat != SPU_ES || strcmp( tk->psz_codec, "B_VOBBTN" ) )
1759     {
1760         es_out_Control( p_demux->out, ES_OUT_GET_ES_STATE, tk->p_es, &b );
1761
1762         if( !b )
1763         {
1764             tk->b_inited = VLC_FALSE;
1765             return;
1766         }
1767     }
1768
1769
1770     /* First send init data */
1771     if( !tk->b_inited && tk->i_data_init > 0 )
1772     {
1773         block_t *p_init;
1774
1775         msg_Dbg( p_demux, "sending header (%d bytes)", tk->i_data_init );
1776         p_init = MemToBlock( p_demux, tk->p_data_init, tk->i_data_init );
1777         if( p_init ) es_out_Send( p_demux->out, tk->p_es, p_init );
1778     }
1779     tk->b_inited = VLC_TRUE;
1780
1781
1782     for( i = 0; i < block->NumberFrames(); i++ )
1783     {
1784         block_t *p_block;
1785         DataBuffer &data = block->GetBuffer(i);
1786
1787         p_block = MemToBlock( p_demux, data.Buffer(), data.Size() );
1788
1789         if( p_block == NULL )
1790         {
1791             break;
1792         }
1793
1794 #if defined(HAVE_ZLIB_H)
1795         if( tk->i_compression_type )
1796         {
1797             p_block = block_zlib_decompress( VLC_OBJECT(p_demux), p_block );
1798         }
1799 #endif
1800
1801         // TODO implement correct timestamping when B frames are used
1802         if( tk->fmt.i_cat != VIDEO_ES )
1803         {
1804             p_block->i_dts = p_block->i_pts = i_pts;
1805         }
1806         else
1807         {
1808             p_block->i_dts = i_pts;
1809             p_block->i_pts = 0;
1810         }
1811
1812         if ( tk->fmt.i_cat == SPU_ES )
1813         {
1814             if ( !strcmp( tk->psz_codec, "B_VOBBTN" ) )
1815             {
1816                 // TODO handle the start/stop times of this packet
1817                 if ( p_sys->b_ui_hooked )
1818                 {
1819                     vlc_mutex_lock( &p_sys->p_ev->lock );
1820                     memcpy( &p_sys->pci_packet, &p_block->p_buffer[1], sizeof(pci_t) );
1821                     p_sys->SwapButtons();
1822                     p_sys->b_pci_packet_set = true;
1823                     vlc_mutex_unlock( &p_sys->p_ev->lock );
1824                     block_Release( p_block );
1825                 }
1826                 return;
1827             }
1828
1829             else if ( strcmp( tk->psz_codec, "S_VOBSUB" ) )
1830             {
1831                 p_block->i_length = i_duration * 1000;
1832             }
1833         }
1834
1835         es_out_Send( p_demux->out, tk->p_es, p_block );
1836
1837         /* use time stamp only for first block */
1838         i_pts = 0;
1839     }
1840
1841 #undef tk
1842 }
1843
1844 matroska_stream_c *demux_sys_t::AnalyseAllSegmentsFound( EbmlStream *p_estream )
1845 {
1846     int i_upper_lvl = 0;
1847     size_t i;
1848     EbmlElement *p_l0, *p_l1, *p_l2;
1849     bool b_keep_stream = false, b_keep_segment;
1850
1851     // verify the EBML Header
1852     p_l0 = p_estream->FindNextID(EbmlHead::ClassInfos, 0xFFFFFFFFL);
1853     if (p_l0 == NULL)
1854     {
1855         return NULL;
1856     }
1857     p_l0->SkipData(*p_estream, EbmlHead_Context);
1858     delete p_l0;
1859
1860     // find all segments in this file
1861     p_l0 = p_estream->FindNextID(KaxSegment::ClassInfos, 0xFFFFFFFFL);
1862     if (p_l0 == NULL)
1863     {
1864         return NULL;
1865     }
1866
1867     matroska_stream_c *p_stream1 = new matroska_stream_c( *this );
1868
1869     while (p_l0 != 0)
1870     {
1871         if (EbmlId(*p_l0) == KaxSegment::ClassInfos.GlobalId)
1872         {
1873             EbmlParser  *ep;
1874             matroska_segment_c *p_segment1 = new matroska_segment_c( *this, *p_estream );
1875             b_keep_segment = false;
1876
1877             ep = new EbmlParser(p_estream, p_l0, &demuxer );
1878             p_segment1->ep = ep;
1879             p_segment1->segment = (KaxSegment*)p_l0;
1880
1881             while ((p_l1 = ep->Get()))
1882             {
1883                 if (MKV_IS_ID(p_l1, KaxInfo))
1884                 {
1885                     // find the families of this segment
1886                     KaxInfo *p_info = static_cast<KaxInfo*>(p_l1);
1887
1888                     p_info->Read(*p_estream, KaxInfo::ClassInfos.Context, i_upper_lvl, p_l2, true);
1889                     for( i = 0; i < p_info->ListSize(); i++ )
1890                     {
1891                         EbmlElement *l = (*p_info)[i];
1892
1893                         if( MKV_IS_ID( l, KaxSegmentUID ) )
1894                         {
1895                             KaxSegmentUID *p_uid = static_cast<KaxSegmentUID*>(l);
1896                             b_keep_segment = (FindSegment( *p_uid ) == NULL);
1897                             if ( !b_keep_segment )
1898                                 break; // this segment is already known
1899                             opened_segments.push_back( p_segment1 );
1900                             p_segment1->segment_uid = *( new KaxSegmentUID(*p_uid) );
1901                         }
1902                         else if( MKV_IS_ID( l, KaxPrevUID ) )
1903                         {
1904                             p_segment1->prev_segment_uid = *( new KaxPrevUID( *static_cast<KaxPrevUID*>(l) ) );
1905                         }
1906                         else if( MKV_IS_ID( l, KaxNextUID ) )
1907                         {
1908                             p_segment1->next_segment_uid = *( new KaxNextUID( *static_cast<KaxNextUID*>(l) ) );
1909                         }
1910                         else if( MKV_IS_ID( l, KaxSegmentFamily ) )
1911                         {
1912                             KaxSegmentFamily *p_fam = new KaxSegmentFamily( *static_cast<KaxSegmentFamily*>(l) );
1913                             p_segment1->families.push_back( *p_fam );
1914                         }
1915                     }
1916                     break;
1917                 }
1918             }
1919             if ( b_keep_segment )
1920             {
1921                 b_keep_stream = true;
1922                 p_stream1->segments.push_back( p_segment1 );
1923             }
1924             else
1925                 delete p_segment1;
1926         }
1927
1928         p_l0->SkipData(*p_estream, EbmlHead_Context);
1929         p_l0 = p_estream->FindNextID(KaxSegment::ClassInfos, 0xFFFFFFFFL);
1930     }
1931
1932     if ( !b_keep_stream )
1933     {
1934         delete p_stream1;
1935         p_stream1 = NULL;
1936     }
1937
1938     return p_stream1;
1939 }
1940
1941 bool matroska_segment_c::Select( mtime_t i_start_time )
1942 {
1943     size_t i_track;
1944
1945     /* add all es */
1946     msg_Dbg( &sys.demuxer, "found %d es", tracks.size() );
1947     sys.b_pci_packet_set = false;
1948     for( i_track = 0; i_track < tracks.size(); i_track++ )
1949     {
1950         if( tracks[i_track]->fmt.i_cat == UNKNOWN_ES )
1951         {
1952             msg_Warn( &sys.demuxer, "invalid track[%d, n=%d]", i_track, tracks[i_track]->i_number );
1953             tracks[i_track]->p_es = NULL;
1954             continue;
1955         }
1956
1957         if( !strcmp( tracks[i_track]->psz_codec, "V_MS/VFW/FOURCC" ) )
1958         {
1959             if( tracks[i_track]->i_extra_data < (int)sizeof( BITMAPINFOHEADER ) )
1960             {
1961                 msg_Err( &sys.demuxer, "missing/invalid BITMAPINFOHEADER" );
1962                 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
1963             }
1964             else
1965             {
1966                 BITMAPINFOHEADER *p_bih = (BITMAPINFOHEADER*)tracks[i_track]->p_extra_data;
1967
1968                 tracks[i_track]->fmt.video.i_width = GetDWLE( &p_bih->biWidth );
1969                 tracks[i_track]->fmt.video.i_height= GetDWLE( &p_bih->biHeight );
1970                 tracks[i_track]->fmt.i_codec       = GetFOURCC( &p_bih->biCompression );
1971
1972                 tracks[i_track]->fmt.i_extra       = GetDWLE( &p_bih->biSize ) - sizeof( BITMAPINFOHEADER );
1973                 if( tracks[i_track]->fmt.i_extra > 0 )
1974                 {
1975                     tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra );
1976                     memcpy( tracks[i_track]->fmt.p_extra, &p_bih[1], tracks[i_track]->fmt.i_extra );
1977                 }
1978             }
1979         }
1980         else if( !strcmp( tracks[i_track]->psz_codec, "V_MPEG1" ) ||
1981                  !strcmp( tracks[i_track]->psz_codec, "V_MPEG2" ) )
1982         {
1983             tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'm', 'p', 'g', 'v' );
1984         }
1985         else if( !strncmp( tracks[i_track]->psz_codec, "V_MPEG4", 7 ) )
1986         {
1987             if( !strcmp( tracks[i_track]->psz_codec, "V_MPEG4/MS/V3" ) )
1988             {
1989                 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'D', 'I', 'V', '3' );
1990             }
1991             else if( !strcmp( tracks[i_track]->psz_codec, "V_MPEG4/ISO/AVC" ) )
1992             {
1993                 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'a', 'v', 'c', '1' );
1994                 tracks[i_track]->fmt.b_packetized = VLC_FALSE;
1995                 tracks[i_track]->fmt.i_extra = tracks[i_track]->i_extra_data;
1996                 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->i_extra_data );
1997                 memcpy( tracks[i_track]->fmt.p_extra,tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data );
1998             }
1999             else
2000             {
2001                 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'm', 'p', '4', 'v' );
2002             }
2003         }
2004         else if( !strcmp( tracks[i_track]->psz_codec, "V_QUICKTIME" ) )
2005         {
2006             MP4_Box_t *p_box = (MP4_Box_t*)malloc( sizeof( MP4_Box_t ) );
2007 #ifdef VSLHC
2008             stream_t *p_mp4_stream = stream_MemoryNew( VLC_OBJECT(&sys.demuxer),
2009                                                        tracks[i_track]->p_extra_data,
2010                                                        tracks[i_track]->i_extra_data );
2011 #else
2012             stream_t *p_mp4_stream = stream_MemoryNew( VLC_OBJECT(&sys.demuxer),
2013                                                        tracks[i_track]->p_extra_data,
2014                                                        tracks[i_track]->i_extra_data,
2015                                                        VLC_FALSE );
2016 #endif
2017             MP4_ReadBoxCommon( p_mp4_stream, p_box );
2018             MP4_ReadBox_sample_vide( p_mp4_stream, p_box );
2019             tracks[i_track]->fmt.i_codec = p_box->i_type;
2020             tracks[i_track]->fmt.video.i_width = p_box->data.p_sample_vide->i_width;
2021             tracks[i_track]->fmt.video.i_height = p_box->data.p_sample_vide->i_height;
2022             tracks[i_track]->fmt.i_extra = p_box->data.p_sample_vide->i_qt_image_description;
2023             tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra );
2024             memcpy( tracks[i_track]->fmt.p_extra, p_box->data.p_sample_vide->p_qt_image_description, tracks[i_track]->fmt.i_extra );
2025             MP4_FreeBox_sample_vide( p_box );
2026 #ifdef VSLHC
2027             stream_MemoryDelete( p_mp4_stream, VLC_TRUE );
2028 #else
2029             stream_Delete( p_mp4_stream );
2030 #endif        
2031         }
2032         else if( !strcmp( tracks[i_track]->psz_codec, "A_MS/ACM" ) )
2033         {
2034             if( tracks[i_track]->i_extra_data < (int)sizeof( WAVEFORMATEX ) )
2035             {
2036                 msg_Err( &sys.demuxer, "missing/invalid WAVEFORMATEX" );
2037                 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
2038             }
2039             else
2040             {
2041                 WAVEFORMATEX *p_wf = (WAVEFORMATEX*)tracks[i_track]->p_extra_data;
2042
2043                 wf_tag_to_fourcc( GetWLE( &p_wf->wFormatTag ), &tracks[i_track]->fmt.i_codec, NULL );
2044
2045                 tracks[i_track]->fmt.audio.i_channels   = GetWLE( &p_wf->nChannels );
2046                 tracks[i_track]->fmt.audio.i_rate = GetDWLE( &p_wf->nSamplesPerSec );
2047                 tracks[i_track]->fmt.i_bitrate    = GetDWLE( &p_wf->nAvgBytesPerSec ) * 8;
2048                 tracks[i_track]->fmt.audio.i_blockalign = GetWLE( &p_wf->nBlockAlign );;
2049                 tracks[i_track]->fmt.audio.i_bitspersample = GetWLE( &p_wf->wBitsPerSample );
2050
2051                 tracks[i_track]->fmt.i_extra            = GetWLE( &p_wf->cbSize );
2052                 if( tracks[i_track]->fmt.i_extra > 0 )
2053                 {
2054                     tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra );
2055                     memcpy( tracks[i_track]->fmt.p_extra, &p_wf[1], tracks[i_track]->fmt.i_extra );
2056                 }
2057             }
2058         }
2059         else if( !strcmp( tracks[i_track]->psz_codec, "A_MPEG/L3" ) ||
2060                  !strcmp( tracks[i_track]->psz_codec, "A_MPEG/L2" ) ||
2061                  !strcmp( tracks[i_track]->psz_codec, "A_MPEG/L1" ) )
2062         {
2063             tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'm', 'p', 'g', 'a' );
2064         }
2065         else if( !strcmp( tracks[i_track]->psz_codec, "A_AC3" ) )
2066         {
2067             tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'a', '5', '2', ' ' );
2068         }
2069         else if( !strcmp( tracks[i_track]->psz_codec, "A_DTS" ) )
2070         {
2071             tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'd', 't', 's', ' ' );
2072         }
2073         else if( !strcmp( tracks[i_track]->psz_codec, "A_FLAC" ) )
2074         {
2075             tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'f', 'l', 'a', 'c' );
2076             tracks[i_track]->fmt.i_extra = tracks[i_track]->i_extra_data;
2077             tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->i_extra_data );
2078             memcpy( tracks[i_track]->fmt.p_extra,tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data );
2079         }
2080         else if( !strcmp( tracks[i_track]->psz_codec, "A_VORBIS" ) )
2081         {
2082             int i, i_offset = 1, i_size[3], i_extra;
2083             uint8_t *p_extra;
2084
2085             tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'v', 'o', 'r', 'b' );
2086
2087             /* Split the 3 headers */
2088             if( tracks[i_track]->p_extra_data[0] != 0x02 )
2089                 msg_Err( &sys.demuxer, "invalid vorbis header" );
2090
2091             for( i = 0; i < 2; i++ )
2092             {
2093                 i_size[i] = 0;
2094                 while( i_offset < tracks[i_track]->i_extra_data )
2095                 {
2096                     i_size[i] += tracks[i_track]->p_extra_data[i_offset];
2097                     if( tracks[i_track]->p_extra_data[i_offset++] != 0xff ) break;
2098                 }
2099             }
2100
2101             i_size[0] = __MIN(i_size[0], tracks[i_track]->i_extra_data - i_offset);
2102             i_size[1] = __MIN(i_size[1], tracks[i_track]->i_extra_data -i_offset -i_size[0]);
2103             i_size[2] = tracks[i_track]->i_extra_data - i_offset - i_size[0] - i_size[1];
2104
2105             tracks[i_track]->fmt.i_extra = 3 * 2 + i_size[0] + i_size[1] + i_size[2];
2106             tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra );
2107             p_extra = (uint8_t *)tracks[i_track]->fmt.p_extra; i_extra = 0;
2108             for( i = 0; i < 3; i++ )
2109             {
2110                 *(p_extra++) = i_size[i] >> 8;
2111                 *(p_extra++) = i_size[i] & 0xFF;
2112                 memcpy( p_extra, tracks[i_track]->p_extra_data + i_offset + i_extra,
2113                         i_size[i] );
2114                 p_extra += i_size[i];
2115                 i_extra += i_size[i];
2116             }
2117         }
2118         else if( !strncmp( tracks[i_track]->psz_codec, "A_AAC/MPEG2/", strlen( "A_AAC/MPEG2/" ) ) ||
2119                  !strncmp( tracks[i_track]->psz_codec, "A_AAC/MPEG4/", strlen( "A_AAC/MPEG4/" ) ) )
2120         {
2121             int i_profile, i_srate;
2122             static unsigned int i_sample_rates[] =
2123             {
2124                     96000, 88200, 64000, 48000, 44100, 32000, 24000, 22050,
2125                         16000, 12000, 11025, 8000,  7350,  0,     0,     0
2126             };
2127
2128             tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'm', 'p', '4', 'a' );
2129             /* create data for faad (MP4DecSpecificDescrTag)*/
2130
2131             if( !strcmp( &tracks[i_track]->psz_codec[12], "MAIN" ) )
2132             {
2133                 i_profile = 0;
2134             }
2135             else if( !strcmp( &tracks[i_track]->psz_codec[12], "LC" ) )
2136             {
2137                 i_profile = 1;
2138             }
2139             else if( !strcmp( &tracks[i_track]->psz_codec[12], "SSR" ) )
2140             {
2141                 i_profile = 2;
2142             }
2143             else
2144             {
2145                 i_profile = 3;
2146             }
2147
2148             for( i_srate = 0; i_srate < 13; i_srate++ )
2149             {
2150                 if( i_sample_rates[i_srate] == tracks[i_track]->fmt.audio.i_rate )
2151                 {
2152                     break;
2153                 }
2154             }
2155             msg_Dbg( &sys.demuxer, "profile=%d srate=%d", i_profile, i_srate );
2156
2157             tracks[i_track]->fmt.i_extra = 2;
2158             tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra );
2159             ((uint8_t*)tracks[i_track]->fmt.p_extra)[0] = ((i_profile + 1) << 3) | ((i_srate&0xe) >> 1);
2160             ((uint8_t*)tracks[i_track]->fmt.p_extra)[1] = ((i_srate & 0x1) << 7) | (tracks[i_track]->fmt.audio.i_channels << 3);
2161         }
2162         else if( !strcmp( tracks[i_track]->psz_codec, "A_PCM/INT/BIG" ) ||
2163                  !strcmp( tracks[i_track]->psz_codec, "A_PCM/INT/LIT" ) ||
2164                  !strcmp( tracks[i_track]->psz_codec, "A_PCM/FLOAT/IEEE" ) )
2165         {
2166             if( !strcmp( tracks[i_track]->psz_codec, "A_PCM/INT/BIG" ) )
2167             {
2168                 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 't', 'w', 'o', 's' );
2169             }
2170             else
2171             {
2172                 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'a', 'r', 'a', 'w' );
2173             }
2174             tracks[i_track]->fmt.audio.i_blockalign = ( tracks[i_track]->fmt.audio.i_bitspersample + 7 ) / 8 * tracks[i_track]->fmt.audio.i_channels;
2175         }
2176         else if( !strcmp( tracks[i_track]->psz_codec, "A_TTA1" ) )
2177         {
2178             /* FIXME: support this codec */
2179             msg_Err( &sys.demuxer, "TTA not supported yet[%d, n=%d]", i_track, tracks[i_track]->i_number );
2180             tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
2181         }
2182         else if( !strcmp( tracks[i_track]->psz_codec, "A_WAVPACK4" ) )
2183         {
2184             /* FIXME: support this codec */
2185             msg_Err( &sys.demuxer, "Wavpack not supported yet[%d, n=%d]", i_track, tracks[i_track]->i_number );
2186             tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
2187         }
2188         else if( !strcmp( tracks[i_track]->psz_codec, "S_TEXT/UTF8" ) )
2189         {
2190             tracks[i_track]->fmt.i_codec = VLC_FOURCC( 's', 'u', 'b', 't' );
2191             tracks[i_track]->fmt.subs.psz_encoding = strdup( "UTF-8" );
2192         }
2193         else if( !strcmp( tracks[i_track]->psz_codec, "S_TEXT/SSA" ) ||
2194                  !strcmp( tracks[i_track]->psz_codec, "S_TEXT/ASS" ) ||
2195                  !strcmp( tracks[i_track]->psz_codec, "S_SSA" ) ||
2196                  !strcmp( tracks[i_track]->psz_codec, "S_ASS" ))
2197         {
2198             tracks[i_track]->fmt.i_codec = VLC_FOURCC( 's', 's', 'a', ' ' );
2199             tracks[i_track]->fmt.subs.psz_encoding = strdup( "UTF-8" );
2200         }
2201         else if( !strcmp( tracks[i_track]->psz_codec, "S_VOBSUB" ) )
2202         {
2203             tracks[i_track]->fmt.i_codec = VLC_FOURCC( 's','p','u',' ' );
2204             if( tracks[i_track]->i_extra_data )
2205             {
2206                 char *p_start;
2207                 char *p_buf = (char *)malloc( tracks[i_track]->i_extra_data + 1);
2208                 memcpy( p_buf, tracks[i_track]->p_extra_data , tracks[i_track]->i_extra_data );
2209                 p_buf[tracks[i_track]->i_extra_data] = '\0';
2210                 
2211                 p_start = strstr( p_buf, "size:" );
2212                 if( sscanf( p_start, "size: %dx%d",
2213                         &tracks[i_track]->fmt.subs.spu.i_original_frame_width, &tracks[i_track]->fmt.subs.spu.i_original_frame_height ) == 2 )
2214                 {
2215                     msg_Dbg( &sys.demuxer, "original frame size vobsubs: %dx%d", tracks[i_track]->fmt.subs.spu.i_original_frame_width, tracks[i_track]->fmt.subs.spu.i_original_frame_height );
2216                 }
2217                 else
2218                 {
2219                     msg_Warn( &sys.demuxer, "reading original frame size for vobsub failed" );
2220                 }
2221                 free( p_buf );
2222             }
2223         }
2224         else if( !strcmp( tracks[i_track]->psz_codec, "B_VOBBTN" ) )
2225         {
2226             tracks[i_track]->fmt.i_codec = VLC_FOURCC( 's','p','u',' ' );
2227         }
2228         else
2229         {
2230             msg_Err( &sys.demuxer, "unknow codec id=`%s'", tracks[i_track]->psz_codec );
2231             tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
2232         }
2233         if( tracks[i_track]->b_default )
2234         {
2235             tracks[i_track]->fmt.i_priority = 1000;
2236         }
2237
2238         tracks[i_track]->p_es = es_out_Add( sys.demuxer.out, &tracks[i_track]->fmt );
2239
2240         es_out_Control( sys.demuxer.out, ES_OUT_SET_NEXT_DISPLAY_TIME, tracks[i_track]->p_es, i_start_time );
2241     }
2242     
2243     sys.i_start_pts = i_start_time;
2244     // reset the stream reading to the first cluster of the segment used
2245     es.I_O().setFilePointer( i_start_pos );
2246
2247     delete ep;
2248     ep = new EbmlParser( &es, segment, &sys.demuxer );
2249
2250     return true;
2251 }
2252
2253 void demux_sys_t::StartUiThread()
2254 {
2255     if ( !b_ui_hooked )
2256     {
2257         msg_Dbg( &demuxer, "Starting the UI Hook" );
2258         b_ui_hooked = true;
2259         /* FIXME hack hack hack hack FIXME */
2260         /* Get p_input and create variable */
2261         p_input = (input_thread_t *) vlc_object_find( &demuxer, VLC_OBJECT_INPUT, FIND_PARENT );
2262         var_Create( p_input, "x-start", VLC_VAR_INTEGER );
2263         var_Create( p_input, "y-start", VLC_VAR_INTEGER );
2264         var_Create( p_input, "x-end", VLC_VAR_INTEGER );
2265         var_Create( p_input, "y-end", VLC_VAR_INTEGER );
2266         var_Create( p_input, "color", VLC_VAR_ADDRESS );
2267         var_Create( p_input, "menu-contrast", VLC_VAR_ADDRESS );
2268         var_Create( p_input, "highlight", VLC_VAR_BOOL );
2269         var_Create( p_input, "highlight-mutex", VLC_VAR_MUTEX );
2270
2271         /* Now create our event thread catcher */
2272         p_ev = (event_thread_t *) vlc_object_create( &demuxer, sizeof( event_thread_t ) );
2273         p_ev->p_demux = &demuxer;
2274         p_ev->b_die = VLC_FALSE;
2275         vlc_mutex_init( p_ev, &p_ev->lock );
2276         vlc_thread_create( p_ev, "mkv event thread handler", EventThread,
2277                         VLC_THREAD_PRIORITY_LOW, VLC_FALSE );
2278     }
2279 }
2280
2281 void demux_sys_t::StopUiThread()
2282 {
2283     if ( b_ui_hooked )
2284     {
2285         p_ev->b_die = VLC_TRUE;
2286
2287         vlc_thread_join( p_ev );
2288         vlc_object_destroy( p_ev );
2289
2290         p_ev = NULL;
2291
2292         var_Destroy( p_input, "highlight-mutex" );
2293         var_Destroy( p_input, "highlight" );
2294         var_Destroy( p_input, "x-start" );
2295         var_Destroy( p_input, "x-end" );
2296         var_Destroy( p_input, "y-start" );
2297         var_Destroy( p_input, "y-end" );
2298         var_Destroy( p_input, "color" );
2299         var_Destroy( p_input, "menu-contrast" );
2300
2301         msg_Dbg( &demuxer, "Stopping the UI Hook" );
2302     }
2303     b_ui_hooked = false;
2304 }
2305
2306 int demux_sys_t::EventMouse( vlc_object_t *p_this, char const *psz_var,
2307                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
2308 {
2309     event_thread_t *p_ev = (event_thread_t *) p_data;
2310     vlc_mutex_lock( &p_ev->lock );
2311     if( psz_var[6] == 'c' )
2312         p_ev->b_clicked = VLC_TRUE;
2313     else if( psz_var[6] == 'm' )
2314         p_ev->b_moved = VLC_TRUE;
2315     vlc_mutex_unlock( &p_ev->lock );
2316
2317     return VLC_SUCCESS;
2318 }
2319
2320 int demux_sys_t::EventKey( vlc_object_t *p_this, char const *psz_var,
2321                      vlc_value_t oldval, vlc_value_t newval, void *p_data )
2322 {
2323     event_thread_t *p_ev = (event_thread_t *) p_data;
2324     vlc_mutex_lock( &p_ev->lock );
2325     p_ev->b_key = VLC_TRUE;
2326     vlc_mutex_unlock( &p_ev->lock );
2327
2328     return VLC_SUCCESS;
2329 }
2330
2331 int demux_sys_t::EventThread( vlc_object_t *p_this )
2332 {
2333     event_thread_t *p_ev = (event_thread_t*)p_this;
2334     demux_sys_t    *p_sys = p_ev->p_demux->p_sys;
2335     vlc_object_t   *p_vout = NULL;
2336
2337     p_ev->b_moved   = VLC_FALSE;
2338     p_ev->b_clicked = VLC_FALSE;
2339     p_ev->b_key     = VLC_FALSE;
2340
2341     /* catch all key event */
2342     var_AddCallback( p_ev->p_vlc, "key-pressed", EventKey, p_ev );
2343
2344     /* main loop */
2345     while( !p_ev->b_die )
2346     {
2347         vlc_bool_t b_activated = VLC_FALSE;
2348
2349         /* KEY part */
2350         if( p_ev->b_key )
2351         {
2352             vlc_value_t valk;
2353             struct vlc_t::hotkey *p_hotkeys = p_ev->p_vlc->p_hotkeys;
2354             int i, i_action = -1;
2355
2356             vlc_mutex_lock( &p_ev->lock );
2357
2358             if ( !p_sys->b_pci_packet_set )
2359             {
2360                 vlc_mutex_unlock( &p_ev->lock );
2361                 /* Wait 100ms */
2362                 msleep( 100000 );
2363                 continue;
2364             }
2365
2366             pci_t *pci = (pci_t *) &p_sys->pci_packet;
2367
2368             var_Get( p_ev->p_vlc, "key-pressed", &valk );
2369             for( i = 0; p_hotkeys[i].psz_action != NULL; i++ )
2370             {
2371                 if( p_hotkeys[i].i_key == valk.i_int )
2372                 {
2373                     i_action = p_hotkeys[i].i_action;
2374                 }
2375             }
2376
2377             switch( i_action )
2378             {
2379             case ACTIONID_NAV_LEFT:
2380 //                dvdnav_left_button_select( NULL, pci );
2381                 break;
2382             case ACTIONID_NAV_RIGHT:
2383 //                dvdnav_right_button_select( NULL, pci );
2384                 break;
2385             case ACTIONID_NAV_UP:
2386 //                dvdnav_upper_button_select( NULL, pci );
2387                 break;
2388             case ACTIONID_NAV_DOWN:
2389 //                dvdnav_lower_button_select( NULL, pci );
2390                 break;
2391             case ACTIONID_NAV_ACTIVATE:
2392                 b_activated = VLC_TRUE;
2393 //                dvdnav_button_activate( NULL, pci );
2394                 break;
2395             default:
2396                 break;
2397             }
2398             p_ev->b_key = VLC_FALSE;
2399             vlc_mutex_unlock( &p_ev->lock );
2400         }
2401
2402         /* MOUSE part */
2403         if( p_vout && ( p_ev->b_moved || p_ev->b_clicked ) )
2404         {
2405             vlc_value_t valx, valy;
2406
2407             vlc_mutex_lock( &p_ev->lock );
2408             pci_t *pci = (pci_t *) &p_sys->pci_packet;
2409             var_Get( p_vout, "mouse-x", &valx );
2410             var_Get( p_vout, "mouse-y", &valy );
2411
2412             if( p_ev->b_clicked )
2413             {
2414                 int32_t button;
2415                 int32_t best,dist,d;
2416                 int32_t mx,my,dx,dy;
2417
2418                 b_activated = VLC_TRUE;
2419                 // get current button
2420                 best = 0;
2421                 dist = 0x08000000; /* >> than  (720*720)+(567*567); */
2422                 for(button = 1; button <= pci->hli.hl_gi.btn_ns; button++) 
2423                 {
2424                     btni_t *button_ptr = &(pci->hli.btnit[button-1]);
2425
2426                     if((valx.i_int >= button_ptr->x_start) && (valx.i_int <= button_ptr->x_end) &&
2427                        (valy.i_int >= button_ptr->y_start) && (valy.i_int <= button_ptr->y_end)) 
2428                     {
2429                         mx = (button_ptr->x_start + button_ptr->x_end)/2;
2430                         my = (button_ptr->y_start + button_ptr->y_end)/2;
2431                         dx = mx - valx.i_int;
2432                         dy = my - valy.i_int;
2433                         d = (dx*dx) + (dy*dy);
2434                         /* If the mouse is within the button and the mouse is closer
2435                         * to the center of this button then it is the best choice. */
2436                         if(d < dist) {
2437                             dist = d;
2438                             best = button;
2439                         }
2440                     }
2441                 }
2442
2443                 if ( best != 0)
2444                 {
2445                     btni_t button_ptr = pci->hli.btnit[best-1];
2446
2447                     msg_Dbg( &p_sys->demuxer, "Clicked button %d", best );
2448                     vlc_mutex_unlock( &p_ev->lock );
2449                     vlc_mutex_lock( &p_sys->lock_demuxer );
2450
2451                     // process the button action
2452                     p_sys->dvd_interpretor.SetSPRM( 0x88, best );
2453                     p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 );
2454
2455                     msg_Dbg( &p_sys->demuxer, "Processed button %d", best );
2456
2457                     // select new button
2458                     if ( best != p_sys->i_curr_button )
2459                     {
2460                         vlc_value_t val;
2461
2462                         if( var_Get( p_sys->p_input, "highlight-mutex", &val ) == VLC_SUCCESS )
2463                         {
2464                             vlc_mutex_t *p_mutex = (vlc_mutex_t *) val.p_address;
2465                             uint32_t i_palette;
2466
2467                             if(button_ptr.btn_coln != 0) {
2468                                 i_palette = pci->hli.btn_colit.btn_coli[button_ptr.btn_coln-1][1];
2469                             } else {
2470                                 i_palette = 0;
2471                             }
2472                             p_sys->alpha[0] = i_palette      & 0x0f;
2473                             p_sys->alpha[1] = (i_palette>>4) & 0x0f;
2474                             p_sys->alpha[2] = (i_palette>>8) & 0x0f;
2475                             p_sys->alpha[3] = (i_palette>>12)& 0x0f;
2476
2477                             vlc_mutex_lock( p_mutex );
2478                             val.i_int = button_ptr.x_start; var_Set( p_sys->p_input, "x-start", val );
2479                             val.i_int = button_ptr.x_end;   var_Set( p_sys->p_input, "x-end",   val );
2480                             val.i_int = button_ptr.y_start; var_Set( p_sys->p_input, "y-start", val );
2481                             val.i_int = button_ptr.y_end;   var_Set( p_sys->p_input, "y-end",   val );
2482
2483                             val.p_address = (void *)p_sys->alpha;
2484                             var_Set( p_sys->p_input, "menu-contrast", val );
2485
2486                             val.b_bool = VLC_TRUE; var_Set( p_sys->p_input, "highlight", val );
2487                             vlc_mutex_unlock( p_mutex );
2488
2489                             p_sys->i_curr_button = best;
2490                         }
2491                     }
2492                     vlc_mutex_unlock( &p_sys->lock_demuxer );
2493                     vlc_mutex_lock( &p_ev->lock );
2494                 }
2495             }
2496             else if( p_ev->b_moved )
2497             {
2498 //                dvdnav_mouse_select( NULL, pci, valx.i_int, valy.i_int );
2499             }
2500
2501             p_ev->b_moved = VLC_FALSE;
2502             p_ev->b_clicked = VLC_FALSE;
2503             vlc_mutex_unlock( &p_ev->lock );
2504         }
2505
2506         /* VOUT part */
2507         if( p_vout && p_vout->b_die )
2508         {
2509             var_DelCallback( p_vout, "mouse-moved", EventMouse, p_ev );
2510             var_DelCallback( p_vout, "mouse-clicked", EventMouse, p_ev );
2511             vlc_object_release( p_vout );
2512             p_vout = NULL;
2513         }
2514
2515         else if( p_vout == NULL )
2516         {
2517             p_vout = (vlc_object_t*) vlc_object_find( p_sys->p_input, VLC_OBJECT_VOUT,
2518                                       FIND_CHILD );
2519             if( p_vout)
2520             {
2521                 var_AddCallback( p_vout, "mouse-moved", EventMouse, p_ev );
2522                 var_AddCallback( p_vout, "mouse-clicked", EventMouse, p_ev );
2523             }
2524         }
2525
2526         /* Wait a bit, 10ms */
2527         msleep( 10000 );
2528     }
2529
2530     /* Release callback */
2531     if( p_vout )
2532     {
2533         var_DelCallback( p_vout, "mouse-moved", EventMouse, p_ev );
2534         var_DelCallback( p_vout, "mouse-clicked", EventMouse, p_ev );
2535         vlc_object_release( p_vout );
2536     }
2537     var_DelCallback( p_ev->p_vlc, "key-pressed", EventKey, p_ev );
2538
2539     vlc_mutex_destroy( &p_ev->lock );
2540
2541     return VLC_SUCCESS;
2542 }
2543
2544 void matroska_segment_c::UnSelect( )
2545 {
2546     size_t i_track;
2547
2548     for( i_track = 0; i_track < tracks.size(); i_track++ )
2549     {
2550         if ( tracks[i_track]->p_es != NULL )
2551         {
2552             es_out_Del( sys.demuxer.out, tracks[i_track]->p_es );
2553             tracks[i_track]->p_es = NULL;
2554         }
2555     }
2556     delete ep;
2557     ep = NULL;
2558 }
2559
2560 void virtual_segment_c::PrepareChapters( )
2561 {
2562     if ( linked_segments.size() == 0 )
2563         return;
2564
2565     // !!! should be called only once !!!
2566     matroska_segment_c *p_segment;
2567     size_t i, j;
2568
2569     // copy editions from the first segment
2570     p_segment = linked_segments[0];
2571     p_editions = &p_segment->stored_editions;
2572
2573     for ( i=1 ; i<linked_segments.size(); i++ )
2574     {
2575         p_segment = linked_segments[i];
2576         // FIXME assume we have the same editions in all segments
2577         for (j=0; j<p_segment->stored_editions.size(); j++)
2578             (*p_editions)[j]->Append( *p_segment->stored_editions[j] );
2579     }
2580 }
2581
2582 std::string chapter_edition_c::GetMainName() const
2583 {
2584     if ( sub_chapters.size() )
2585     {
2586         return sub_chapters[0]->GetCodecName( true );
2587     }
2588     return "";
2589 }
2590
2591 int chapter_item_c::PublishChapters( input_title_t & title, int & i_user_chapters, int i_level )
2592 {
2593     // add support for meta-elements from codec like DVD Titles
2594     if ( !b_display_seekpoint || psz_name == "" )
2595     {
2596         psz_name = GetCodecName();
2597         if ( psz_name != "" )
2598             b_display_seekpoint = true;
2599     }
2600
2601     if (b_display_seekpoint)
2602     {
2603         seekpoint_t *sk = vlc_seekpoint_New();
2604
2605         sk->i_level = i_level;
2606         sk->i_time_offset = i_start_time;
2607         sk->psz_name = strdup( psz_name.c_str() );
2608
2609         // A start time of '0' is ok. A missing ChapterTime element is ok, too, because '0' is its default value.
2610         title.i_seekpoint++;
2611         title.seekpoint = (seekpoint_t**)realloc( title.seekpoint, title.i_seekpoint * sizeof( seekpoint_t* ) );
2612         title.seekpoint[title.i_seekpoint-1] = sk;
2613
2614         if ( b_user_display )
2615             i_user_chapters++;
2616     }
2617
2618     for ( size_t i=0; i<sub_chapters.size() ; i++)
2619     {
2620         sub_chapters[i]->PublishChapters( title, i_user_chapters, i_level+1 );
2621     }
2622
2623     i_seekpoint_num = i_user_chapters;
2624
2625     return i_user_chapters;
2626 }
2627
2628 bool virtual_segment_c::UpdateCurrentToChapter( demux_t & demux )
2629 {
2630     demux_sys_t & sys = *demux.p_sys;
2631     chapter_item_c *psz_curr_chapter;
2632
2633     /* update current chapter/seekpoint */
2634     if ( p_editions->size() )
2635     {
2636         /* 1st, we need to know in which chapter we are */
2637         psz_curr_chapter = (*p_editions)[i_current_edition]->FindTimecode( sys.i_pts );
2638
2639         /* we have moved to a new chapter */
2640         if (psz_curr_chapter != NULL && psz_current_chapter != psz_curr_chapter)
2641         {
2642             if ( (*p_editions)[i_current_edition]->b_ordered )
2643             {
2644                 // Leave/Enter up to the link point
2645                 if ( !psz_curr_chapter->EnterAndLeave( psz_current_chapter ) )
2646                 {
2647                     // only seek if necessary
2648                     if ( psz_current_chapter == NULL || (psz_current_chapter->i_end_time != psz_curr_chapter->i_start_time) )
2649                         Seek( demux, sys.i_pts, 0, psz_curr_chapter );
2650                     psz_current_chapter = psz_curr_chapter;
2651                 }
2652             }
2653             else if ( psz_curr_chapter->i_seekpoint_num > 0 )
2654             {
2655                 demux.info.i_update |= INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT;
2656                 demux.info.i_title = sys.i_current_title = i_sys_title;
2657                 demux.info.i_seekpoint = psz_curr_chapter->i_seekpoint_num - 1;
2658                 psz_current_chapter = psz_curr_chapter;
2659             }
2660             else
2661             {
2662                 psz_current_chapter = psz_curr_chapter;
2663             }
2664
2665             return true;
2666         }
2667         else if (psz_curr_chapter == NULL)
2668         {
2669             // out of the scope of the data described by chapters, leave the edition
2670             if ( (*p_editions)[i_current_edition]->b_ordered && psz_current_chapter != NULL )
2671             {
2672                 if ( !(*p_editions)[i_current_edition]->EnterAndLeave( psz_current_chapter ) )
2673                     psz_current_chapter = NULL;
2674                 else
2675                     return true;
2676             }
2677         }
2678     }
2679     return false;
2680 }
2681
2682 chapter_item_c *virtual_segment_c::BrowseCodecPrivate( unsigned int codec_id, 
2683                                     bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ), 
2684                                     const void *p_cookie, 
2685                                     size_t i_cookie_size )
2686 {
2687     // FIXME don't assume it is the first edition
2688     std::vector<chapter_edition_c*>::iterator index = p_editions->begin();
2689     if ( index != p_editions->end() )
2690     {
2691         chapter_item_c *p_result = (*index)->BrowseCodecPrivate( codec_id, match, p_cookie, i_cookie_size );
2692         if ( p_result != NULL )
2693             return p_result;
2694     }
2695     return NULL;
2696 }
2697
2698 chapter_item_c *virtual_segment_c::FindChapter( int64_t i_find_uid )
2699 {
2700     // FIXME don't assume it is the first edition
2701     std::vector<chapter_edition_c*>::iterator index = p_editions->begin();
2702     if ( index != p_editions->end() )
2703     {
2704         chapter_item_c *p_result = (*index)->FindChapter( i_find_uid );
2705         if ( p_result != NULL )
2706             return p_result;
2707     }
2708     return NULL;
2709 }
2710
2711 chapter_item_c *chapter_item_c::BrowseCodecPrivate( unsigned int codec_id, 
2712                                     bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ), 
2713                                     const void *p_cookie, 
2714                                     size_t i_cookie_size )
2715 {
2716     // this chapter
2717     std::vector<chapter_codec_cmds_c*>::const_iterator index = codecs.begin();
2718     while ( index != codecs.end() )
2719     {
2720         if ( match( **index ,p_cookie, i_cookie_size ) )
2721             return this;
2722         index++;
2723     }
2724     
2725     // sub-chapters
2726     chapter_item_c *p_result = NULL;
2727     std::vector<chapter_item_c*>::const_iterator index2 = sub_chapters.begin();
2728     while ( index2 != sub_chapters.end() )
2729     {
2730         p_result = (*index2)->BrowseCodecPrivate( codec_id, match, p_cookie, i_cookie_size );
2731         if ( p_result != NULL )
2732             return p_result;
2733         index2++;
2734     }
2735     
2736     return p_result;
2737 }
2738
2739 void chapter_item_c::Append( const chapter_item_c & chapter )
2740 {
2741     // we are appending content for the same chapter UID
2742     size_t i;
2743     chapter_item_c *p_chapter;
2744
2745     for ( i=0; i<chapter.sub_chapters.size(); i++ )
2746     {
2747         p_chapter = FindChapter( chapter.sub_chapters[i]->i_uid );
2748         if ( p_chapter != NULL )
2749         {
2750             p_chapter->Append( *chapter.sub_chapters[i] );
2751         }
2752         else
2753         {
2754             sub_chapters.push_back( chapter.sub_chapters[i] );
2755         }
2756     }
2757
2758     i_user_start_time = min( i_user_start_time, chapter.i_user_start_time );
2759     i_user_end_time = max( i_user_end_time, chapter.i_user_end_time );
2760 }
2761
2762 chapter_item_c * chapter_item_c::FindChapter( int64_t i_find_uid )
2763 {
2764     size_t i;
2765     chapter_item_c *p_result = NULL;
2766
2767     if ( i_uid == i_find_uid )
2768         return this;
2769
2770     for ( i=0; i<sub_chapters.size(); i++)
2771     {
2772         p_result = sub_chapters[i]->FindChapter( i_find_uid );
2773         if ( p_result != NULL )
2774             break;
2775     }
2776     return p_result;
2777 }
2778
2779 std::string chapter_item_c::GetCodecName( bool f_for_title ) const
2780 {
2781     std::string result;
2782
2783     std::vector<chapter_codec_cmds_c*>::const_iterator index = codecs.begin();
2784     while ( index != codecs.end() )
2785     {
2786         result = (*index)->GetCodecName( f_for_title );
2787         if ( result != "" )
2788             break;
2789         index++;
2790     }
2791
2792     return result;
2793 }
2794
2795 std::string dvd_chapter_codec_c::GetCodecName( bool f_for_title ) const
2796 {
2797     std::string result;
2798     if ( m_private_data.GetSize() >= 3)
2799     {
2800         const binary* p_data = m_private_data.GetBuffer();
2801 /*        if ( p_data[0] == MATROSKA_DVD_LEVEL_TT )
2802         {
2803             uint16_t i_title = (p_data[1] << 8) + p_data[2];
2804             char psz_str[11];
2805             sprintf( psz_str, " %d  ---", i_title );
2806             result = N_("---  DVD Title");
2807             result += psz_str;
2808         }
2809         else */ if ( p_data[0] == MATROSKA_DVD_LEVEL_LU )
2810         {
2811             char psz_str[11];
2812             sprintf( psz_str, " (%c%c)  ---", p_data[1], p_data[2] );
2813             result = N_("---  DVD Menu");
2814             result += psz_str;
2815         }
2816         else if ( p_data[0] == MATROSKA_DVD_LEVEL_SS && f_for_title )
2817         {
2818             if ( p_data[1] == 0x00 )
2819                 result = N_("First Played");
2820             else if ( p_data[1] == 0xC0 )
2821                 result = N_("Video Manager");
2822             else if ( p_data[1] == 0x80 )
2823             {
2824                 uint16_t i_title = (p_data[2] << 8) + p_data[3];
2825                 char psz_str[20];
2826                 sprintf( psz_str, " %d -----", i_title );
2827                 result = N_("----- Title");
2828                 result += psz_str;
2829             }
2830         }
2831     }
2832
2833     return result;
2834 }
2835
2836 int16 chapter_item_c::GetTitleNumber( ) const
2837 {
2838     int result = -1;
2839
2840     std::vector<chapter_codec_cmds_c*>::const_iterator index = codecs.begin();
2841     while ( index != codecs.end() )
2842     {
2843         result = (*index)->GetTitleNumber( );
2844         if ( result >= 0 )
2845             break;
2846         index++;
2847     }
2848
2849     return result;
2850 }
2851
2852 int16 dvd_chapter_codec_c::GetTitleNumber()
2853 {
2854     if ( m_private_data.GetSize() >= 3)
2855     {
2856         const binary* p_data = m_private_data.GetBuffer();
2857         if ( p_data[0] == MATROSKA_DVD_LEVEL_SS )
2858         {
2859             return int16( (p_data[2] << 8) + p_data[3] );
2860         }
2861     }
2862     return -1;
2863 }
2864
2865 static void Seek( demux_t *p_demux, mtime_t i_date, double f_percent, chapter_item_c *psz_chapter )
2866 {
2867     demux_sys_t        *p_sys = p_demux->p_sys;
2868     virtual_segment_c  *p_vsegment = p_sys->p_current_segment;
2869     matroska_segment_c *p_segment = p_vsegment->Segment();
2870     mtime_t            i_time_offset = 0;
2871
2872     int         i_index;
2873
2874     msg_Dbg( p_demux, "seek request to "I64Fd" (%f%%)", i_date, f_percent );
2875     if( i_date < 0 && f_percent < 0 )
2876     {
2877         msg_Warn( p_demux, "cannot seek nowhere !" );
2878         return;
2879     }
2880     if( f_percent > 1.0 )
2881     {
2882         msg_Warn( p_demux, "cannot seek so far !" );
2883         return;
2884     }
2885
2886     /* seek without index or without date */
2887     if( f_percent >= 0 && (config_GetInt( p_demux, "mkv-seek-percent" ) || !p_segment->b_cues || i_date < 0 ))
2888     {
2889         if (p_sys->f_duration >= 0)
2890         {
2891             i_date = int64_t( f_percent * p_sys->f_duration * 1000.0 );
2892         }
2893         else
2894         {
2895             int64_t i_pos = int64_t( f_percent * stream_Size( p_demux->s ) );
2896
2897             msg_Dbg( p_demux, "inacurate way of seeking" );
2898             for( i_index = 0; i_index < p_segment->i_index; i_index++ )
2899             {
2900                 if( p_segment->index[i_index].i_position >= i_pos)
2901                 {
2902                     break;
2903                 }
2904             }
2905             if( i_index == p_segment->i_index )
2906             {
2907                 i_index--;
2908             }
2909
2910             i_date = p_segment->index[i_index].i_time;
2911
2912 #if 0
2913             if( p_segment->index[i_index].i_position < i_pos )
2914             {
2915                 EbmlElement *el;
2916
2917                 msg_Warn( p_demux, "searching for cluster, could take some time" );
2918
2919                 /* search a cluster */
2920                 while( ( el = p_sys->ep->Get() ) != NULL )
2921                 {
2922                     if( MKV_IS_ID( el, KaxCluster ) )
2923                     {
2924                         KaxCluster *cluster = (KaxCluster*)el;
2925
2926                         /* add it to the index */
2927                         p_segment->IndexAppendCluster( cluster );
2928
2929                         if( (int64_t)cluster->GetElementPosition() >= i_pos )
2930                         {
2931                             p_sys->cluster = cluster;
2932                             p_sys->ep->Down();
2933                             break;
2934                         }
2935                     }
2936                 }
2937             }
2938 #endif
2939         }
2940     }
2941
2942     p_vsegment->Seek( *p_demux, i_date, i_time_offset, psz_chapter );
2943 }
2944
2945 /*****************************************************************************
2946  * Demux: reads and demuxes data packets
2947  *****************************************************************************
2948  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
2949  *****************************************************************************/
2950 static int Demux( demux_t *p_demux)
2951 {
2952     demux_sys_t        *p_sys = p_demux->p_sys;
2953
2954     vlc_mutex_lock( &p_sys->lock_demuxer );
2955
2956     virtual_segment_c  *p_vsegment = p_sys->p_current_segment;
2957     matroska_segment_c *p_segment = p_vsegment->Segment();
2958     if ( p_segment == NULL ) return 0;
2959     int                i_block_count = 0;
2960     int                i_return = 0;
2961
2962     KaxBlock *block;
2963     int64_t i_block_duration;
2964     int64_t i_block_ref1;
2965     int64_t i_block_ref2;
2966
2967     for( ;; )
2968     {
2969         if ( p_sys->demuxer.b_die )
2970             break;
2971
2972         if( p_sys->i_pts >= p_sys->i_start_pts  )
2973             if ( p_vsegment->UpdateCurrentToChapter( *p_demux ) )
2974             {
2975                 i_return = 1;
2976                 break;
2977             }
2978         
2979         if ( p_vsegment->Edition() && p_vsegment->Edition()->b_ordered && p_vsegment->CurrentChapter() == NULL )
2980         {
2981             /* nothing left to read in this ordered edition */
2982             if ( !p_vsegment->SelectNext() )
2983                 break;
2984             p_segment->UnSelect( );
2985             
2986             es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
2987
2988             /* switch to the next segment */
2989             p_segment = p_vsegment->Segment();
2990             if ( !p_segment->Select( 0 ) )
2991             {
2992                 msg_Err( p_demux, "Failed to select new segment" );
2993                 break;
2994             }
2995             continue;
2996         }
2997
2998
2999         if( p_segment->BlockGet( &block, &i_block_ref1, &i_block_ref2, &i_block_duration ) )
3000         {
3001             if ( p_vsegment->Edition() && p_vsegment->Edition()->b_ordered )
3002             {
3003                 const chapter_item_c *p_chap = p_vsegment->CurrentChapter();
3004                 // check if there are more chapters to read
3005                 if ( p_chap != NULL )
3006                 {
3007                     /* TODO handle successive chapters with the same user_start_time/user_end_time
3008                     if ( p_chap->i_user_start_time == p_chap->i_user_start_time )
3009                         p_vsegment->SelectNext();
3010                     */
3011                     p_sys->i_pts = p_chap->i_user_end_time;
3012                     p_sys->i_pts++; // trick to avoid staying on segments with no duration and no content
3013
3014                     i_return = 1;
3015                 }
3016
3017                 break;
3018             }
3019             msg_Warn( p_demux, "cannot get block EOF?" );
3020             p_segment->UnSelect( );
3021             
3022             es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
3023
3024             /* switch to the next segment */
3025             if ( !p_vsegment->SelectNext() )
3026                 // no more segments in this stream
3027                 break;
3028             p_segment = p_vsegment->Segment();
3029             if ( !p_segment->Select( 0 ) )
3030             {
3031                 msg_Err( p_demux, "Failed to select new segment" );
3032                 break;
3033             }
3034
3035             continue;
3036         }
3037
3038         p_sys->i_pts = p_sys->i_chapter_time + block->GlobalTimecode() / (mtime_t) 1000;
3039
3040         if( p_sys->i_pts >= p_sys->i_start_pts  )
3041         {
3042             es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_pts );
3043         }
3044
3045         BlockDecode( p_demux, block, p_sys->i_pts, i_block_duration );
3046
3047         delete block;
3048         i_block_count++;
3049
3050         // TODO optimize when there is need to leave or when seeking has been called
3051         if( i_block_count > 5 )
3052         {
3053             i_return = 1;
3054             break;
3055         }
3056     }
3057
3058     vlc_mutex_unlock( &p_sys->lock_demuxer );
3059
3060     return i_return;
3061 }
3062
3063
3064
3065 /*****************************************************************************
3066  * Stream managment
3067  *****************************************************************************/
3068 vlc_stream_io_callback::vlc_stream_io_callback( stream_t *s_ )
3069 {
3070     s = s_;
3071     mb_eof = VLC_FALSE;
3072 }
3073
3074 uint32 vlc_stream_io_callback::read( void *p_buffer, size_t i_size )
3075 {
3076     if( i_size <= 0 || mb_eof )
3077     {
3078         return 0;
3079     }
3080
3081     return stream_Read( s, p_buffer, i_size );
3082 }
3083 void vlc_stream_io_callback::setFilePointer(int64_t i_offset, seek_mode mode )
3084 {
3085     int64_t i_pos;
3086
3087     switch( mode )
3088     {
3089         case seek_beginning:
3090             i_pos = i_offset;
3091             break;
3092         case seek_end:
3093             i_pos = stream_Size( s ) - i_offset;
3094             break;
3095         default:
3096             i_pos= stream_Tell( s ) + i_offset;
3097             break;
3098     }
3099
3100     if( i_pos < 0 || i_pos >= stream_Size( s ) )
3101     {
3102         mb_eof = VLC_TRUE;
3103         return;
3104     }
3105
3106     mb_eof = VLC_FALSE;
3107     if( stream_Seek( s, i_pos ) )
3108     {
3109         mb_eof = VLC_TRUE;
3110     }
3111     return;
3112 }
3113 size_t vlc_stream_io_callback::write( const void *p_buffer, size_t i_size )
3114 {
3115     return 0;
3116 }
3117 uint64 vlc_stream_io_callback::getFilePointer( void )
3118 {
3119     return stream_Tell( s );
3120 }
3121 void vlc_stream_io_callback::close( void )
3122 {
3123     return;
3124 }
3125
3126
3127 /*****************************************************************************
3128  * Ebml Stream parser
3129  *****************************************************************************/
3130 EbmlParser::EbmlParser( EbmlStream *es, EbmlElement *el_start, demux_t *p_demux )
3131 {
3132     int i;
3133
3134     m_es = es;
3135     m_got = NULL;
3136     m_el[0] = el_start;
3137     mi_remain_size[0] = el_start->GetSize();
3138
3139     for( i = 1; i < 6; i++ )
3140     {
3141         m_el[i] = NULL;
3142     }
3143     mi_level = 1;
3144     mi_user_level = 1;
3145     mb_keep = VLC_FALSE;
3146     mb_dummy = config_GetInt( p_demux, "mkv-use-dummy" );
3147 }
3148
3149 EbmlParser::~EbmlParser( void )
3150 {
3151     int i;
3152
3153     for( i = 1; i < mi_level; i++ )
3154     {
3155         if( !mb_keep )
3156         {
3157             delete m_el[i];
3158         }
3159         mb_keep = VLC_FALSE;
3160     }
3161 }
3162
3163 void EbmlParser::Up( void )
3164 {
3165     if( mi_user_level == mi_level )
3166     {
3167         fprintf( stderr," arrrrrrrrrrrrrg Up cannot escape itself\n" );
3168     }
3169
3170     mi_user_level--;
3171 }
3172
3173 void EbmlParser::Down( void )
3174 {
3175     mi_user_level++;
3176     mi_level++;
3177 }
3178
3179 void EbmlParser::Keep( void )
3180 {
3181     mb_keep = VLC_TRUE;
3182 }
3183
3184 int EbmlParser::GetLevel( void )
3185 {
3186     return mi_user_level;
3187 }
3188
3189 void EbmlParser::Reset( demux_t *p_demux )
3190 {
3191     while ( mi_level > 0)
3192     {
3193         delete m_el[mi_level];
3194         m_el[mi_level] = NULL;
3195         mi_level--;
3196     }
3197     mi_user_level = mi_level = 1;
3198 #if LIBEBML_VERSION >= 0x000704
3199     // a little faster and cleaner
3200     m_es->I_O().setFilePointer( static_cast<KaxSegment*>(m_el[0])->GetGlobalPosition(0) );
3201 #else
3202     m_es->I_O().setFilePointer( m_el[0]->GetElementPosition() + m_el[0]->ElementSize(true) - m_el[0]->GetSize() );
3203 #endif
3204     mb_dummy = config_GetInt( p_demux, "mkv-use-dummy" );
3205 }
3206
3207 EbmlElement *EbmlParser::Get( void )
3208 {
3209     int i_ulev = 0;
3210
3211     if( mi_user_level != mi_level )
3212     {
3213         return NULL;
3214     }
3215     if( m_got )
3216     {
3217         EbmlElement *ret = m_got;
3218         m_got = NULL;
3219
3220         return ret;
3221     }
3222
3223     if( m_el[mi_level] )
3224     {
3225         m_el[mi_level]->SkipData( *m_es, m_el[mi_level]->Generic().Context );
3226         if( !mb_keep )
3227         {
3228             delete m_el[mi_level];
3229         }
3230         mb_keep = VLC_FALSE;
3231     }
3232
3233     m_el[mi_level] = m_es->FindNextElement( m_el[mi_level - 1]->Generic().Context, i_ulev, 0xFFFFFFFFL, mb_dummy, 1 );
3234 //    mi_remain_size[mi_level] = m_el[mi_level]->GetSize();
3235     if( i_ulev > 0 )
3236     {
3237         while( i_ulev > 0 )
3238         {
3239             if( mi_level == 1 )
3240             {
3241                 mi_level = 0;
3242                 return NULL;
3243             }
3244
3245             delete m_el[mi_level - 1];
3246             m_got = m_el[mi_level -1] = m_el[mi_level];
3247             m_el[mi_level] = NULL;
3248
3249             mi_level--;
3250             i_ulev--;
3251         }
3252         return NULL;
3253     }
3254     else if( m_el[mi_level] == NULL )
3255     {
3256         fprintf( stderr," m_el[mi_level] == NULL\n" );
3257     }
3258
3259     return m_el[mi_level];
3260 }
3261
3262
3263 /*****************************************************************************
3264  * Tools
3265  *  * LoadCues : load the cues element and update index
3266  *
3267  *  * LoadTags : load ... the tags element
3268  *
3269  *  * InformationCreate : create all information, load tags if present
3270  *
3271  *****************************************************************************/
3272 void matroska_segment_c::LoadCues( )
3273 {
3274     int64_t     i_sav_position = es.I_O().getFilePointer();
3275     EbmlParser  *ep;
3276     EbmlElement *el, *cues;
3277
3278     /* *** Load the cue if found *** */
3279     if( i_cues_position < 0 )
3280     {
3281         msg_Warn( &sys.demuxer, "no cues/empty cues found->seek won't be precise" );
3282
3283 //        IndexAppendCluster( cluster );
3284     }
3285
3286     vlc_bool_t b_seekable;
3287
3288     stream_Control( sys.demuxer.s, STREAM_CAN_FASTSEEK, &b_seekable );
3289     if( !b_seekable )
3290         return;
3291
3292     msg_Dbg( &sys.demuxer, "loading cues" );
3293     es.I_O().setFilePointer( i_cues_position, seek_beginning );
3294     cues = es.FindNextID( KaxCues::ClassInfos, 0xFFFFFFFFL);
3295
3296     if( cues == NULL )
3297     {
3298         msg_Err( &sys.demuxer, "cannot load cues (broken seekhead or file)" );
3299         es.I_O().setFilePointer( i_sav_position, seek_beginning );
3300         return;
3301     }
3302
3303     ep = new EbmlParser( &es, cues, &sys.demuxer );
3304     while( ( el = ep->Get() ) != NULL )
3305     {
3306         if( MKV_IS_ID( el, KaxCuePoint ) )
3307         {
3308 #define idx index[i_index]
3309
3310             idx.i_track       = -1;
3311             idx.i_block_number= -1;
3312             idx.i_position    = -1;
3313             idx.i_time        = 0;
3314             idx.b_key         = VLC_TRUE;
3315
3316             ep->Down();
3317             while( ( el = ep->Get() ) != NULL )
3318             {
3319                 if( MKV_IS_ID( el, KaxCueTime ) )
3320                 {
3321                     KaxCueTime &ctime = *(KaxCueTime*)el;
3322
3323                     ctime.ReadData( es.I_O() );
3324
3325                     idx.i_time = uint64( ctime ) * i_timescale / (mtime_t)1000;
3326                 }
3327                 else if( MKV_IS_ID( el, KaxCueTrackPositions ) )
3328                 {
3329                     ep->Down();
3330                     while( ( el = ep->Get() ) != NULL )
3331                     {
3332                         if( MKV_IS_ID( el, KaxCueTrack ) )
3333                         {
3334                             KaxCueTrack &ctrack = *(KaxCueTrack*)el;
3335
3336                             ctrack.ReadData( es.I_O() );
3337                             idx.i_track = uint16( ctrack );
3338                         }
3339                         else if( MKV_IS_ID( el, KaxCueClusterPosition ) )
3340                         {
3341                             KaxCueClusterPosition &ccpos = *(KaxCueClusterPosition*)el;
3342
3343                             ccpos.ReadData( es.I_O() );
3344                             idx.i_position = segment->GetGlobalPosition( uint64( ccpos ) );
3345                         }
3346                         else if( MKV_IS_ID( el, KaxCueBlockNumber ) )
3347                         {
3348                             KaxCueBlockNumber &cbnum = *(KaxCueBlockNumber*)el;
3349
3350                             cbnum.ReadData( es.I_O() );
3351                             idx.i_block_number = uint32( cbnum );
3352                         }
3353                         else
3354                         {
3355                             msg_Dbg( &sys.demuxer, "         * Unknown (%s)", typeid(*el).name() );
3356                         }
3357                     }
3358                     ep->Up();
3359                 }
3360                 else
3361                 {
3362                     msg_Dbg( &sys.demuxer, "     * Unknown (%s)", typeid(*el).name() );
3363                 }
3364             }
3365             ep->Up();
3366
3367 #if 0
3368             msg_Dbg( &sys.demuxer, " * added time="I64Fd" pos="I64Fd
3369                      " track=%d bnum=%d", idx.i_time, idx.i_position,
3370                      idx.i_track, idx.i_block_number );
3371 #endif
3372
3373             i_index++;
3374             if( i_index >= i_index_max )
3375             {
3376                 i_index_max += 1024;
3377                 index = (mkv_index_t*)realloc( index, sizeof( mkv_index_t ) * i_index_max );
3378             }
3379 #undef idx
3380         }
3381         else
3382         {
3383             msg_Dbg( &sys.demuxer, " * Unknown (%s)", typeid(*el).name() );
3384         }
3385     }
3386     delete ep;
3387     delete cues;
3388
3389     b_cues = VLC_TRUE;
3390
3391     msg_Dbg( &sys.demuxer, "loading cues done." );
3392     es.I_O().setFilePointer( i_sav_position, seek_beginning );
3393 }
3394
3395 void matroska_segment_c::LoadTags( )
3396 {
3397     int64_t     i_sav_position = es.I_O().getFilePointer();
3398     EbmlParser  *ep;
3399     EbmlElement *el, *tags;
3400
3401     msg_Dbg( &sys.demuxer, "loading tags" );
3402     es.I_O().setFilePointer( i_tags_position, seek_beginning );
3403     tags = es.FindNextID( KaxTags::ClassInfos, 0xFFFFFFFFL);
3404
3405     if( tags == NULL )
3406     {
3407         msg_Err( &sys.demuxer, "cannot load tags (broken seekhead or file)" );
3408         es.I_O().setFilePointer( i_sav_position, seek_beginning );
3409         return;
3410     }
3411
3412     msg_Dbg( &sys.demuxer, "Tags" );
3413     ep = new EbmlParser( &es, tags, &sys.demuxer );
3414     while( ( el = ep->Get() ) != NULL )
3415     {
3416         if( MKV_IS_ID( el, KaxTag ) )
3417         {
3418             msg_Dbg( &sys.demuxer, "+ Tag" );
3419             ep->Down();
3420             while( ( el = ep->Get() ) != NULL )
3421             {
3422                 if( MKV_IS_ID( el, KaxTagTargets ) )
3423                 {
3424                     msg_Dbg( &sys.demuxer, "|   + Targets" );
3425                     ep->Down();
3426                     while( ( el = ep->Get() ) != NULL )
3427                     {
3428                         msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid( *el ).name() );
3429                     }
3430                     ep->Up();
3431                 }
3432                 else if( MKV_IS_ID( el, KaxTagGeneral ) )
3433                 {
3434                     msg_Dbg( &sys.demuxer, "|   + General" );
3435                     ep->Down();
3436                     while( ( el = ep->Get() ) != NULL )
3437                     {
3438                         msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid( *el ).name() );
3439                     }
3440                     ep->Up();
3441                 }
3442                 else if( MKV_IS_ID( el, KaxTagGenres ) )
3443                 {
3444                     msg_Dbg( &sys.demuxer, "|   + Genres" );
3445                     ep->Down();
3446                     while( ( el = ep->Get() ) != NULL )
3447                     {
3448                         msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid( *el ).name() );
3449                     }
3450                     ep->Up();
3451                 }
3452                 else if( MKV_IS_ID( el, KaxTagAudioSpecific ) )
3453                 {
3454                     msg_Dbg( &sys.demuxer, "|   + Audio Specific" );
3455                     ep->Down();
3456                     while( ( el = ep->Get() ) != NULL )
3457                     {
3458                         msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid( *el ).name() );
3459                     }
3460                     ep->Up();
3461                 }
3462                 else if( MKV_IS_ID( el, KaxTagImageSpecific ) )
3463                 {
3464                     msg_Dbg( &sys.demuxer, "|   + Images Specific" );
3465                     ep->Down();
3466                     while( ( el = ep->Get() ) != NULL )
3467                     {
3468                         msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid( *el ).name() );
3469                     }
3470                     ep->Up();
3471                 }
3472                 else if( MKV_IS_ID( el, KaxTagMultiComment ) )
3473                 {
3474                     msg_Dbg( &sys.demuxer, "|   + Multi Comment" );
3475                 }
3476                 else if( MKV_IS_ID( el, KaxTagMultiCommercial ) )
3477                 {
3478                     msg_Dbg( &sys.demuxer, "|   + Multi Commercial" );
3479                 }
3480                 else if( MKV_IS_ID( el, KaxTagMultiDate ) )
3481                 {
3482                     msg_Dbg( &sys.demuxer, "|   + Multi Date" );
3483                 }
3484                 else if( MKV_IS_ID( el, KaxTagMultiEntity ) )
3485                 {
3486                     msg_Dbg( &sys.demuxer, "|   + Multi Entity" );
3487                 }
3488                 else if( MKV_IS_ID( el, KaxTagMultiIdentifier ) )
3489                 {
3490                     msg_Dbg( &sys.demuxer, "|   + Multi Identifier" );
3491                 }
3492                 else if( MKV_IS_ID( el, KaxTagMultiLegal ) )
3493                 {
3494                     msg_Dbg( &sys.demuxer, "|   + Multi Legal" );
3495                 }
3496                 else if( MKV_IS_ID( el, KaxTagMultiTitle ) )
3497                 {
3498                     msg_Dbg( &sys.demuxer, "|   + Multi Title" );
3499                 }
3500                 else
3501                 {
3502                     msg_Dbg( &sys.demuxer, "|   + Unknown (%s)", typeid( *el ).name() );
3503                 }
3504             }
3505             ep->Up();
3506         }
3507         else
3508         {
3509             msg_Dbg( &sys.demuxer, "+ Unknown (%s)", typeid( *el ).name() );
3510         }
3511     }
3512     delete ep;
3513     delete tags;
3514
3515     msg_Dbg( &sys.demuxer, "loading tags done." );
3516     es.I_O().setFilePointer( i_sav_position, seek_beginning );
3517 }
3518
3519 /*****************************************************************************
3520  * ParseSeekHead:
3521  *****************************************************************************/
3522 void matroska_segment_c::ParseSeekHead( KaxSeekHead *seekhead )
3523 {
3524     EbmlElement *el;
3525     size_t i, j;
3526     int i_upper_level = 0;
3527
3528     msg_Dbg( &sys.demuxer, "|   + Seek head" );
3529
3530     /* Master elements */
3531     seekhead->Read( es, seekhead->Generic().Context, i_upper_level, el, true );
3532
3533     for( i = 0; i < seekhead->ListSize(); i++ )
3534     {
3535         EbmlElement *l = (*seekhead)[i];
3536
3537         if( MKV_IS_ID( l, KaxSeek ) )
3538         {
3539             EbmlMaster *sk = static_cast<EbmlMaster *>(l);
3540             EbmlId id = EbmlVoid::ClassInfos.GlobalId;
3541             int64_t i_pos = -1;
3542
3543             for( j = 0; j < sk->ListSize(); j++ )
3544             {
3545                 EbmlElement *l = (*sk)[j];
3546
3547                 if( MKV_IS_ID( l, KaxSeekID ) )
3548                 {
3549                     KaxSeekID &sid = *(KaxSeekID*)l;
3550                     id = EbmlId( sid.GetBuffer(), sid.GetSize() );
3551                 }
3552                 else if( MKV_IS_ID( l, KaxSeekPosition ) )
3553                 {
3554                     KaxSeekPosition &spos = *(KaxSeekPosition*)l;
3555                     i_pos = uint64( spos );
3556                 }
3557                 else
3558                 {
3559                     msg_Dbg( &sys.demuxer, "|   |   |   + Unknown (%s)", typeid(*l).name() );
3560                 }
3561             }
3562
3563             if( i_pos >= 0 )
3564             {
3565                 if( id == KaxCues::ClassInfos.GlobalId )
3566                 {
3567                     msg_Dbg( &sys.demuxer, "|   |   |   = cues at "I64Fd, i_pos );
3568                     i_cues_position = segment->GetGlobalPosition( i_pos );
3569                 }
3570                 else if( id == KaxChapters::ClassInfos.GlobalId )
3571                 {
3572                     msg_Dbg( &sys.demuxer, "|   |   |   = chapters at "I64Fd, i_pos );
3573                     i_chapters_position = segment->GetGlobalPosition( i_pos );
3574                 }
3575                 else if( id == KaxTags::ClassInfos.GlobalId )
3576                 {
3577                     msg_Dbg( &sys.demuxer, "|   |   |   = tags at "I64Fd, i_pos );
3578                     i_tags_position = segment->GetGlobalPosition( i_pos );
3579                 }
3580             }
3581         }
3582         else
3583         {
3584             msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid(*l).name() );
3585         }
3586     }
3587 }
3588
3589 /*****************************************************************************
3590  * ParseTrackEntry:
3591  *****************************************************************************/
3592 void matroska_segment_c::ParseTrackEntry( KaxTrackEntry *m )
3593 {
3594     size_t i, j, k, n;
3595
3596     mkv_track_t *tk;
3597
3598     msg_Dbg( &sys.demuxer, "|   |   + Track Entry" );
3599
3600     tk = new mkv_track_t();
3601     tracks.push_back( tk );
3602
3603     /* Init the track */
3604     memset( tk, 0, sizeof( mkv_track_t ) );
3605
3606     es_format_Init( &tk->fmt, UNKNOWN_ES, 0 );
3607     tk->fmt.psz_language = strdup("English");
3608     tk->fmt.psz_description = NULL;
3609
3610     tk->b_default = VLC_TRUE;
3611     tk->b_enabled = VLC_TRUE;
3612     tk->b_silent = VLC_FALSE;
3613     tk->i_number = tracks.size() - 1;
3614     tk->i_extra_data = 0;
3615     tk->p_extra_data = NULL;
3616     tk->psz_codec = NULL;
3617     tk->i_default_duration = 0;
3618     tk->f_timecodescale = 1.0;
3619
3620     tk->b_inited = VLC_FALSE;
3621     tk->i_data_init = 0;
3622     tk->p_data_init = NULL;
3623
3624     tk->psz_codec_name = NULL;
3625     tk->psz_codec_settings = NULL;
3626     tk->psz_codec_info_url = NULL;
3627     tk->psz_codec_download_url = NULL;
3628     
3629     tk->i_compression_type = MATROSKA_COMPRESSION_NONE;
3630
3631     for( i = 0; i < m->ListSize(); i++ )
3632     {
3633         EbmlElement *l = (*m)[i];
3634
3635         if( MKV_IS_ID( l, KaxTrackNumber ) )
3636         {
3637             KaxTrackNumber &tnum = *(KaxTrackNumber*)l;
3638
3639             tk->i_number = uint32( tnum );
3640             msg_Dbg( &sys.demuxer, "|   |   |   + Track Number=%u", uint32( tnum ) );
3641         }
3642         else  if( MKV_IS_ID( l, KaxTrackUID ) )
3643         {
3644             KaxTrackUID &tuid = *(KaxTrackUID*)l;
3645
3646             msg_Dbg( &sys.demuxer, "|   |   |   + Track UID=%u",  uint32( tuid ) );
3647         }
3648         else  if( MKV_IS_ID( l, KaxTrackType ) )
3649         {
3650             char *psz_type;
3651             KaxTrackType &ttype = *(KaxTrackType*)l;
3652
3653             switch( uint8(ttype) )
3654             {
3655                 case track_audio:
3656                     psz_type = "audio";
3657                     tk->fmt.i_cat = AUDIO_ES;
3658                     break;
3659                 case track_video:
3660                     psz_type = "video";
3661                     tk->fmt.i_cat = VIDEO_ES;
3662                     break;
3663                 case track_subtitle:
3664                     psz_type = "subtitle";
3665                     tk->fmt.i_cat = SPU_ES;
3666                     break;
3667                 case track_buttons:
3668                     psz_type = "buttons";
3669                     tk->fmt.i_cat = SPU_ES;
3670                     break;
3671                 default:
3672                     psz_type = "unknown";
3673                     tk->fmt.i_cat = UNKNOWN_ES;
3674                     break;
3675             }
3676
3677             msg_Dbg( &sys.demuxer, "|   |   |   + Track Type=%s", psz_type );
3678         }
3679 //        else  if( EbmlId( *l ) == KaxTrackFlagEnabled::ClassInfos.GlobalId )
3680 //        {
3681 //            KaxTrackFlagEnabled &fenb = *(KaxTrackFlagEnabled*)l;
3682
3683 //            tk->b_enabled = uint32( fenb );
3684 //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Enabled=%u",
3685 //                     uint32( fenb )  );
3686 //        }
3687         else  if( MKV_IS_ID( l, KaxTrackFlagDefault ) )
3688         {
3689             KaxTrackFlagDefault &fdef = *(KaxTrackFlagDefault*)l;
3690
3691             tk->b_default = uint32( fdef );
3692             msg_Dbg( &sys.demuxer, "|   |   |   + Track Default=%u", uint32( fdef )  );
3693         }
3694         else  if( MKV_IS_ID( l, KaxTrackFlagLacing ) )
3695         {
3696             KaxTrackFlagLacing &lac = *(KaxTrackFlagLacing*)l;
3697
3698             msg_Dbg( &sys.demuxer, "|   |   |   + Track Lacing=%d", uint32( lac ) );
3699         }
3700         else  if( MKV_IS_ID( l, KaxTrackMinCache ) )
3701         {
3702             KaxTrackMinCache &cmin = *(KaxTrackMinCache*)l;
3703
3704             msg_Dbg( &sys.demuxer, "|   |   |   + Track MinCache=%d", uint32( cmin ) );
3705         }
3706         else  if( MKV_IS_ID( l, KaxTrackMaxCache ) )
3707         {
3708             KaxTrackMaxCache &cmax = *(KaxTrackMaxCache*)l;
3709
3710             msg_Dbg( &sys.demuxer, "|   |   |   + Track MaxCache=%d", uint32( cmax ) );
3711         }
3712         else  if( MKV_IS_ID( l, KaxTrackDefaultDuration ) )
3713         {
3714             KaxTrackDefaultDuration &defd = *(KaxTrackDefaultDuration*)l;
3715
3716             tk->i_default_duration = uint64(defd);
3717             msg_Dbg( &sys.demuxer, "|   |   |   + Track Default Duration="I64Fd, uint64(defd) );
3718         }
3719         else  if( MKV_IS_ID( l, KaxTrackTimecodeScale ) )
3720         {
3721             KaxTrackTimecodeScale &ttcs = *(KaxTrackTimecodeScale*)l;
3722
3723             tk->f_timecodescale = float( ttcs );
3724             msg_Dbg( &sys.demuxer, "|   |   |   + Track TimeCodeScale=%f", tk->f_timecodescale );
3725         }
3726         else if( MKV_IS_ID( l, KaxTrackName ) )
3727         {
3728             KaxTrackName &tname = *(KaxTrackName*)l;
3729
3730             tk->fmt.psz_description = UTF8ToStr( UTFstring( tname ) );
3731             msg_Dbg( &sys.demuxer, "|   |   |   + Track Name=%s", tk->fmt.psz_description );
3732         }
3733         else  if( MKV_IS_ID( l, KaxTrackLanguage ) )
3734         {
3735             KaxTrackLanguage &lang = *(KaxTrackLanguage*)l;
3736
3737             tk->fmt.psz_language = strdup( string( lang ).c_str() );
3738             msg_Dbg( &sys.demuxer,
3739                      "|   |   |   + Track Language=`%s'", tk->fmt.psz_language );
3740         }
3741         else  if( MKV_IS_ID( l, KaxCodecID ) )
3742         {
3743             KaxCodecID &codecid = *(KaxCodecID*)l;
3744
3745             tk->psz_codec = strdup( string( codecid ).c_str() );
3746             msg_Dbg( &sys.demuxer, "|   |   |   + Track CodecId=%s", string( codecid ).c_str() );
3747         }
3748         else  if( MKV_IS_ID( l, KaxCodecPrivate ) )
3749         {
3750             KaxCodecPrivate &cpriv = *(KaxCodecPrivate*)l;
3751
3752             tk->i_extra_data = cpriv.GetSize();
3753             if( tk->i_extra_data > 0 )
3754             {
3755                 tk->p_extra_data = (uint8_t*)malloc( tk->i_extra_data );
3756                 memcpy( tk->p_extra_data, cpriv.GetBuffer(), tk->i_extra_data );
3757             }
3758             msg_Dbg( &sys.demuxer, "|   |   |   + Track CodecPrivate size="I64Fd, cpriv.GetSize() );
3759         }
3760         else if( MKV_IS_ID( l, KaxCodecName ) )
3761         {
3762             KaxCodecName &cname = *(KaxCodecName*)l;
3763
3764             tk->psz_codec_name = UTF8ToStr( UTFstring( cname ) );
3765             msg_Dbg( &sys.demuxer, "|   |   |   + Track Codec Name=%s", tk->psz_codec_name );
3766         }
3767         else if( MKV_IS_ID( l, KaxContentEncodings ) )
3768         {
3769             EbmlMaster *cencs = static_cast<EbmlMaster*>(l);
3770             MkvTree( sys.demuxer, 3, "Content Encodings" );
3771             for( j = 0; j < cencs->ListSize(); j++ )
3772             {
3773                 EbmlElement *l2 = (*cencs)[j];
3774                 if( MKV_IS_ID( l2, KaxContentEncoding ) )
3775                 {
3776                     MkvTree( sys.demuxer, 4, "Content Encoding" );
3777                     EbmlMaster *cenc = static_cast<EbmlMaster*>(l2);
3778                     for( k = 0; k < cenc->ListSize(); k++ )
3779                     {
3780                         EbmlElement *l3 = (*cenc)[k];
3781                         if( MKV_IS_ID( l3, KaxContentEncodingOrder ) )
3782                         {
3783                             KaxContentEncodingOrder &encord = *(KaxContentEncodingOrder*)l3;
3784                             MkvTree( sys.demuxer, 5, "Order: %i", uint32( encord ) );
3785                         }
3786                         else if( MKV_IS_ID( l3, KaxContentEncodingScope ) )
3787                         {
3788                             KaxContentEncodingScope &encscope = *(KaxContentEncodingScope*)l3;
3789                             MkvTree( sys.demuxer, 5, "Scope: %i", uint32( encscope ) );
3790                         }
3791                         else if( MKV_IS_ID( l3, KaxContentEncodingType ) )
3792                         {
3793                             KaxContentEncodingType &enctype = *(KaxContentEncodingType*)l3;
3794                             MkvTree( sys.demuxer, 5, "Type: %i", uint32( enctype ) );
3795                         }
3796                         else if( MKV_IS_ID( l3, KaxContentCompression ) )
3797                         {
3798                             EbmlMaster *compr = static_cast<EbmlMaster*>(l3);
3799                             MkvTree( sys.demuxer, 5, "Content Compression" );
3800                             for( n = 0; n < compr->ListSize(); n++ )
3801                             {
3802                                 EbmlElement *l4 = (*compr)[n];
3803                                 if( MKV_IS_ID( l4, KaxContentCompAlgo ) )
3804                                 {
3805                                     KaxContentCompAlgo &compalg = *(KaxContentCompAlgo*)l4;
3806                                     MkvTree( sys.demuxer, 6, "Compression Algorithm: %i", uint32(compalg) );
3807                                     if( uint32( compalg ) == 0 )
3808                                     {
3809                                         tk->i_compression_type = MATROSKA_COMPRESSION_ZLIB;
3810                                     }
3811                                 }
3812                                 else
3813                                 {
3814                                     MkvTree( sys.demuxer, 6, "Unknown (%s)", typeid(*l4).name() );
3815                                 }
3816                             }
3817                         }
3818
3819                         else
3820                         {
3821                             MkvTree( sys.demuxer, 5, "Unknown (%s)", typeid(*l3).name() );
3822                         }
3823                     }
3824                     
3825                 }
3826                 else
3827                 {
3828                     MkvTree( sys.demuxer, 4, "Unknown (%s)", typeid(*l2).name() );
3829                 }
3830             }
3831                 
3832         }
3833 //        else if( EbmlId( *l ) == KaxCodecSettings::ClassInfos.GlobalId )
3834 //        {
3835 //            KaxCodecSettings &cset = *(KaxCodecSettings*)l;
3836
3837 //            tk->psz_codec_settings = UTF8ToStr( UTFstring( cset ) );
3838 //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Codec Settings=%s", tk->psz_codec_settings );
3839 //        }
3840 //        else if( EbmlId( *l ) == KaxCodecInfoURL::ClassInfos.GlobalId )
3841 //        {
3842 //            KaxCodecInfoURL &ciurl = *(KaxCodecInfoURL*)l;
3843
3844 //            tk->psz_codec_info_url = strdup( string( ciurl ).c_str() );
3845 //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Codec Info URL=%s", tk->psz_codec_info_url );
3846 //        }
3847 //        else if( EbmlId( *l ) == KaxCodecDownloadURL::ClassInfos.GlobalId )
3848 //        {
3849 //            KaxCodecDownloadURL &cdurl = *(KaxCodecDownloadURL*)l;
3850
3851 //            tk->psz_codec_download_url = strdup( string( cdurl ).c_str() );
3852 //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Codec Info URL=%s", tk->psz_codec_download_url );
3853 //        }
3854 //        else if( EbmlId( *l ) == KaxCodecDecodeAll::ClassInfos.GlobalId )
3855 //        {
3856 //            KaxCodecDecodeAll &cdall = *(KaxCodecDecodeAll*)l;
3857
3858 //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Codec Decode All=%u <== UNUSED", uint8( cdall ) );
3859 //        }
3860 //        else if( EbmlId( *l ) == KaxTrackOverlay::ClassInfos.GlobalId )
3861 //        {
3862 //            KaxTrackOverlay &tovr = *(KaxTrackOverlay*)l;
3863
3864 //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Overlay=%u <== UNUSED", uint32( tovr ) );
3865 //        }
3866         else  if( MKV_IS_ID( l, KaxTrackVideo ) )
3867         {
3868             EbmlMaster *tkv = static_cast<EbmlMaster*>(l);
3869             unsigned int j;
3870
3871             msg_Dbg( &sys.demuxer, "|   |   |   + Track Video" );
3872             tk->f_fps = 0.0;
3873
3874             for( j = 0; j < tkv->ListSize(); j++ )
3875             {
3876                 EbmlElement *l = (*tkv)[j];
3877 //                if( EbmlId( *el4 ) == KaxVideoFlagInterlaced::ClassInfos.GlobalId )
3878 //                {
3879 //                    KaxVideoFlagInterlaced &fint = *(KaxVideoFlagInterlaced*)el4;
3880
3881 //                    msg_Dbg( &sys.demuxer, "|   |   |   |   + Track Video Interlaced=%u", uint8( fint ) );
3882 //                }
3883 //                else if( EbmlId( *el4 ) == KaxVideoStereoMode::ClassInfos.GlobalId )
3884 //                {
3885 //                    KaxVideoStereoMode &stereo = *(KaxVideoStereoMode*)el4;
3886
3887 //                    msg_Dbg( &sys.demuxer, "|   |   |   |   + Track Video Stereo Mode=%u", uint8( stereo ) );
3888 //                }
3889 //                else
3890                 if( MKV_IS_ID( l, KaxVideoPixelWidth ) )
3891                 {
3892                     KaxVideoPixelWidth &vwidth = *(KaxVideoPixelWidth*)l;
3893
3894                     tk->fmt.video.i_width = uint16( vwidth );
3895                     msg_Dbg( &sys.demuxer, "|   |   |   |   + width=%d", uint16( vwidth ) );
3896                 }
3897                 else if( MKV_IS_ID( l, KaxVideoPixelHeight ) )
3898                 {
3899                     KaxVideoPixelWidth &vheight = *(KaxVideoPixelWidth*)l;
3900
3901                     tk->fmt.video.i_height = uint16( vheight );
3902                     msg_Dbg( &sys.demuxer, "|   |   |   |   + height=%d", uint16( vheight ) );
3903                 }
3904                 else if( MKV_IS_ID( l, KaxVideoDisplayWidth ) )
3905                 {
3906                     KaxVideoDisplayWidth &vwidth = *(KaxVideoDisplayWidth*)l;
3907
3908                     tk->fmt.video.i_visible_width = uint16( vwidth );
3909                     msg_Dbg( &sys.demuxer, "|   |   |   |   + display width=%d", uint16( vwidth ) );
3910                 }
3911                 else if( MKV_IS_ID( l, KaxVideoDisplayHeight ) )
3912                 {
3913                     KaxVideoDisplayWidth &vheight = *(KaxVideoDisplayWidth*)l;
3914
3915                     tk->fmt.video.i_visible_height = uint16( vheight );
3916                     msg_Dbg( &sys.demuxer, "|   |   |   |   + display height=%d", uint16( vheight ) );
3917                 }
3918                 else if( MKV_IS_ID( l, KaxVideoFrameRate ) )
3919                 {
3920                     KaxVideoFrameRate &vfps = *(KaxVideoFrameRate*)l;
3921
3922                     tk->f_fps = float( vfps );
3923                     msg_Dbg( &sys.demuxer, "   |   |   |   + fps=%f", float( vfps ) );
3924                 }
3925 //                else if( EbmlId( *l ) == KaxVideoDisplayUnit::ClassInfos.GlobalId )
3926 //                {
3927 //                     KaxVideoDisplayUnit &vdmode = *(KaxVideoDisplayUnit*)l;
3928
3929 //                    msg_Dbg( &sys.demuxer, "|   |   |   |   + Track Video Display Unit=%s",
3930 //                             uint8( vdmode ) == 0 ? "pixels" : ( uint8( vdmode ) == 1 ? "centimeters": "inches" ) );
3931 //                }
3932 //                else if( EbmlId( *l ) == KaxVideoAspectRatio::ClassInfos.GlobalId )
3933 //                {
3934 //                    KaxVideoAspectRatio &ratio = *(KaxVideoAspectRatio*)l;
3935
3936 //                    msg_Dbg( &sys.demuxer, "   |   |   |   + Track Video Aspect Ratio Type=%u", uint8( ratio ) );
3937 //                }
3938 //                else if( EbmlId( *l ) == KaxVideoGamma::ClassInfos.GlobalId )
3939 //                {
3940 //                    KaxVideoGamma &gamma = *(KaxVideoGamma*)l;
3941
3942 //                    msg_Dbg( &sys.demuxer, "   |   |   |   + fps=%f", float( gamma ) );
3943 //                }
3944                 else
3945                 {
3946                     msg_Dbg( &sys.demuxer, "|   |   |   |   + Unknown (%s)", typeid(*l).name() );
3947                 }
3948             }
3949             if ( tk->fmt.video.i_visible_height && tk->fmt.video.i_visible_width )
3950                 tk->fmt.video.i_aspect = VOUT_ASPECT_FACTOR * tk->fmt.video.i_visible_width / tk->fmt.video.i_visible_height;
3951         }
3952         else  if( MKV_IS_ID( l, KaxTrackAudio ) )
3953         {
3954             EbmlMaster *tka = static_cast<EbmlMaster*>(l);
3955             unsigned int j;
3956
3957             msg_Dbg( &sys.demuxer, "|   |   |   + Track Audio" );
3958
3959             for( j = 0; j < tka->ListSize(); j++ )
3960             {
3961                 EbmlElement *l = (*tka)[j];
3962
3963                 if( MKV_IS_ID( l, KaxAudioSamplingFreq ) )
3964                 {
3965                     KaxAudioSamplingFreq &afreq = *(KaxAudioSamplingFreq*)l;
3966
3967                     tk->fmt.audio.i_rate = (int)float( afreq );
3968                     msg_Dbg( &sys.demuxer, "|   |   |   |   + afreq=%d", tk->fmt.audio.i_rate );
3969                 }
3970                 else if( MKV_IS_ID( l, KaxAudioChannels ) )
3971                 {
3972                     KaxAudioChannels &achan = *(KaxAudioChannels*)l;
3973
3974                     tk->fmt.audio.i_channels = uint8( achan );
3975                     msg_Dbg( &sys.demuxer, "|   |   |   |   + achan=%u", uint8( achan ) );
3976                 }
3977                 else if( MKV_IS_ID( l, KaxAudioBitDepth ) )
3978                 {
3979                     KaxAudioBitDepth &abits = *(KaxAudioBitDepth*)l;
3980
3981                     tk->fmt.audio.i_bitspersample = uint8( abits );
3982                     msg_Dbg( &sys.demuxer, "|   |   |   |   + abits=%u", uint8( abits ) );
3983                 }
3984                 else
3985                 {
3986                     msg_Dbg( &sys.demuxer, "|   |   |   |   + Unknown (%s)", typeid(*l).name() );
3987                 }
3988             }
3989         }
3990         else
3991         {
3992             msg_Dbg( &sys.demuxer, "|   |   |   + Unknown (%s)",
3993                      typeid(*l).name() );
3994         }
3995     }
3996 }
3997
3998 /*****************************************************************************
3999  * ParseTracks:
4000  *****************************************************************************/
4001 void matroska_segment_c::ParseTracks( KaxTracks *tracks )
4002 {
4003     EbmlElement *el;
4004     unsigned int i;
4005     int i_upper_level = 0;
4006
4007     msg_Dbg( &sys.demuxer, "|   + Tracks" );
4008
4009     /* Master elements */
4010     tracks->Read( es, tracks->Generic().Context, i_upper_level, el, true );
4011
4012     for( i = 0; i < tracks->ListSize(); i++ )
4013     {
4014         EbmlElement *l = (*tracks)[i];
4015
4016         if( MKV_IS_ID( l, KaxTrackEntry ) )
4017         {
4018             ParseTrackEntry( static_cast<KaxTrackEntry *>(l) );
4019         }
4020         else
4021         {
4022             msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid(*l).name() );
4023         }
4024     }
4025 }
4026
4027 /*****************************************************************************
4028  * ParseInfo:
4029  *****************************************************************************/
4030 void matroska_segment_c::ParseInfo( KaxInfo *info )
4031 {
4032     EbmlElement *el;
4033     EbmlMaster  *m;
4034     size_t i, j;
4035     int i_upper_level = 0;
4036
4037     msg_Dbg( &sys.demuxer, "|   + Information" );
4038
4039     /* Master elements */
4040     m = static_cast<EbmlMaster *>(info);
4041     m->Read( es, info->Generic().Context, i_upper_level, el, true );
4042
4043     for( i = 0; i < m->ListSize(); i++ )
4044     {
4045         EbmlElement *l = (*m)[i];
4046
4047         if( MKV_IS_ID( l, KaxSegmentUID ) )
4048         {
4049             segment_uid = *(new KaxSegmentUID(*static_cast<KaxSegmentUID*>(l)));
4050
4051             msg_Dbg( &sys.demuxer, "|   |   + UID=%d", *(uint32*)segment_uid.GetBuffer() );
4052         }
4053         else if( MKV_IS_ID( l, KaxPrevUID ) )
4054         {
4055             prev_segment_uid = *(new KaxPrevUID(*static_cast<KaxPrevUID*>(l)));
4056
4057             msg_Dbg( &sys.demuxer, "|   |   + PrevUID=%d", *(uint32*)prev_segment_uid.GetBuffer() );
4058         }
4059         else if( MKV_IS_ID( l, KaxNextUID ) )
4060         {
4061             next_segment_uid = *(new KaxNextUID(*static_cast<KaxNextUID*>(l)));
4062
4063             msg_Dbg( &sys.demuxer, "|   |   + NextUID=%d", *(uint32*)next_segment_uid.GetBuffer() );
4064         }
4065         else if( MKV_IS_ID( l, KaxTimecodeScale ) )
4066         {
4067             KaxTimecodeScale &tcs = *(KaxTimecodeScale*)l;
4068
4069             i_timescale = uint64(tcs);
4070
4071             msg_Dbg( &sys.demuxer, "|   |   + TimecodeScale="I64Fd,
4072                      i_timescale );
4073         }
4074         else if( MKV_IS_ID( l, KaxDuration ) )
4075         {
4076             KaxDuration &dur = *(KaxDuration*)l;
4077
4078             i_duration = mtime_t( double( dur ) );
4079
4080             msg_Dbg( &sys.demuxer, "|   |   + Duration="I64Fd,
4081                      i_duration );
4082         }
4083         else if( MKV_IS_ID( l, KaxMuxingApp ) )
4084         {
4085             KaxMuxingApp &mapp = *(KaxMuxingApp*)l;
4086
4087             psz_muxing_application = UTF8ToStr( UTFstring( mapp ) );
4088
4089             msg_Dbg( &sys.demuxer, "|   |   + Muxing Application=%s",
4090                      psz_muxing_application );
4091         }
4092         else if( MKV_IS_ID( l, KaxWritingApp ) )
4093         {
4094             KaxWritingApp &wapp = *(KaxWritingApp*)l;
4095
4096             psz_writing_application = UTF8ToStr( UTFstring( wapp ) );
4097
4098             msg_Dbg( &sys.demuxer, "|   |   + Writing Application=%s",
4099                      psz_writing_application );
4100         }
4101         else if( MKV_IS_ID( l, KaxSegmentFilename ) )
4102         {
4103             KaxSegmentFilename &sfn = *(KaxSegmentFilename*)l;
4104
4105             psz_segment_filename = UTF8ToStr( UTFstring( sfn ) );
4106
4107             msg_Dbg( &sys.demuxer, "|   |   + Segment Filename=%s",
4108                      psz_segment_filename );
4109         }
4110         else if( MKV_IS_ID( l, KaxTitle ) )
4111         {
4112             KaxTitle &title = *(KaxTitle*)l;
4113
4114             psz_title = UTF8ToStr( UTFstring( title ) );
4115
4116             msg_Dbg( &sys.demuxer, "|   |   + Title=%s", psz_title );
4117         }
4118         else if( MKV_IS_ID( l, KaxSegmentFamily ) )
4119         {
4120             KaxSegmentFamily *uid = static_cast<KaxSegmentFamily*>(l);
4121
4122             families.push_back(*uid);
4123
4124             msg_Dbg( &sys.demuxer, "|   |   + family=%d", *(uint32*)uid->GetBuffer() );
4125         }
4126 #if defined( HAVE_GMTIME_R ) && !defined( SYS_DARWIN )
4127         else if( MKV_IS_ID( l, KaxDateUTC ) )
4128         {
4129             KaxDateUTC &date = *(KaxDateUTC*)l;
4130             time_t i_date;
4131             struct tm tmres;
4132             char   buffer[256];
4133
4134             i_date = date.GetEpochDate();
4135             memset( buffer, 0, 256 );
4136             if( gmtime_r( &i_date, &tmres ) &&
4137                 asctime_r( &tmres, buffer ) )
4138             {
4139                 buffer[strlen( buffer)-1]= '\0';
4140                 psz_date_utc = strdup( buffer );
4141                 msg_Dbg( &sys.demuxer, "|   |   + Date=%s", psz_date_utc );
4142             }
4143         }
4144 #endif
4145 #if LIBMATROSKA_VERSION >= 0x000704
4146         else if( MKV_IS_ID( l, KaxChapterTranslate ) )
4147         {
4148             KaxChapterTranslate *p_trans = static_cast<KaxChapterTranslate*>( l );
4149             chapter_translation_c translated;
4150
4151             p_trans->Read( es, p_trans->Generic().Context, i_upper_level, el, true );
4152             for( j = 0; j < p_trans->ListSize(); j++ )
4153             {
4154                 EbmlElement *l = (*p_trans)[j];
4155
4156                 if( MKV_IS_ID( l, KaxChapterTranslateEditionUID ) )
4157                 {
4158                     translated.editions.push_back( uint64( *static_cast<KaxChapterTranslateEditionUID*>( l ) ) );
4159                 }
4160                 else if( MKV_IS_ID( l, KaxChapterTranslateCodec ) )
4161                 {
4162                     translated.codec_id = uint32( *static_cast<KaxChapterTranslateCodec*>( l ) );
4163                 }
4164                 else if( MKV_IS_ID( l, KaxChapterTranslateID ) )
4165                 {
4166                     translated.translated = *( new KaxChapterTranslateID( *static_cast<KaxChapterTranslateID*>( l ) ) );
4167                 }
4168             }
4169
4170             translations.push_back( translated );
4171         }
4172 #endif
4173         else
4174         {
4175             msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid(*l).name() );
4176         }
4177     }
4178
4179     double f_dur = double(i_duration) * double(i_timescale) / 1000000.0;
4180     i_duration = mtime_t(f_dur);
4181 }
4182
4183
4184 /*****************************************************************************
4185  * ParseChapterAtom
4186  *****************************************************************************/
4187 void matroska_segment_c::ParseChapterAtom( int i_level, KaxChapterAtom *ca, chapter_item_c & chapters )
4188 {
4189     size_t i, j;
4190
4191     msg_Dbg( &sys.demuxer, "|   |   |   + ChapterAtom (level=%d)", i_level );
4192     for( i = 0; i < ca->ListSize(); i++ )
4193     {
4194         EbmlElement *l = (*ca)[i];
4195
4196         if( MKV_IS_ID( l, KaxChapterUID ) )
4197         {
4198             chapters.i_uid = uint64_t(*(KaxChapterUID*)l);
4199             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterUID: %lld", chapters.i_uid );
4200         }
4201         else if( MKV_IS_ID( l, KaxChapterFlagHidden ) )
4202         {
4203             KaxChapterFlagHidden &flag =*(KaxChapterFlagHidden*)l;
4204             chapters.b_display_seekpoint = uint8( flag ) == 0;
4205
4206             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterFlagHidden: %s", chapters.b_display_seekpoint ? "no":"yes" );
4207         }
4208         else if( MKV_IS_ID( l, KaxChapterTimeStart ) )
4209         {
4210             KaxChapterTimeStart &start =*(KaxChapterTimeStart*)l;
4211             chapters.i_start_time = uint64( start ) / I64C(1000);
4212
4213             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterTimeStart: %lld", chapters.i_start_time );
4214         }
4215         else if( MKV_IS_ID( l, KaxChapterTimeEnd ) )
4216         {
4217             KaxChapterTimeEnd &end =*(KaxChapterTimeEnd*)l;
4218             chapters.i_end_time = uint64( end ) / I64C(1000);
4219
4220             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterTimeEnd: %lld", chapters.i_end_time );
4221         }
4222         else if( MKV_IS_ID( l, KaxChapterDisplay ) )
4223         {
4224             EbmlMaster *cd = static_cast<EbmlMaster *>(l);
4225
4226             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterDisplay" );
4227             for( j = 0; j < cd->ListSize(); j++ )
4228             {
4229                 EbmlElement *l= (*cd)[j];
4230
4231                 if( MKV_IS_ID( l, KaxChapterString ) )
4232                 {
4233                     int k;
4234
4235                     KaxChapterString &name =*(KaxChapterString*)l;
4236                     for (k = 0; k < i_level; k++)
4237                         chapters.psz_name += '+';
4238                     chapters.psz_name += ' ';
4239                     chapters.psz_name += UTF8ToStr( UTFstring( name ) );
4240                     chapters.b_user_display = true;
4241
4242                     msg_Dbg( &sys.demuxer, "|   |   |   |   |    + ChapterString '%s'", UTF8ToStr(UTFstring(name)) );
4243                 }
4244                 else if( MKV_IS_ID( l, KaxChapterLanguage ) )
4245                 {
4246                     KaxChapterLanguage &lang =*(KaxChapterLanguage*)l;
4247                     const char *psz = string( lang ).c_str();
4248
4249                     msg_Dbg( &sys.demuxer, "|   |   |   |   |    + ChapterLanguage '%s'", psz );
4250                 }
4251                 else if( MKV_IS_ID( l, KaxChapterCountry ) )
4252                 {
4253                     KaxChapterCountry &ct =*(KaxChapterCountry*)l;
4254                     const char *psz = string( ct ).c_str();
4255
4256                     msg_Dbg( &sys.demuxer, "|   |   |   |   |    + ChapterCountry '%s'", psz );
4257                 }
4258             }
4259         }
4260         else if( MKV_IS_ID( l, KaxChapterProcess ) )
4261         {
4262             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterProcess" );
4263
4264             KaxChapterProcess *cp = static_cast<KaxChapterProcess *>(l);
4265             chapter_codec_cmds_c *p_ccodec = NULL;
4266
4267             for( j = 0; j < cp->ListSize(); j++ )
4268             {
4269                 EbmlElement *k= (*cp)[j];
4270
4271                 if( MKV_IS_ID( k, KaxChapterProcessCodecID ) )
4272                 {
4273                     KaxChapterProcessCodecID *p_codec_id = static_cast<KaxChapterProcessCodecID*>( k );
4274                     if ( uint32(*p_codec_id) == 0 )
4275                         p_ccodec = new matroska_script_codec_c( sys );
4276                     else if ( uint32(*p_codec_id) == 1 )
4277                         p_ccodec = new dvd_chapter_codec_c( sys );
4278                     break;
4279                 }
4280             }
4281
4282             if ( p_ccodec != NULL )
4283             {
4284                 for( j = 0; j < cp->ListSize(); j++ )
4285                 {
4286                     EbmlElement *k= (*cp)[j];
4287
4288                     if( MKV_IS_ID( k, KaxChapterProcessPrivate ) )
4289                     {
4290                         KaxChapterProcessPrivate * p_private = static_cast<KaxChapterProcessPrivate*>( k );
4291                         p_ccodec->SetPrivate( *p_private );
4292                     }
4293                     else if( MKV_IS_ID( k, KaxChapterProcessCommand ) )
4294                     {
4295                         p_ccodec->AddCommand( *static_cast<KaxChapterProcessCommand*>( k ) );
4296                     }
4297                 }
4298                 chapters.codecs.push_back( p_ccodec );
4299             }
4300         }
4301         else if( MKV_IS_ID( l, KaxChapterAtom ) )
4302         {
4303             chapter_item_c *new_sub_chapter = new chapter_item_c();
4304             ParseChapterAtom( i_level+1, static_cast<KaxChapterAtom *>(l), *new_sub_chapter );
4305             new_sub_chapter->psz_parent = &chapters;
4306             chapters.sub_chapters.push_back( new_sub_chapter );
4307         }
4308     }
4309 }
4310
4311 /*****************************************************************************
4312  * ParseChapters:
4313  *****************************************************************************/
4314 void matroska_segment_c::ParseChapters( KaxChapters *chapters )
4315 {
4316     EbmlElement *el;
4317     size_t i;
4318     int i_upper_level = 0;
4319     mtime_t i_dur;
4320
4321     /* Master elements */
4322     chapters->Read( es, chapters->Generic().Context, i_upper_level, el, true );
4323
4324     for( i = 0; i < chapters->ListSize(); i++ )
4325     {
4326         EbmlElement *l = (*chapters)[i];
4327
4328         if( MKV_IS_ID( l, KaxEditionEntry ) )
4329         {
4330             chapter_edition_c *p_edition = new chapter_edition_c();
4331             
4332             EbmlMaster *E = static_cast<EbmlMaster *>(l );
4333             size_t j;
4334             msg_Dbg( &sys.demuxer, "|   |   + EditionEntry" );
4335             for( j = 0; j < E->ListSize(); j++ )
4336             {
4337                 EbmlElement *l = (*E)[j];
4338
4339                 if( MKV_IS_ID( l, KaxChapterAtom ) )
4340                 {
4341                     chapter_item_c *new_sub_chapter = new chapter_item_c();
4342                     ParseChapterAtom( 0, static_cast<KaxChapterAtom *>(l), *new_sub_chapter );
4343                     p_edition->sub_chapters.push_back( new_sub_chapter );
4344                 }
4345                 else if( MKV_IS_ID( l, KaxEditionUID ) )
4346                 {
4347                     p_edition->i_uid = uint64(*static_cast<KaxEditionUID *>( l ));
4348                 }
4349                 else if( MKV_IS_ID( l, KaxEditionFlagOrdered ) )
4350                 {
4351                     p_edition->b_ordered = config_GetInt( &sys.demuxer, "mkv-use-ordered-chapters" ) ? (uint8(*static_cast<KaxEditionFlagOrdered *>( l )) != 0) : 0;
4352                 }
4353                 else if( MKV_IS_ID( l, KaxEditionFlagDefault ) )
4354                 {
4355                     if (uint8(*static_cast<KaxEditionFlagDefault *>( l )) != 0)
4356                         i_default_edition = stored_editions.size();
4357                 }
4358                 else
4359                 {
4360                     msg_Dbg( &sys.demuxer, "|   |   |   + Unknown (%s)", typeid(*l).name() );
4361                 }
4362             }
4363             stored_editions.push_back( p_edition );
4364         }
4365         else
4366         {
4367             msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid(*l).name() );
4368         }
4369     }
4370
4371     for( i = 0; i < stored_editions.size(); i++ )
4372     {
4373         stored_editions[i]->RefreshChapters( );
4374     }
4375     
4376     if ( stored_editions[i_default_edition]->b_ordered )
4377     {
4378         /* update the duration of the segment according to the sum of all sub chapters */
4379         i_dur = stored_editions[i_default_edition]->Duration() / I64C(1000);
4380         if (i_dur > 0)
4381             i_duration = i_dur;
4382     }
4383 }
4384
4385 void matroska_segment_c::ParseCluster( )
4386 {
4387     EbmlElement *el;
4388     EbmlMaster  *m;
4389     unsigned int i;
4390     int i_upper_level = 0;
4391
4392     /* Master elements */
4393     m = static_cast<EbmlMaster *>( cluster );
4394     m->Read( es, cluster->Generic().Context, i_upper_level, el, true );
4395
4396     for( i = 0; i < m->ListSize(); i++ )
4397     {
4398         EbmlElement *l = (*m)[i];
4399
4400         if( MKV_IS_ID( l, KaxClusterTimecode ) )
4401         {
4402             KaxClusterTimecode &ctc = *(KaxClusterTimecode*)l;
4403
4404             cluster->InitTimecode( uint64( ctc ), i_timescale );
4405             break;
4406         }
4407     }
4408
4409     i_start_time = cluster->GlobalTimecode() / 1000;
4410 }
4411
4412 /*****************************************************************************
4413  * InformationCreate:
4414  *****************************************************************************/
4415 void matroska_segment_c::InformationCreate( )
4416 {
4417     size_t      i_track;
4418
4419     sys.meta = vlc_meta_New();
4420
4421     if( psz_title )
4422     {
4423         vlc_meta_Add( sys.meta, VLC_META_TITLE, psz_title );
4424     }
4425     if( psz_date_utc )
4426     {
4427         vlc_meta_Add( sys.meta, VLC_META_DATE, psz_date_utc );
4428     }
4429     if( psz_segment_filename )
4430     {
4431         vlc_meta_Add( sys.meta, _("Segment filename"), psz_segment_filename );
4432     }
4433     if( psz_muxing_application )
4434     {
4435         vlc_meta_Add( sys.meta, _("Muxing application"), psz_muxing_application );
4436     }
4437     if( psz_writing_application )
4438     {
4439         vlc_meta_Add( sys.meta, _("Writing application"), psz_writing_application );
4440     }
4441
4442     for( i_track = 0; i_track < tracks.size(); i_track++ )
4443     {
4444         mkv_track_t *tk = tracks[i_track];
4445         vlc_meta_t *mtk = vlc_meta_New();
4446
4447         sys.meta->track = (vlc_meta_t**)realloc( sys.meta->track,
4448                                                     sizeof( vlc_meta_t * ) * ( sys.meta->i_track + 1 ) );
4449         sys.meta->track[sys.meta->i_track++] = mtk;
4450
4451         if( tk->fmt.psz_description )
4452         {
4453             vlc_meta_Add( sys.meta, VLC_META_DESCRIPTION, tk->fmt.psz_description );
4454         }
4455         if( tk->psz_codec_name )
4456         {
4457             vlc_meta_Add( sys.meta, VLC_META_CODEC_NAME, tk->psz_codec_name );
4458         }
4459         if( tk->psz_codec_settings )
4460         {
4461             vlc_meta_Add( sys.meta, VLC_META_SETTING, tk->psz_codec_settings );
4462         }
4463         if( tk->psz_codec_info_url )
4464         {
4465             vlc_meta_Add( sys.meta, VLC_META_CODEC_DESCRIPTION, tk->psz_codec_info_url );
4466         }
4467         if( tk->psz_codec_download_url )
4468         {
4469             vlc_meta_Add( sys.meta, VLC_META_URL, tk->psz_codec_download_url );
4470         }
4471     }
4472
4473     if( i_tags_position >= 0 )
4474     {
4475         vlc_bool_t b_seekable;
4476
4477         stream_Control( sys.demuxer.s, STREAM_CAN_FASTSEEK, &b_seekable );
4478         if( b_seekable )
4479         {
4480             LoadTags( );
4481         }
4482     }
4483 }
4484
4485
4486 /*****************************************************************************
4487  * Divers
4488  *****************************************************************************/
4489
4490 void matroska_segment_c::IndexAppendCluster( KaxCluster *cluster )
4491 {
4492 #define idx index[i_index]
4493     idx.i_track       = -1;
4494     idx.i_block_number= -1;
4495     idx.i_position    = cluster->GetElementPosition();
4496     idx.i_time        = -1;
4497     idx.b_key         = VLC_TRUE;
4498
4499     i_index++;
4500     if( i_index >= i_index_max )
4501     {
4502         i_index_max += 1024;
4503         index = (mkv_index_t*)realloc( index, sizeof( mkv_index_t ) * i_index_max );
4504     }
4505 #undef idx
4506 }
4507
4508 static char * UTF8ToStr( const UTFstring &u )
4509 {
4510     int     i_src;
4511     const wchar_t *src;
4512     char *dst, *p;
4513
4514     i_src = u.length();
4515     src   = u.c_str();
4516
4517     p = dst = (char*)malloc( i_src + 1);
4518     while( i_src > 0 )
4519     {
4520         if( *src < 255 )
4521         {
4522             *p++ = (char)*src;
4523         }
4524         else
4525         {
4526             *p++ = '?';
4527         }
4528         src++;
4529         i_src--;
4530     }
4531     *p++= '\0';
4532
4533     return dst;
4534 }
4535
4536 void chapter_edition_c::RefreshChapters( )
4537 {
4538     chapter_item_c::RefreshChapters( b_ordered, -1 );
4539     b_display_seekpoint = false;
4540 }
4541
4542 int64_t chapter_item_c::RefreshChapters( bool b_ordered, int64_t i_prev_user_time )
4543 {
4544     int64_t i_user_time = i_prev_user_time;
4545     
4546     // first the sub-chapters, and then ourself
4547     std::vector<chapter_item_c*>::iterator index = sub_chapters.begin();
4548     while ( index != sub_chapters.end() )
4549     {
4550         i_user_time = (*index)->RefreshChapters( b_ordered, i_user_time );
4551         index++;
4552     }
4553
4554     if ( b_ordered )
4555     {
4556         // the ordered chapters always start at zero
4557         if ( i_prev_user_time == -1 )
4558         {
4559             if ( i_user_time == -1 )
4560                 i_user_time = 0;
4561             i_prev_user_time = 0;
4562         }
4563
4564         i_user_start_time = i_prev_user_time;
4565         if ( i_end_time != -1 && i_user_time == i_prev_user_time )
4566         {
4567             i_user_end_time = i_user_start_time - i_start_time + i_end_time;
4568         }
4569         else
4570         {
4571             i_user_end_time = i_user_time;
4572         }
4573     }
4574     else
4575     {
4576         std::sort( sub_chapters.begin(), sub_chapters.end() );
4577         i_user_start_time = i_start_time;
4578         if ( i_end_time != -1 )
4579             i_user_end_time = i_end_time;
4580         else if ( i_user_time != -1 )
4581             i_user_end_time = i_user_time;
4582         else
4583             i_user_end_time = i_user_start_time;
4584     }
4585
4586     return i_user_end_time;
4587 }
4588
4589 mtime_t chapter_edition_c::Duration() const
4590 {
4591     mtime_t i_result = 0;
4592     
4593     if ( sub_chapters.size() )
4594     {
4595         std::vector<chapter_item_c*>::const_iterator index = sub_chapters.end();
4596         index--;
4597         i_result = (*index)->i_user_end_time;
4598     }
4599     
4600     return i_result;
4601 }
4602
4603 chapter_item_c *chapter_item_c::FindTimecode( mtime_t i_user_timecode )
4604 {
4605     chapter_item_c *psz_result = NULL;
4606
4607     if ( i_user_timecode >= i_user_start_time && 
4608         ( i_user_timecode < i_user_end_time || 
4609           ( i_user_start_time == i_user_end_time && i_user_timecode == i_user_end_time )))
4610     {
4611         std::vector<chapter_item_c*>::iterator index = sub_chapters.begin();
4612         while ( index != sub_chapters.end() && psz_result == NULL )
4613         {
4614             psz_result = (*index)->FindTimecode( i_user_timecode );
4615             index++;
4616         }
4617         
4618         if ( psz_result == NULL )
4619             psz_result = this;
4620     }
4621
4622     return psz_result;
4623 }
4624
4625 bool chapter_item_c::ParentOf( const chapter_item_c & item ) const
4626 {
4627     if ( &item == this )
4628         return true;
4629
4630     std::vector<chapter_item_c*>::const_iterator index = sub_chapters.begin();
4631     while ( index != sub_chapters.end() )
4632     {
4633         if ( (*index)->ParentOf( item ) )
4634             return true;
4635         index++;
4636     }
4637
4638     return false;
4639 }
4640
4641 void demux_sys_t::PreloadFamily( const matroska_segment_c & of_segment )
4642 {
4643     for (size_t i=0; i<opened_segments.size(); i++)
4644     {
4645         opened_segments[i]->PreloadFamily( of_segment );
4646     }
4647 }
4648 bool matroska_segment_c::PreloadFamily( const matroska_segment_c & of_segment )
4649 {
4650     if ( b_preloaded )
4651         return false;
4652
4653     for (size_t i=0; i<families.size(); i++)
4654     {
4655         for (size_t j=0; j<of_segment.families.size(); j++)
4656         {
4657             if ( families[i] == of_segment.families[j] )
4658                 return Preload( );
4659         }
4660     }
4661
4662     return false;
4663 }
4664
4665 // preload all the linked segments for all preloaded segments
4666 void demux_sys_t::PreloadLinked( matroska_segment_c *p_segment )
4667 {
4668     size_t i_preloaded, i, j;
4669     virtual_segment_c *p_seg;
4670
4671     p_current_segment = VirtualFromSegments( p_segment );
4672     
4673     used_segments.push_back( p_current_segment );
4674
4675     // create all the other virtual segments of the family
4676     do {
4677         i_preloaded = 0;
4678         for ( i=0; i< opened_segments.size(); i++ )
4679         {
4680             if ( opened_segments[i]->b_preloaded && !IsUsedSegment( *opened_segments[i] ) )
4681             {
4682                 p_seg = VirtualFromSegments( opened_segments[i] );
4683                 used_segments.push_back( p_seg );
4684                 i_preloaded++;
4685             }
4686         }
4687     } while ( i_preloaded ); // worst case: will stop when all segments are found as family related
4688
4689     // publish all editions of all usable segment
4690     for ( i=0; i< used_segments.size(); i++ )
4691     {
4692         p_seg = used_segments[i];
4693         if ( p_seg->p_editions != NULL )
4694         {
4695             std::string sz_name;
4696             input_title_t *p_title = vlc_input_title_New();
4697             p_seg->i_sys_title = i;
4698             int i_chapters;
4699
4700             // TODO use a name for each edition, let the TITLE deal with a codec name
4701             for ( j=0; j<p_seg->p_editions->size(); j++ )
4702             {
4703                 if ( p_title->psz_name == NULL )
4704                 {
4705                     sz_name = (*p_seg->p_editions)[j]->GetMainName();
4706                     if ( sz_name != "" )
4707                         p_title->psz_name = strdup( sz_name.c_str() );
4708                 }
4709
4710                 chapter_edition_c *p_edition = (*p_seg->p_editions)[j];
4711
4712                 i_chapters = 0;
4713                 p_edition->PublishChapters( *p_title, i_chapters, 0 );
4714             }
4715
4716             // create a name if there is none
4717             if ( p_title->psz_name == NULL )
4718             {
4719                 sz_name = N_("Segment ");
4720                 char psz_str[6];
4721                 sprintf( psz_str, "%d", i );
4722                 sz_name += psz_str;
4723                 p_title->psz_name = strdup( sz_name.c_str() );
4724             }
4725
4726             titles.push_back( *p_title );
4727         }
4728     }
4729
4730     // TODO decide which segment should be first used (VMG for DVD)
4731 }
4732
4733 bool demux_sys_t::IsUsedSegment( matroska_segment_c &segment ) const
4734 {
4735     for ( size_t i=0; i< used_segments.size(); i++ )
4736     {
4737         if ( used_segments[i]->FindUID( segment.segment_uid ) )
4738             return true;
4739     }
4740     return false;
4741 }
4742
4743 virtual_segment_c *demux_sys_t::VirtualFromSegments( matroska_segment_c *p_segment ) const
4744 {
4745     size_t i_preloaded, i;
4746
4747     virtual_segment_c *p_result = new virtual_segment_c( p_segment );
4748
4749     // fill our current virtual segment with all hard linked segments
4750     do {
4751         i_preloaded = 0;
4752         for ( i=0; i< opened_segments.size(); i++ )
4753         {
4754             i_preloaded += p_result->AddSegment( opened_segments[i] );
4755         }
4756     } while ( i_preloaded ); // worst case: will stop when all segments are found as linked
4757
4758     p_result->Sort( );
4759
4760     p_result->PreloadLinked( );
4761
4762     p_result->PrepareChapters( );
4763
4764     return p_result;
4765 }
4766
4767 bool demux_sys_t::PreparePlayback( virtual_segment_c *p_new_segment )
4768 {
4769     if ( p_new_segment != NULL && p_new_segment != p_current_segment )
4770     {
4771         if ( p_current_segment != NULL && p_current_segment->Segment() != NULL )
4772             p_current_segment->Segment()->UnSelect();
4773
4774         p_current_segment = p_new_segment;
4775         i_current_title = p_new_segment->i_sys_title;
4776     }
4777
4778     p_current_segment->LoadCues();
4779     f_duration = p_current_segment->Duration();
4780
4781     /* add information */
4782     p_current_segment->Segment()->InformationCreate( );
4783
4784     p_current_segment->Segment()->Select( 0 );
4785
4786     return true;
4787 }
4788
4789 bool matroska_segment_c::CompareSegmentUIDs( const matroska_segment_c * p_item_a, const matroska_segment_c * p_item_b )
4790 {
4791     EbmlBinary * p_itema = (EbmlBinary *)(&p_item_a->segment_uid);
4792     if ( *p_itema == p_item_b->prev_segment_uid )
4793         return true;
4794
4795     p_itema = (EbmlBinary *)(&p_item_a->next_segment_uid);
4796     if ( *p_itema == p_item_b->segment_uid )
4797         return true;
4798
4799     if ( *p_itema == p_item_b->prev_segment_uid )
4800         return true;
4801
4802     return false;
4803 }
4804
4805 bool matroska_segment_c::Preload( )
4806 {
4807     if ( b_preloaded )
4808         return false;
4809
4810     EbmlElement *el = NULL;
4811
4812     ep->Reset( &sys.demuxer );
4813
4814     while( ( el = ep->Get() ) != NULL )
4815     {
4816         if( MKV_IS_ID( el, KaxInfo ) )
4817         {
4818             ParseInfo( static_cast<KaxInfo*>( el ) );
4819         }
4820         else if( MKV_IS_ID( el, KaxTracks ) )
4821         {
4822             ParseTracks( static_cast<KaxTracks*>( el ) );
4823         }
4824         else if( MKV_IS_ID( el, KaxSeekHead ) )
4825         {
4826             ParseSeekHead( static_cast<KaxSeekHead*>( el ) );
4827         }
4828         else if( MKV_IS_ID( el, KaxCues ) )
4829         {
4830             msg_Dbg( &sys.demuxer, "|   + Cues" );
4831         }
4832         else if( MKV_IS_ID( el, KaxCluster ) )
4833         {
4834             msg_Dbg( &sys.demuxer, "|   + Cluster" );
4835
4836             cluster = (KaxCluster*)el;
4837
4838             i_start_pos = cluster->GetElementPosition();
4839             ParseCluster( );
4840
4841             ep->Down();
4842             /* stop parsing the stream */
4843             break;
4844         }
4845         else if( MKV_IS_ID( el, KaxAttachments ) )
4846         {
4847             msg_Dbg( &sys.demuxer, "|   + Attachments FIXME (but probably never supported)" );
4848         }
4849         else if( MKV_IS_ID( el, KaxChapters ) )
4850         {
4851             msg_Dbg( &sys.demuxer, "|   + Chapters" );
4852             ParseChapters( static_cast<KaxChapters*>( el ) );
4853         }
4854         else if( MKV_IS_ID( el, KaxTag ) )
4855         {
4856             msg_Dbg( &sys.demuxer, "|   + Tags FIXME TODO" );
4857         }
4858         else
4859         {
4860             msg_Dbg( &sys.demuxer, "|   + Unknown (%s)", typeid(*el).name() );
4861         }
4862     }
4863
4864     b_preloaded = true;
4865
4866     return true;
4867 }
4868
4869 matroska_segment_c *demux_sys_t::FindSegment( const EbmlBinary & uid ) const
4870 {
4871     for (size_t i=0; i<opened_segments.size(); i++)
4872     {
4873         if ( opened_segments[i]->segment_uid == uid )
4874             return opened_segments[i];
4875     }
4876     return NULL;
4877 }
4878
4879 chapter_item_c *demux_sys_t::BrowseCodecPrivate( unsigned int codec_id, 
4880                                         bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ), 
4881                                         const void *p_cookie, 
4882                                         size_t i_cookie_size, 
4883                                         virtual_segment_c * &p_segment_found )
4884 {
4885     chapter_item_c *p_result = NULL;
4886     for (size_t i=0; i<used_segments.size(); i++)
4887     {
4888         p_result = used_segments[i]->BrowseCodecPrivate( codec_id, match, p_cookie, i_cookie_size );
4889         if ( p_result != NULL )
4890         {
4891             p_segment_found = used_segments[i];
4892             break;
4893         }
4894     }
4895     return p_result;
4896 }
4897
4898 chapter_item_c *demux_sys_t::FindChapter( int64_t i_find_uid, virtual_segment_c * & p_segment_found )
4899 {
4900     chapter_item_c *p_result = NULL;
4901     for (size_t i=0; i<used_segments.size(); i++)
4902     {
4903         p_result = used_segments[i]->FindChapter( i_find_uid );
4904         if ( p_result != NULL )
4905         {
4906             p_segment_found = used_segments[i];
4907             break;
4908         }
4909     }
4910     return p_result;
4911 }
4912
4913 void virtual_segment_c::Sort()
4914 {
4915     // keep the current segment index
4916     matroska_segment_c *p_segment = linked_segments[i_current_segment];
4917
4918     std::sort( linked_segments.begin(), linked_segments.end(), matroska_segment_c::CompareSegmentUIDs );
4919
4920     for ( i_current_segment=0; i_current_segment<linked_segments.size(); i_current_segment++)
4921         if ( linked_segments[i_current_segment] == p_segment )
4922             break;
4923 }
4924
4925 size_t virtual_segment_c::AddSegment( matroska_segment_c *p_segment )
4926 {
4927     size_t i;
4928     // check if it's not already in here
4929     for ( i=0; i<linked_segments.size(); i++ )
4930     {
4931         if ( p_segment->segment_uid == linked_segments[i]->segment_uid )
4932             return 0;
4933     }
4934
4935     // find possible mates
4936     for ( i=0; i<linked_uids.size(); i++ )
4937     {
4938         if (   p_segment->segment_uid == linked_uids[i] 
4939             || p_segment->prev_segment_uid == linked_uids[i] 
4940             || p_segment->next_segment_uid == linked_uids[i] )
4941         {
4942             linked_segments.push_back( p_segment );
4943
4944             AppendUID( p_segment->prev_segment_uid );
4945             AppendUID( p_segment->next_segment_uid );
4946
4947             return 1;
4948         }
4949     }
4950     return 0;
4951 }
4952
4953 void virtual_segment_c::PreloadLinked( )
4954 {
4955     for ( size_t i=0; i<linked_segments.size(); i++ )
4956     {
4957         linked_segments[i]->Preload( );
4958     }
4959     i_current_edition = linked_segments[0]->i_default_edition;
4960 }
4961
4962 mtime_t virtual_segment_c::Duration() const
4963 {
4964     mtime_t i_duration;
4965     if ( linked_segments.size() == 0 )
4966         i_duration = 0;
4967     else {
4968         matroska_segment_c *p_last_segment = linked_segments[linked_segments.size()-1];
4969 //        p_last_segment->ParseCluster( );
4970
4971         i_duration = p_last_segment->i_start_time / 1000 + p_last_segment->i_duration;
4972     }
4973     return i_duration;
4974 }
4975
4976 void virtual_segment_c::LoadCues( )
4977 {
4978     for ( size_t i=0; i<linked_segments.size(); i++ )
4979     {
4980         linked_segments[i]->LoadCues();
4981     }
4982 }
4983
4984 void virtual_segment_c::AppendUID( const EbmlBinary & UID )
4985 {
4986     if ( UID.GetBuffer() == NULL )
4987         return;
4988
4989     for (size_t i=0; i<linked_uids.size(); i++)
4990     {
4991         if ( UID == linked_uids[i] )
4992             return;
4993     }
4994     linked_uids.push_back( *(KaxSegmentUID*)(&UID) );
4995 }
4996
4997 void matroska_segment_c::Seek( mtime_t i_date, mtime_t i_time_offset )
4998 {
4999     KaxBlock    *block;
5000     int         i_track_skipping;
5001     int64_t     i_block_duration;
5002     int64_t     i_block_ref1;
5003     int64_t     i_block_ref2;
5004     size_t      i_track;
5005     int64_t     i_seek_position = i_start_pos;
5006     int64_t     i_seek_time = i_start_time;
5007
5008     if ( i_index > 0 )
5009     {
5010         int i_idx = 0;
5011
5012         for( ; i_idx < i_index; i_idx++ )
5013         {
5014             if( index[i_idx].i_time + i_time_offset > i_date )
5015             {
5016                 break;
5017             }
5018         }
5019
5020         if( i_idx > 0 )
5021         {
5022             i_idx--;
5023         }
5024
5025         i_seek_position = index[i_idx].i_position;
5026         i_seek_time = index[i_idx].i_time;
5027     }
5028
5029     msg_Dbg( &sys.demuxer, "seek got "I64Fd" (%d%%)",
5030                 i_seek_time, (int)( 100 * i_seek_position / stream_Size( sys.demuxer.s ) ) );
5031
5032     es.I_O().setFilePointer( i_seek_position, seek_beginning );
5033
5034     delete ep;
5035     ep = new EbmlParser( &es, segment, &sys.demuxer );
5036     cluster = NULL;
5037
5038     sys.i_start_pts = i_date;
5039
5040     es_out_Control( sys.demuxer.out, ES_OUT_RESET_PCR );
5041
5042     /* now parse until key frame */
5043     i_track_skipping = 0;
5044     for( i_track = 0; i_track < tracks.size(); i_track++ )
5045     {
5046         if( tracks[i_track]->fmt.i_cat == VIDEO_ES )
5047         {
5048             tracks[i_track]->b_search_keyframe = VLC_TRUE;
5049             i_track_skipping++;
5050         }
5051         es_out_Control( sys.demuxer.out, ES_OUT_SET_NEXT_DISPLAY_TIME, tracks[i_track]->p_es, i_date );
5052     }
5053
5054
5055     while( i_track_skipping > 0 )
5056     {
5057         if( BlockGet( &block, &i_block_ref1, &i_block_ref2, &i_block_duration ) )
5058         {
5059             msg_Warn( &sys.demuxer, "cannot get block EOF?" );
5060
5061             return;
5062         }
5063
5064         for( i_track = 0; i_track < tracks.size(); i_track++ )
5065         {
5066             if( tracks[i_track]->i_number == block->TrackNum() )
5067             {
5068                 break;
5069             }
5070         }
5071
5072         sys.i_pts = sys.i_chapter_time + block->GlobalTimecode() / (mtime_t) 1000;
5073
5074         if( i_track < tracks.size() )
5075         {
5076             if( sys.i_pts >= sys.i_start_pts )
5077             {
5078                 BlockDecode( &sys.demuxer, block, sys.i_pts, 0 );
5079                 i_track_skipping = 0;
5080             }
5081             else if( tracks[i_track]->fmt.i_cat == VIDEO_ES )
5082             {
5083                 if( i_block_ref1 == -1 && tracks[i_track]->b_search_keyframe )
5084                 {
5085                     tracks[i_track]->b_search_keyframe = VLC_FALSE;
5086                     i_track_skipping--;
5087                 }
5088                 if( !tracks[i_track]->b_search_keyframe )
5089                 {
5090                     BlockDecode( &sys.demuxer, block, sys.i_pts, 0 );
5091                 }
5092             } 
5093         }
5094
5095         delete block;
5096     }
5097 }
5098
5099 void virtual_segment_c::Seek( demux_t & demuxer, mtime_t i_date, mtime_t i_time_offset, chapter_item_c *psz_chapter )
5100 {
5101     demux_sys_t *p_sys = demuxer.p_sys;
5102     size_t i;
5103
5104     // find the actual time for an ordered edition
5105     if ( psz_chapter == NULL )
5106     {
5107         if ( Edition() && Edition()->b_ordered )
5108         {
5109             /* 1st, we need to know in which chapter we are */
5110             psz_chapter = (*p_editions)[i_current_edition]->FindTimecode( i_date );
5111         }
5112     }
5113
5114     if ( psz_chapter != NULL )
5115     {
5116         psz_current_chapter = psz_chapter;
5117         p_sys->i_chapter_time = i_time_offset = psz_chapter->i_user_start_time - psz_chapter->i_start_time;
5118         if ( psz_chapter->i_seekpoint_num > 0 )
5119         {
5120             demuxer.info.i_update |= INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT;
5121             demuxer.info.i_title = p_sys->i_current_title = i_sys_title;
5122             demuxer.info.i_seekpoint = psz_chapter->i_seekpoint_num - 1;
5123         }
5124     }
5125
5126     // find the best matching segment
5127     for ( i=0; i<linked_segments.size(); i++ )
5128     {
5129         if ( i_date < linked_segments[i]->i_start_time )
5130             break;
5131     }
5132
5133     if ( i > 0 )
5134         i--;
5135
5136     if ( i_current_segment != i  )
5137     {
5138         linked_segments[i_current_segment]->UnSelect();
5139         linked_segments[i]->Select( i_date );
5140         i_current_segment = i;
5141     }
5142
5143     linked_segments[i]->Seek( i_date, i_time_offset );
5144 }
5145
5146 void chapter_codec_cmds_c::AddCommand( const KaxChapterProcessCommand & command )
5147 {
5148     size_t i;
5149
5150     uint32 codec_time = uint32(-1);
5151     for( i = 0; i < command.ListSize(); i++ )
5152     {
5153         const EbmlElement *k = command[i];
5154
5155         if( MKV_IS_ID( k, KaxChapterProcessTime ) )
5156         {
5157             codec_time = uint32( *static_cast<const KaxChapterProcessTime*>( k ) );
5158             break;
5159         }
5160     }
5161
5162     for( i = 0; i < command.ListSize(); i++ )
5163     {
5164         const EbmlElement *k = command[i];
5165
5166         if( MKV_IS_ID( k, KaxChapterProcessData ) )
5167         {
5168             KaxChapterProcessData *p_data =  new KaxChapterProcessData( *static_cast<const KaxChapterProcessData*>( k ) );
5169             switch ( codec_time )
5170             {
5171             case 0:
5172                 during_cmds.push_back( *p_data );
5173                 break;
5174             case 1:
5175                 enter_cmds.push_back( *p_data );
5176                 break;
5177             case 2:
5178                 leave_cmds.push_back( *p_data );
5179                 break;
5180             default:
5181                 delete p_data;
5182             }
5183         }
5184     }
5185 }
5186
5187 bool chapter_item_c::Enter( bool b_do_subs )
5188 {
5189     bool f_result = false;
5190     std::vector<chapter_codec_cmds_c*>::iterator index = codecs.begin();
5191     while ( index != codecs.end() )
5192     {
5193         f_result |= (*index)->Enter();
5194         index++;
5195     }
5196
5197     if ( b_do_subs )
5198     {
5199         // sub chapters
5200         std::vector<chapter_item_c*>::iterator index_ = sub_chapters.begin();
5201         while ( index_ != sub_chapters.end() )
5202         {
5203             f_result |= (*index_)->Enter( true );
5204             index_++;
5205         }
5206     }
5207     return f_result;
5208 }
5209
5210 bool chapter_item_c::Leave( bool b_do_subs )
5211 {
5212     bool f_result = false;
5213     b_is_leaving = true;
5214     std::vector<chapter_codec_cmds_c*>::iterator index = codecs.begin();
5215     while ( index != codecs.end() )
5216     {
5217         f_result |= (*index)->Leave();
5218         index++;
5219     }
5220
5221     if ( b_do_subs )
5222     {
5223         // sub chapters
5224         std::vector<chapter_item_c*>::iterator index_ = sub_chapters.begin();
5225         while ( index_ != sub_chapters.end() )
5226         {
5227             f_result |= (*index_)->Leave( true );
5228             index_++;
5229         }
5230     }
5231     b_is_leaving = false;
5232     return f_result;
5233 }
5234
5235 bool chapter_item_c::EnterAndLeave( chapter_item_c *p_item )
5236 {
5237     chapter_item_c *p_common_parent = p_item;
5238
5239     // leave, up to a common parent
5240     while ( p_common_parent != NULL && !p_common_parent->ParentOf( *this ) )
5241     {
5242         if ( !p_common_parent->b_is_leaving && p_common_parent->Leave( false ) )
5243             return true;
5244         p_common_parent = p_common_parent->psz_parent;
5245     }
5246
5247     // enter from the parent to <this>
5248     if ( p_common_parent != NULL )
5249     {
5250         do
5251         {
5252             if ( p_common_parent == this )
5253                 return Enter( true );
5254
5255             for ( size_t i = 0; i<p_common_parent->sub_chapters.size(); i++ )
5256             {
5257                 if ( p_common_parent->sub_chapters[i]->ParentOf( *this ) )
5258                 {
5259                     p_common_parent = p_common_parent->sub_chapters[i];
5260                     if ( p_common_parent != this )
5261                         if ( p_common_parent->Enter( false ) )
5262                             return true;
5263
5264                     break;
5265                 }
5266             }
5267         } while ( 1 );
5268     }
5269
5270     return Enter( true );
5271 }
5272
5273 bool dvd_chapter_codec_c::Enter()
5274 {
5275     bool f_result = false;
5276     std::vector<KaxChapterProcessData>::iterator index = enter_cmds.begin();
5277     while ( index != enter_cmds.end() )
5278     {
5279         if ( (*index).GetSize() )
5280         {
5281             binary *p_data = (*index).GetBuffer();
5282             size_t i_size = *p_data++;
5283             // avoid reading too much from the buffer
5284             i_size = min( i_size, ((*index).GetSize() - 1) >> 3 );
5285             for ( ; i_size > 0; i_size--, p_data += 8 )
5286             {
5287                 msg_Dbg( &sys.demuxer, "Matroska DVD enter command" );
5288                 f_result |= sys.dvd_interpretor.Interpret( p_data );
5289             }
5290         }
5291         index++;
5292     }
5293     return f_result;
5294 }
5295
5296 bool dvd_chapter_codec_c::Leave()
5297 {
5298     bool f_result = false;
5299     std::vector<KaxChapterProcessData>::iterator index = leave_cmds.begin();
5300     while ( index != leave_cmds.end() )
5301     {
5302         if ( (*index).GetSize() )
5303         {
5304             binary *p_data = (*index).GetBuffer();
5305             size_t i_size = *p_data++;
5306             // avoid reading too much from the buffer
5307             i_size = min( i_size, ((*index).GetSize() - 1) >> 3 );
5308             for ( ; i_size > 0; i_size--, p_data += 8 )
5309             {
5310                 msg_Dbg( &sys.demuxer, "Matroska DVD leave command" );
5311                 f_result |= sys.dvd_interpretor.Interpret( p_data );
5312             }
5313         }
5314         index++;
5315     }
5316     return f_result;
5317 }
5318
5319 // see http://www.dvd-replica.com/DVD/vmcmdset.php for a description of DVD commands
5320 bool dvd_command_interpretor_c::Interpret( const binary * p_command, size_t i_size )
5321 {
5322     if ( i_size != 8 )
5323         return false;
5324
5325     virtual_segment_c *p_segment;
5326     chapter_item_c *p_chapter;
5327     bool f_result = false;
5328     uint16 i_command = ( p_command[0] << 8 ) + p_command[1];
5329
5330     // handle register tests if there are some
5331     if ( (i_command & 0xF0) != 0 )
5332     {
5333         bool b_test_positive = (i_command & CMD_DVD_IF_NOT) == 0;
5334         bool b_test_value    = (i_command & CMD_DVD_TEST_VALUE) != 0;
5335         uint8 i_test = i_command & 0x70;
5336         uint16 i_value;
5337
5338         if ( b_test_value )
5339             i_value = ( p_command[4] << 8 ) + p_command[5];
5340         else
5341             i_value = GetPRM( p_command[7] );
5342
5343         switch ( i_test )
5344         {
5345         case CMD_DVD_IF_GPREG_EQUAL:
5346             // if equals
5347             msg_Dbg( &sys.demuxer, "IF %s EQUALS %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
5348             if (!( GetPRM( p_command[3] ) == i_value ))
5349             {
5350                 b_test_positive = !b_test_positive;
5351             }
5352             break;
5353         case CMD_DVD_IF_GPREG_INF:
5354             // if inferior
5355             msg_Dbg( &sys.demuxer, "IF %s < %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
5356             if (!( GetPRM( p_command[3] ) < i_value ))
5357             {
5358                 b_test_positive = !b_test_positive;
5359             }
5360             break;
5361         case CMD_DVD_IF_GPREG_AND:
5362             // if logical and
5363             msg_Dbg( &sys.demuxer, "IF %s & %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
5364             if (!( GetPRM( p_command[3] ) & i_value ))
5365             {
5366                 b_test_positive = !b_test_positive;
5367             }
5368             break;
5369         case CMD_DVD_IF_GPREG_SUP_EQUAL:
5370             // if superior or equal
5371             msg_Dbg( &sys.demuxer, "IF %s >= %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
5372             if (!( GetPRM( p_command[3] ) >= i_value ))
5373             {
5374                 b_test_positive = !b_test_positive;
5375             }
5376             break;
5377         }
5378
5379         if ( !b_test_positive )
5380             return false;
5381     }
5382     
5383     // strip the test command
5384     i_command &= 0xFF0F;
5385     
5386     switch ( i_command )
5387     {
5388     case CMD_DVD_NOP:
5389     case CMD_DVD_NOP2:
5390         {
5391             msg_Dbg( &sys.demuxer, "NOP" );
5392             break;
5393         }
5394     case CMD_DVD_BREAK:
5395         {
5396             msg_Dbg( &sys.demuxer, "Break" );
5397             // TODO
5398             break;
5399         }
5400     case CMD_DVD_JUMP_TT:
5401         {
5402             uint8 i_title = p_command[5];
5403             msg_Dbg( &sys.demuxer, "JumpTT %d", i_title );
5404
5405             // find in the ChapProcessPrivate matching this Title level
5406             p_chapter = sys.BrowseCodecPrivate( 1, MatchTitleNumber, &i_title, sizeof(i_title), p_segment );
5407             if ( p_chapter != NULL )
5408             {
5409                 // if the segment is not part of the current segment, select the new one
5410                 if ( p_segment != sys.p_current_segment )
5411                 {
5412                     sys.PreparePlayback( p_segment );
5413                 }
5414     
5415                 // jump to the location in the found segment
5416                 p_segment->Seek( sys.demuxer, p_chapter->i_user_start_time, -1, NULL );
5417                 p_chapter->Enter( true );
5418                 
5419                 f_result = true;
5420             }
5421
5422             break;
5423         }
5424     case CMD_DVD_CALLSS_VTSM1:
5425         {
5426             msg_Dbg( &sys.demuxer, "CallSS VTSM" );
5427             switch( (p_command[6] & 0xC0) >> 6 ) {
5428                 case 0:
5429                     switch ( p_command[5] )
5430                     {
5431                     case 0x00:
5432                         msg_Dbg( &sys.demuxer, "CallSS PGC (rsm_cell %x)", p_command[5]);
5433                         break;
5434                     case 0x82:
5435                         msg_Dbg( &sys.demuxer, "CallSS Title Entry (rsm_cell %x)", p_command[5]);
5436                         break;
5437                     case 0x83:
5438                         msg_Dbg( &sys.demuxer, "CallSS Root Menu (rsm_cell %x)", p_command[5]);
5439                         break;
5440                     case 0x84:
5441                         msg_Dbg( &sys.demuxer, "CallSS Subpicture Menu (rsm_cell %x)", p_command[5]);
5442                         break;
5443                     case 0x85:
5444                         msg_Dbg( &sys.demuxer, "CallSS Audio Menu (rsm_cell %x)", p_command[5]);
5445                         break;
5446                     case 0x86:
5447                         msg_Dbg( &sys.demuxer, "CallSS Angle Menu (rsm_cell %x)", p_command[5]);
5448                         break;
5449                     case 0x87:
5450                         msg_Dbg( &sys.demuxer, "CallSS Chapter Menu (rsm_cell %x)", p_command[5]);
5451                         break;
5452                     default:
5453                         msg_Dbg( &sys.demuxer, "CallSS <unknown> (rsm_cell %x)", p_command[5]);
5454                         break;
5455                     }
5456                     p_chapter = sys.BrowseCodecPrivate( 1, MatchPgcType, &p_command[5], 1, p_segment );
5457                     if ( p_chapter != NULL )
5458                     {
5459                         // if the segment is not part of the current segment, select the new one
5460                         if ( p_segment != sys.p_current_segment )
5461                         {
5462                             sys.PreparePlayback( p_segment );
5463                         }
5464             
5465                         p_chapter->Enter( true );
5466                         
5467                         // jump to the location in the found segment
5468                         p_segment->Seek( sys.demuxer, p_chapter->i_user_start_time, -1, p_chapter );
5469                         f_result = true;
5470                     }
5471                 break;
5472                 case 1:
5473                     msg_Dbg( &sys.demuxer, "CallSS VMGM (menu %d, rsm_cell %x)", p_command[6] & 0x0F, p_command[5]);
5474                 break;
5475                 case 2:
5476                     msg_Dbg( &sys.demuxer, "CallSS VTSM (menu %d, rsm_cell %x)", p_command[6] & 0x0F, p_command[5]);
5477                 break;
5478                 case 3:
5479                     msg_Dbg( &sys.demuxer, "CallSS VMGM (pgc %d, rsm_cell %x)", (p_command[3] << 8) + p_command[4], p_command[5]);
5480                 break;
5481             }
5482             break;
5483         }
5484     case CMD_DVD_JUMPVTS_PTT:
5485         {
5486             uint8 i_title = p_command[5];
5487             uint8 i_ptt = p_command[3];
5488
5489             msg_Dbg( &sys.demuxer, "JumpVTS Title (%d) PTT (%d)", i_title, i_ptt);
5490
5491             // find the current VTS content segment
5492             p_chapter = sys.p_current_segment->BrowseCodecPrivate( 1, MatchIsDomain, NULL, 0 );
5493             if ( p_chapter != NULL )
5494             {
5495                 int16 i_curr_title = p_chapter->GetTitleNumber( );
5496                 if ( i_curr_title > 0 )
5497                 {
5498                     p_chapter = sys.BrowseCodecPrivate( 1, MatchVTSNumber, &i_curr_title, sizeof(i_curr_title), p_segment );
5499
5500                     if ( p_chapter != NULL )
5501                     {
5502                         // find the title in the VTS
5503                         p_chapter = p_chapter->BrowseCodecPrivate( 1, MatchTitleNumber, &i_title, sizeof(i_title) );
5504                         if ( p_chapter != NULL )
5505                         {
5506                             // find the chapter in the title
5507                             p_chapter = p_chapter->BrowseCodecPrivate( 1, MatchChapterNumber, &i_ptt, sizeof(i_ptt) );
5508                             if ( p_chapter != NULL )
5509                             {
5510                                 // if the segment is not part of the current segment, select the new one
5511                                 if ( p_segment != sys.p_current_segment )
5512                                 {
5513                                     sys.PreparePlayback( p_segment );
5514                                 }
5515                     
5516                                 p_chapter->Enter( true );
5517                                 
5518                                 // jump to the location in the found segment
5519                                 p_segment->Seek( sys.demuxer, p_chapter->i_user_start_time, -1, p_chapter );
5520                                 f_result = true;
5521                             }
5522                         }
5523                     else
5524                         msg_Dbg( &sys.demuxer, "Title (%d) does not exist in this VTS", i_title );
5525                     }
5526                     else
5527                         msg_Dbg( &sys.demuxer, "DVD Domain VTS (%d) not found", i_curr_title );
5528                 }
5529                 else
5530                     msg_Dbg( &sys.demuxer, "JumpVTS_PTT command found but not in a VTS(M)");
5531             }
5532             else
5533                 msg_Dbg( &sys.demuxer, "JumpVTS_PTT command but the DVD domain wasn't found");
5534             break;
5535         }
5536     case CMD_DVD_SET_GPRMMD:
5537         {
5538             msg_Dbg( &sys.demuxer, "Set GPRMMD [%d]=%d", (p_command[4] << 8) + p_command[5], (p_command[2] << 8) + p_command[3]);
5539             
5540             if ( !SetGPRM( (p_command[4] << 8) + p_command[5], (p_command[2] << 8) + p_command[3] ) )
5541                 msg_Dbg( &sys.demuxer, "Set GPRMMD failed" );
5542             break;
5543         }
5544     case CMD_DVD_LINKPGCN:
5545         {
5546             uint16 i_pgcn = (p_command[6] << 8) + p_command[7];
5547             
5548             msg_Dbg( &sys.demuxer, "Link PGCN(%d)", i_pgcn );
5549             p_chapter = sys.p_current_segment->BrowseCodecPrivate( 1, MatchPgcNumber, &i_pgcn, 2 );
5550             if ( p_chapter != NULL )
5551             {
5552                 p_chapter->Enter( true );
5553                 
5554                 // jump to the location in the found segment
5555                 sys.p_current_segment->Seek( sys.demuxer, p_chapter->i_user_start_time, -1, p_chapter );
5556                 f_result = true;
5557             }
5558             break;
5559         }
5560     case CMD_DVD_LINKCN:
5561         {
5562             uint8 i_cn = p_command[7];
5563             
5564             p_chapter = sys.p_current_segment->CurrentChapter();
5565
5566             msg_Dbg( &sys.demuxer, "LinkCN (cell %d)", i_cn );
5567             p_chapter = p_chapter->BrowseCodecPrivate( 1, MatchCellNumber, &i_cn, 1 );
5568             if ( p_chapter != NULL )
5569             {
5570                 p_chapter->Enter( true );
5571                 
5572                 // jump to the location in the found segment
5573                 sys.p_current_segment->Seek( sys.demuxer, p_chapter->i_user_start_time, -1, p_chapter );
5574                 f_result = true;
5575             }
5576             break;
5577         }
5578     case CMD_DVD_GOTO_LINE:
5579         {
5580             msg_Dbg( &sys.demuxer, "GotoLine (%d)", (p_command[6] << 8) + p_command[7] );
5581             // TODO
5582             break;
5583         }
5584     default:
5585         {
5586             msg_Dbg( &sys.demuxer, "unsupported command : %02X %02X %02X %02X %02X %02X %02X %02X"
5587                      ,p_command[0]
5588                      ,p_command[1]
5589                      ,p_command[2]
5590                      ,p_command[3]
5591                      ,p_command[4]
5592                      ,p_command[5]
5593                      ,p_command[6]
5594                      ,p_command[7]);
5595             break;
5596         }
5597     }
5598
5599     return f_result;
5600 }
5601
5602 bool dvd_command_interpretor_c::MatchIsDomain( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
5603 {
5604     return ( data.m_private_data.GetBuffer()[0] == MATROSKA_DVD_LEVEL_SS );
5605 }
5606
5607 bool dvd_command_interpretor_c::MatchVTSNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
5608 {
5609     if ( i_cookie_size != 2 || data.m_private_data.GetSize() < 4 )
5610         return false;
5611     
5612     if ( data.m_private_data.GetBuffer()[0] != MATROSKA_DVD_LEVEL_SS || data.m_private_data.GetBuffer()[1] != 0x80 )
5613         return false;
5614
5615     uint16 i_gtitle = (data.m_private_data.GetBuffer()[2] << 8 ) + data.m_private_data.GetBuffer()[3];
5616     uint16 i_title = *(uint16*)p_cookie;
5617
5618     return (i_gtitle == i_title);
5619 }
5620
5621 bool dvd_command_interpretor_c::MatchTitleNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
5622 {
5623     if ( i_cookie_size != 1 || data.m_private_data.GetSize() < 4 )
5624         return false;
5625     
5626     if ( data.m_private_data.GetBuffer()[0] != MATROSKA_DVD_LEVEL_TT )
5627         return false;
5628
5629     uint16 i_gtitle = (data.m_private_data.GetBuffer()[1] << 8 ) + data.m_private_data.GetBuffer()[2];
5630     uint8 i_title = *(uint8*)p_cookie;
5631
5632     return (i_gtitle == i_title);
5633 }
5634
5635 bool dvd_command_interpretor_c::MatchPgcType( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
5636 {
5637     if ( i_cookie_size != 1 || data.m_private_data.GetSize() < 8 )
5638         return false;
5639     
5640     if ( data.m_private_data.GetBuffer()[0] != MATROSKA_DVD_LEVEL_PGC )
5641         return false;
5642
5643     uint8 i_pgc_type = data.m_private_data.GetBuffer()[3];
5644     uint8 i_pgc = *(uint8*)p_cookie;
5645
5646     return (i_pgc_type == i_pgc);
5647 }
5648
5649 bool dvd_command_interpretor_c::MatchPgcNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
5650 {
5651     if ( i_cookie_size != 2 || data.m_private_data.GetSize() < 8 )
5652         return false;
5653     
5654     if ( data.m_private_data.GetBuffer()[0] != MATROSKA_DVD_LEVEL_PGC )
5655         return false;
5656
5657     uint16 *i_pgc_n = (uint16 *)p_cookie;
5658     uint16 i_pgc_num = (data.m_private_data.GetBuffer()[1] << 8) + data.m_private_data.GetBuffer()[2];
5659
5660     return (i_pgc_num == *i_pgc_n);
5661 }
5662
5663 bool dvd_command_interpretor_c::MatchChapterNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
5664 {
5665     if ( i_cookie_size != 1 || data.m_private_data.GetSize() < 2 )
5666         return false;
5667     
5668     if ( data.m_private_data.GetBuffer()[0] != MATROSKA_DVD_LEVEL_PTT )
5669         return false;
5670
5671     uint8 i_chapter = data.m_private_data.GetBuffer()[1];
5672     uint8 i_ptt = *(uint8*)p_cookie;
5673
5674     return (i_chapter == i_ptt);
5675 }
5676
5677 bool dvd_command_interpretor_c::MatchCellNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
5678 {
5679     if ( i_cookie_size != 1 || data.m_private_data.GetSize() < 5 )
5680         return false;
5681     
5682     if ( data.m_private_data.GetBuffer()[0] != MATROSKA_DVD_LEVEL_CN )
5683         return false;
5684
5685     uint8 *i_cell_n = (uint8 *)p_cookie;
5686     uint8 i_cell_num = data.m_private_data.GetBuffer()[3];
5687
5688     return (i_cell_num == *i_cell_n);
5689 }
5690
5691 bool matroska_script_codec_c::Enter()
5692 {
5693     bool f_result = false;
5694     std::vector<KaxChapterProcessData>::iterator index = enter_cmds.begin();
5695     while ( index != enter_cmds.end() )
5696     {
5697         if ( (*index).GetSize() )
5698         {
5699             msg_Dbg( &sys.demuxer, "Matroska Script enter command" );
5700             f_result |= interpretor.Interpret( (*index).GetBuffer(), (*index).GetSize() );
5701         }
5702         index++;
5703     }
5704     return f_result;
5705 }
5706
5707 bool matroska_script_codec_c::Leave()
5708 {
5709     bool f_result = false;
5710     std::vector<KaxChapterProcessData>::iterator index = leave_cmds.begin();
5711     while ( index != leave_cmds.end() )
5712     {
5713         if ( (*index).GetSize() )
5714         {
5715             msg_Dbg( &sys.demuxer, "Matroska Script leave command" );
5716             f_result |= interpretor.Interpret( (*index).GetBuffer(), (*index).GetSize() );
5717         }
5718         index++;
5719     }
5720     return f_result;
5721 }
5722
5723 // see http://www.matroska.org/technical/specs/chapters/index.html#mscript 
5724 //  for a description of existing commands
5725 bool matroska_script_interpretor_c::Interpret( const binary * p_command, size_t i_size )
5726 {
5727     bool b_result = false;
5728
5729     char *psz_str = (char*) malloc( i_size + 1 );
5730     memcpy( psz_str, p_command, i_size );
5731     psz_str[ i_size ] = '\0';
5732
5733     std::string sz_command = psz_str;
5734     free( psz_str );
5735
5736     msg_Dbg( &sys.demuxer, "command : %s", sz_command.c_str() );
5737
5738 #if defined(__GNUC__) && (__GNUC__ < 3)
5739     if ( sz_command.compare( CMD_MS_GOTO_AND_PLAY, 0, CMD_MS_GOTO_AND_PLAY.size() ) == 0 )
5740 #else
5741     if ( sz_command.compare( 0, CMD_MS_GOTO_AND_PLAY.size(), CMD_MS_GOTO_AND_PLAY ) == 0 )
5742 #endif
5743     {
5744         size_t i,j;
5745
5746         // find the (
5747         for ( i=CMD_MS_GOTO_AND_PLAY.size(); i<sz_command.size(); i++)
5748         {
5749             if ( sz_command[i] == '(' )
5750             {
5751                 i++;
5752                 break;
5753             }
5754         }
5755         // find the )
5756         for ( j=i; j<sz_command.size(); j++)
5757         {
5758             if ( sz_command[j] == ')' )
5759             {
5760                 i--;
5761                 break;
5762             }
5763         }
5764
5765         std::string st = sz_command.substr( i+1, j-i-1 );
5766         int64_t i_chapter_uid = atoi( st.c_str() );
5767
5768         virtual_segment_c *p_segment;
5769         chapter_item_c *p_chapter = sys.FindChapter( i_chapter_uid, p_segment );
5770
5771         if ( p_chapter == NULL )
5772             msg_Dbg( &sys.demuxer, "Chapter "I64Fd" not found", i_chapter_uid);
5773         else
5774         {
5775             if ( !p_chapter->EnterAndLeave( sys.p_current_segment->CurrentChapter() ) )
5776                 p_segment->Seek( sys.demuxer, p_chapter->i_user_start_time, -1, p_chapter );
5777             b_result = true;
5778         }
5779     }
5780
5781     return b_result;
5782 }
5783
5784 void demux_sys_t::SwapButtons()
5785 {
5786 #ifndef WORDS_BIGENDIAN
5787     uint8_t button, i, j;
5788
5789     for( button = 1; button <= pci_packet.hli.hl_gi.btn_ns; button++) {
5790         btni_t *button_ptr = &(pci_packet.hli.btnit[button-1]);
5791         binary *p_data = (binary*) button_ptr;
5792
5793         uint16 i_x_start = ((p_data[0] & 0x3F) << 4 ) + ( p_data[1] >> 4 );
5794         uint16 i_x_end   = ((p_data[1] & 0x03) << 8 ) + p_data[2];
5795         uint16 i_y_start = ((p_data[3] & 0x3F) << 4 ) + ( p_data[4] >> 4 );
5796         uint16 i_y_end   = ((p_data[4] & 0x03) << 8 ) + p_data[5];
5797         button_ptr->x_start = i_x_start;
5798         button_ptr->x_end   = i_x_end;
5799         button_ptr->y_start = i_y_start;
5800         button_ptr->y_end   = i_y_end;
5801
5802     }
5803     for ( i = 0; i<3; i++ )
5804     {
5805         for ( j = 0; j<2; j++ )
5806         {
5807             pci_packet.hli.btn_colit.btn_coli[i][j] = U32_AT( &pci_packet.hli.btn_colit.btn_coli[i][j] );
5808         }
5809     }
5810 #endif
5811 }