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