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