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