1 /*****************************************************************************
2 * mkv.cpp : matroska demuxer
3 *****************************************************************************
4 * Copyright (C) 2003-2004 the VideoLAN team
7 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8 * Steve Lhomme <steve.lhomme@free.fr>
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.
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.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 /*****************************************************************************
27 *****************************************************************************/
29 /* config.h may include inttypes.h, so make sure we define that option
31 #define __STDC_FORMAT_MACROS 1
32 #define __STDC_CONSTANT_MACROS 1
40 #include <vlc_common.h>
41 #include <vlc_plugin.h>
44 # include <time.h> /* time() */
48 #include <vlc_codecs.h> /* BITMAPINFOHEADER, WAVEFORMATEX */
49 #include <vlc_iso_lang.h>
51 #include <vlc_charset.h>
52 #include <vlc_input.h>
53 #include <vlc_demux.h>
66 /* libebml and matroska */
67 #include "ebml/EbmlHead.h"
68 #include "ebml/EbmlSubHead.h"
69 #include "ebml/EbmlStream.h"
70 #include "ebml/EbmlContexts.h"
71 #include "ebml/EbmlVoid.h"
72 #include "ebml/EbmlVersion.h"
73 #include "ebml/StdIOCallback.h"
75 #include "matroska/KaxAttachments.h"
76 #include "matroska/KaxAttached.h"
77 #include "matroska/KaxBlock.h"
78 #include "matroska/KaxBlockData.h"
79 #include "matroska/KaxChapters.h"
80 #include "matroska/KaxCluster.h"
81 #include "matroska/KaxClusterData.h"
82 #include "matroska/KaxContexts.h"
83 #include "matroska/KaxCues.h"
84 #include "matroska/KaxCuesData.h"
85 #include "matroska/KaxInfo.h"
86 #include "matroska/KaxInfoData.h"
87 #include "matroska/KaxSeekHead.h"
88 #include "matroska/KaxSegment.h"
89 #include "matroska/KaxTag.h"
90 #include "matroska/KaxTags.h"
91 #include "matroska/KaxTagMulti.h"
92 #include "matroska/KaxTracks.h"
93 #include "matroska/KaxTrackAudio.h"
94 #include "matroska/KaxTrackVideo.h"
95 #include "matroska/KaxTrackEntryData.h"
96 #include "matroska/KaxContentEncoding.h"
97 #include "matroska/KaxVersion.h"
99 #include "ebml/StdIOCallback.h"
101 #if LIBMATROSKA_VERSION < 0x000706
102 START_LIBMATROSKA_NAMESPACE
103 extern const EbmlSemanticContext MATROSKA_DLL_API KaxMatroska_Context;
104 END_LIBMATROSKA_NAMESPACE
107 #include "vlc_keys.h"
110 #include "mp4/libmp4.h"
116 /*****************************************************************************
118 *****************************************************************************/
119 static int Open ( vlc_object_t * );
120 static void Close( vlc_object_t * );
123 set_shortname( "Matroska" );
124 set_description( N_("Matroska stream demuxer" ) );
125 set_capability( "demux", 50 );
126 set_callbacks( Open, Close );
127 set_category( CAT_INPUT );
128 set_subcategory( SUBCAT_INPUT_DEMUX );
130 add_bool( "mkv-use-ordered-chapters", 1, NULL,
131 N_("Ordered chapters"),
132 N_("Play ordered chapters as specified in the segment."), true );
134 add_bool( "mkv-use-chapter-codec", 1, NULL,
135 N_("Chapter codecs"),
136 N_("Use chapter codecs found in the segment."), true );
138 add_bool( "mkv-preload-local-dir", 1, NULL,
139 N_("Preload Directory"),
140 N_("Preload matroska files from the same family in the same directory (not good for broken files)."), true );
142 add_bool( "mkv-seek-percent", 0, NULL,
143 N_("Seek based on percent not time"),
144 N_("Seek based on percent not time."), true );
146 add_bool( "mkv-use-dummy", 0, NULL,
147 N_("Dummy Elements"),
148 N_("Read and discard unknown EBML elements (not good for broken files)."), true );
150 add_shortcut( "mka" );
151 add_shortcut( "mkv" );
156 #define MATROSKA_COMPRESSION_NONE -1
157 #define MATROSKA_COMPRESSION_ZLIB 0
158 #define MATROSKA_COMPRESSION_BLIB 1
159 #define MATROSKA_COMPRESSION_LZOX 2
160 #define MATROSKA_COMPRESSION_HEADER 3
162 #define MKVD_TIMECODESCALE 1000000
164 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
165 #undef ATTRIBUTE_PACKED
166 #undef PRAGMA_PACK_BEGIN
167 #undef PRAGMA_PACK_END
169 #if defined(__GNUC__)
170 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)
171 #define ATTRIBUTE_PACKED __attribute__ ((packed))
172 #define PRAGMA_PACK 0
176 #if !defined(ATTRIBUTE_PACKED)
177 #define ATTRIBUTE_PACKED
178 #define PRAGMA_PACK 1
185 /*************************************
186 * taken from libdvdnav / libdvdread
187 **************************************/
190 * DVD Time Information.
196 uint8_t frame_u; /* The two high bits are the frame rate. */
197 } ATTRIBUTE_PACKED dvd_time_t;
203 #ifdef WORDS_BIGENDIAN
204 unsigned char zero : 7; /* 25-31 */
205 unsigned char video_pres_mode_change : 1; /* 24 */
207 unsigned char karaoke_audio_pres_mode_change : 1; /* 23 */
208 unsigned char angle_change : 1;
209 unsigned char subpic_stream_change : 1;
210 unsigned char audio_stream_change : 1;
211 unsigned char pause_on : 1;
212 unsigned char still_off : 1;
213 unsigned char button_select_or_activate : 1;
214 unsigned char resume : 1; /* 16 */
216 unsigned char chapter_menu_call : 1; /* 15 */
217 unsigned char angle_menu_call : 1;
218 unsigned char audio_menu_call : 1;
219 unsigned char subpic_menu_call : 1;
220 unsigned char root_menu_call : 1;
221 unsigned char title_menu_call : 1;
222 unsigned char backward_scan : 1;
223 unsigned char forward_scan : 1; /* 8 */
225 unsigned char next_pg_search : 1; /* 7 */
226 unsigned char prev_or_top_pg_search : 1;
227 unsigned char time_or_chapter_search : 1;
228 unsigned char go_up : 1;
229 unsigned char stop : 1;
230 unsigned char title_play : 1;
231 unsigned char chapter_search_or_play : 1;
232 unsigned char title_or_time_play : 1; /* 0 */
234 unsigned char video_pres_mode_change : 1; /* 24 */
235 unsigned char zero : 7; /* 25-31 */
237 unsigned char resume : 1; /* 16 */
238 unsigned char button_select_or_activate : 1;
239 unsigned char still_off : 1;
240 unsigned char pause_on : 1;
241 unsigned char audio_stream_change : 1;
242 unsigned char subpic_stream_change : 1;
243 unsigned char angle_change : 1;
244 unsigned char karaoke_audio_pres_mode_change : 1; /* 23 */
246 unsigned char forward_scan : 1; /* 8 */
247 unsigned char backward_scan : 1;
248 unsigned char title_menu_call : 1;
249 unsigned char root_menu_call : 1;
250 unsigned char subpic_menu_call : 1;
251 unsigned char audio_menu_call : 1;
252 unsigned char angle_menu_call : 1;
253 unsigned char chapter_menu_call : 1; /* 15 */
255 unsigned char title_or_time_play : 1; /* 0 */
256 unsigned char chapter_search_or_play : 1;
257 unsigned char title_play : 1;
258 unsigned char stop : 1;
259 unsigned char go_up : 1;
260 unsigned char time_or_chapter_search : 1;
261 unsigned char prev_or_top_pg_search : 1;
262 unsigned char next_pg_search : 1; /* 7 */
264 } ATTRIBUTE_PACKED user_ops_t;
267 * Type to store per-command data.
271 } ATTRIBUTE_PACKED vm_cmd_t;
272 #define COMMAND_DATA_SIZE 8
275 * PCI General Information
278 uint32_t nv_pck_lbn; /**< sector address of this nav pack */
279 uint16_t vobu_cat; /**< 'category' of vobu */
280 uint16_t zero1; /**< reserved */
281 user_ops_t vobu_uop_ctl; /**< UOP of vobu */
282 uint32_t vobu_s_ptm; /**< start presentation time of vobu */
283 uint32_t vobu_e_ptm; /**< end presentation time of vobu */
284 uint32_t vobu_se_e_ptm; /**< end ptm of sequence end in vobu */
285 dvd_time_t e_eltm; /**< Cell elapsed time */
287 } ATTRIBUTE_PACKED pci_gi_t;
290 * Non Seamless Angle Information
293 uint32_t nsml_agl_dsta[9]; /**< address of destination vobu in AGL_C#n */
294 } ATTRIBUTE_PACKED nsml_agli_t;
297 * Highlight General Information
299 * For btngrX_dsp_ty the bits have the following meaning:
300 * 000b: normal 4/3 only buttons
301 * XX1b: wide (16/9) buttons
302 * X1Xb: letterbox buttons
303 * 1XXb: pan&scan buttons
306 uint16_t hli_ss; /**< status, only low 2 bits 0: no buttons, 1: different 2: equal 3: eual except for button cmds */
307 uint32_t hli_s_ptm; /**< start ptm of hli */
308 uint32_t hli_e_ptm; /**< end ptm of hli */
309 uint32_t btn_se_e_ptm; /**< end ptm of button select */
310 #ifdef WORDS_BIGENDIAN
311 unsigned char zero1 : 2; /**< reserved */
312 unsigned char btngr_ns : 2; /**< number of button groups 1, 2 or 3 with 36/18/12 buttons */
313 unsigned char zero2 : 1; /**< reserved */
314 unsigned char btngr1_dsp_ty : 3; /**< display type of subpic stream for button group 1 */
315 unsigned char zero3 : 1; /**< reserved */
316 unsigned char btngr2_dsp_ty : 3; /**< display type of subpic stream for button group 2 */
317 unsigned char zero4 : 1; /**< reserved */
318 unsigned char btngr3_dsp_ty : 3; /**< display type of subpic stream for button group 3 */
320 unsigned char btngr1_dsp_ty : 3;
321 unsigned char zero2 : 1;
322 unsigned char btngr_ns : 2;
323 unsigned char zero1 : 2;
324 unsigned char btngr3_dsp_ty : 3;
325 unsigned char zero4 : 1;
326 unsigned char btngr2_dsp_ty : 3;
327 unsigned char zero3 : 1;
329 uint8_t btn_ofn; /**< button offset number range 0-255 */
330 uint8_t btn_ns; /**< number of valid buttons <= 36/18/12 (low 6 bits) */
331 uint8_t nsl_btn_ns; /**< number of buttons selectable by U_BTNNi (low 6 bits) nsl_btn_ns <= btn_ns */
332 uint8_t zero5; /**< reserved */
333 uint8_t fosl_btnn; /**< forcedly selected button (low 6 bits) */
334 uint8_t foac_btnn; /**< forcedly activated button (low 6 bits) */
335 } ATTRIBUTE_PACKED hl_gi_t;
339 * Button Color Information Table
340 * Each entry beeing a 32bit word that contains the color indexs and alpha
341 * values to use. They are all represented by 4 bit number and stored
342 * like this [Ci3, Ci2, Ci1, Ci0, A3, A2, A1, A0]. The actual palette
343 * that the indexes reference is in the PGC.
344 * \todo split the uint32_t into a struct
347 uint32_t btn_coli[3][2]; /**< [button color number-1][select:0/action:1] */
348 } ATTRIBUTE_PACKED btn_colit_t;
353 * NOTE: I've had to change the structure from the disk layout to get
354 * the packing to work with Sun's Forte C compiler.
355 * The 4 and 7 bytes are 'rotated' was: ABC DEF GHIJ is: ABCG DEFH IJ
358 #ifdef WORDS_BIGENDIAN
359 uint32 btn_coln : 2; /**< button color number */
360 uint32 x_start : 10; /**< x start offset within the overlay */
361 uint32 zero1 : 2; /**< reserved */
362 uint32 x_end : 10; /**< x end offset within the overlay */
364 uint32 zero3 : 2; /**< reserved */
365 uint32 up : 6; /**< button index when pressing up */
367 uint32 auto_action_mode : 2; /**< 0: no, 1: activated if selected */
368 uint32 y_start : 10; /**< y start offset within the overlay */
369 uint32 zero2 : 2; /**< reserved */
370 uint32 y_end : 10; /**< y end offset within the overlay */
372 uint32 zero4 : 2; /**< reserved */
373 uint32 down : 6; /**< button index when pressing down */
374 unsigned char zero5 : 2; /**< reserved */
375 unsigned char left : 6; /**< button index when pressing left */
376 unsigned char zero6 : 2; /**< reserved */
377 unsigned char right : 6; /**< button index when pressing right */
390 uint32 auto_action_mode : 2;
394 unsigned char left : 6;
395 unsigned char zero5 : 2;
396 unsigned char right : 6;
397 unsigned char zero6 : 2;
400 } ATTRIBUTE_PACKED btni_t;
403 * Highlight Information
407 btn_colit_t btn_colit;
409 } ATTRIBUTE_PACKED hli_t;
416 nsml_agli_t nsml_agli;
419 } ATTRIBUTE_PACKED pci_t;
425 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
429 * What's between a directory and a filename?
432 #define DIRECTORY_SEPARATOR '\\'
434 #define DIRECTORY_SEPARATOR '/'
437 using namespace LIBMATROSKA_NAMESPACE;
440 /*****************************************************************************
442 *****************************************************************************/
444 block_t *block_zlib_decompress( vlc_object_t *p_this, block_t *p_in_block ) {
445 int result, dstsize, n;
450 d_stream.zalloc = (alloc_func)0;
451 d_stream.zfree = (free_func)0;
452 d_stream.opaque = (voidpf)0;
453 result = inflateInit(&d_stream);
456 msg_Dbg( p_this, "inflateInit() failed. Result: %d", result );
460 d_stream.next_in = (Bytef *)p_in_block->p_buffer;
461 d_stream.avail_in = p_in_block->i_buffer;
463 p_block = block_New( p_this, 0 );
468 p_block = block_Realloc( p_block, 0, n * 1000 );
469 dst = (unsigned char *)p_block->p_buffer;
470 d_stream.next_out = (Bytef *)&dst[(n - 1) * 1000];
471 d_stream.avail_out = 1000;
472 result = inflate(&d_stream, Z_NO_FLUSH);
473 if( ( result != Z_OK ) && ( result != Z_STREAM_END ) )
475 msg_Dbg( p_this, "Zlib decompression failed. Result: %d", result );
479 while( ( d_stream.avail_out == 0 ) && ( d_stream.avail_in != 0 ) &&
480 ( result != Z_STREAM_END ) );
482 dstsize = d_stream.total_out;
483 inflateEnd( &d_stream );
485 p_block = block_Realloc( p_block, 0, dstsize );
486 p_block->i_buffer = dstsize;
487 block_Release( p_in_block );
494 * Helper function to print the mkv parse tree
496 static void MkvTree( demux_t & demuxer, int i_level, const char *psz_format, ... )
501 msg_Err( &demuxer, "too deep tree" );
504 va_start( args, psz_format );
505 static const char psz_foo[] = "| | | | | | | | | |";
506 char *psz_foo2 = (char*)malloc( ( i_level * 4 + 3 + strlen( psz_format ) ) * sizeof(char) );
507 strncpy( psz_foo2, psz_foo, 4 * i_level );
508 psz_foo2[ 4 * i_level ] = '+';
509 psz_foo2[ 4 * i_level + 1 ] = ' ';
510 strcpy( &psz_foo2[ 4 * i_level + 2 ], psz_format );
511 __msg_GenericVa( VLC_OBJECT(&demuxer),VLC_MSG_DBG, "mkv", psz_foo2, args );
516 /*****************************************************************************
518 *****************************************************************************/
519 class vlc_stream_io_callback: public IOCallback
527 vlc_stream_io_callback( stream_t *, bool );
529 virtual ~vlc_stream_io_callback()
535 virtual uint32 read ( void *p_buffer, size_t i_size);
536 virtual void setFilePointer ( int64_t i_offset, seek_mode mode = seek_beginning );
537 virtual size_t write ( const void *p_buffer, size_t i_size);
538 virtual uint64 getFilePointer ( void );
539 virtual void close ( void );
542 /*****************************************************************************
544 *****************************************************************************/
548 EbmlParser( EbmlStream *es, EbmlElement *el_start, demux_t *p_demux );
549 virtual ~EbmlParser( void );
553 void Reset( demux_t *p_demux );
554 EbmlElement *Get( void );
556 EbmlElement *UnGet( uint64 i_block_pos, uint64 i_cluster_pos );
558 int GetLevel( void );
560 /* Is the provided element presents in our upper elements */
561 bool IsTopPresent( EbmlElement * );
566 EbmlElement *m_el[10];
567 int64_t mi_remain_size[10];
577 /*****************************************************************************
578 * Some functions to manipulate memory
579 *****************************************************************************/
580 #define GetFOURCC( p ) __GetFOURCC( (uint8_t*)p )
581 static vlc_fourcc_t __GetFOURCC( uint8_t *p )
583 return VLC_FOURCC( p[0], p[1], p[2], p[3] );
586 /*****************************************************************************
587 * definitions of structures and functions used by this plugins
588 *****************************************************************************/
595 unsigned int i_number;
598 uint8_t *p_extra_data;
602 uint64_t i_default_duration;
603 float f_timecodescale;
612 unsigned int i_original_rate;
615 /* data to be send first */
617 uint8_t *p_data_init;
619 /* hack : it's for seek */
620 bool b_search_keyframe;
624 const char *psz_codec_name;
625 const char *psz_codec_settings;
626 const char *psz_codec_info_url;
627 const char *psz_codec_download_url;
629 /* encryption/compression */
630 int i_compression_type;
631 KaxContentCompSettings *p_compression_data;
648 const binary MATROSKA_DVD_LEVEL_SS = 0x30;
649 const binary MATROSKA_DVD_LEVEL_LU = 0x2A;
650 const binary MATROSKA_DVD_LEVEL_TT = 0x28;
651 const binary MATROSKA_DVD_LEVEL_PGC = 0x20;
652 const binary MATROSKA_DVD_LEVEL_PG = 0x18;
653 const binary MATROSKA_DVD_LEVEL_PTT = 0x10;
654 const binary MATROSKA_DVD_LEVEL_CN = 0x08;
656 class chapter_codec_cmds_c
659 chapter_codec_cmds_c( demux_sys_t & demuxer, int codec_id = -1)
660 :p_private_data(NULL)
661 ,i_codec_id( codec_id )
665 virtual ~chapter_codec_cmds_c()
667 delete p_private_data;
668 std::vector<KaxChapterProcessData*>::iterator indexe = enter_cmds.begin();
669 while ( indexe != enter_cmds.end() )
674 std::vector<KaxChapterProcessData*>::iterator indexl = leave_cmds.begin();
675 while ( indexl != leave_cmds.end() )
680 std::vector<KaxChapterProcessData*>::iterator indexd = during_cmds.begin();
681 while ( indexd != during_cmds.end() )
688 void SetPrivate( const KaxChapterProcessPrivate & private_data )
690 p_private_data = new KaxChapterProcessPrivate( private_data );
693 void AddCommand( const KaxChapterProcessCommand & command );
695 /// \return wether the codec has seeked in the files or not
696 virtual bool Enter() { return false; }
697 virtual bool Leave() { return false; }
698 virtual std::string GetCodecName( bool f_for_title = false ) const { return ""; }
699 virtual int16 GetTitleNumber() { return -1; }
701 KaxChapterProcessPrivate *p_private_data;
704 std::vector<KaxChapterProcessData*> enter_cmds;
705 std::vector<KaxChapterProcessData*> during_cmds;
706 std::vector<KaxChapterProcessData*> leave_cmds;
712 class dvd_command_interpretor_c
715 dvd_command_interpretor_c( demux_sys_t & demuxer )
718 memset( p_PRMs, 0, sizeof(p_PRMs) );
719 p_PRMs[ 0x80 + 1 ] = 15;
720 p_PRMs[ 0x80 + 2 ] = 62;
721 p_PRMs[ 0x80 + 3 ] = 1;
722 p_PRMs[ 0x80 + 4 ] = 1;
723 p_PRMs[ 0x80 + 7 ] = 1;
724 p_PRMs[ 0x80 + 8 ] = 1;
725 p_PRMs[ 0x80 + 16 ] = 0xFFFFu;
726 p_PRMs[ 0x80 + 18 ] = 0xFFFFu;
729 bool Interpret( const binary * p_command, size_t i_size = 8 );
731 uint16 GetPRM( size_t index ) const
734 return p_PRMs[ index ];
738 uint16 GetGPRM( size_t index ) const
740 if ( index >= 0 && index < 16 )
741 return p_PRMs[ index ];
745 uint16 GetSPRM( size_t index ) const
747 // 21,22,23 reserved for future use
748 if ( index >= 0x80 && index < 0x95 )
749 return p_PRMs[ index ];
753 bool SetPRM( size_t index, uint16 value )
755 if ( index >= 0 && index < 16 )
757 p_PRMs[ index ] = value;
763 bool SetGPRM( size_t index, uint16 value )
765 if ( index >= 0 && index < 16 )
767 p_PRMs[ index ] = value;
773 bool SetSPRM( size_t index, uint16 value )
775 if ( index > 0x80 && index <= 0x8D && index != 0x8C )
777 p_PRMs[ index ] = value;
784 std::string GetRegTypeName( bool b_value, uint16 value ) const
787 char s_value[6], s_reg_value[6];
788 sprintf( s_value, "%.5d", value );
796 else if ( value < 0x80 )
798 sprintf( s_reg_value, "%.5d", GetPRM( value ) );
802 result += s_reg_value;
807 sprintf( s_reg_value, "%.5d", GetPRM( value ) );
811 result += s_reg_value;
823 // wether it's a comparison on the value or register
824 static const uint16 CMD_DVD_TEST_VALUE = 0x80;
825 static const uint16 CMD_DVD_IF_GPREG_AND = (1 << 4);
826 static const uint16 CMD_DVD_IF_GPREG_EQUAL = (2 << 4);
827 static const uint16 CMD_DVD_IF_GPREG_NOT_EQUAL = (3 << 4);
828 static const uint16 CMD_DVD_IF_GPREG_SUP_EQUAL = (4 << 4);
829 static const uint16 CMD_DVD_IF_GPREG_SUP = (5 << 4);
830 static const uint16 CMD_DVD_IF_GPREG_INF_EQUAL = (6 << 4);
831 static const uint16 CMD_DVD_IF_GPREG_INF = (7 << 4);
833 static const uint16 CMD_DVD_NOP = 0x0000;
834 static const uint16 CMD_DVD_GOTO_LINE = 0x0001;
835 static const uint16 CMD_DVD_BREAK = 0x0002;
837 static const uint16 CMD_DVD_NOP2 = 0x2001;
838 static const uint16 CMD_DVD_LINKPGCN = 0x2004;
839 static const uint16 CMD_DVD_LINKPGN = 0x2006;
840 static const uint16 CMD_DVD_LINKCN = 0x2007;
841 static const uint16 CMD_DVD_JUMP_TT = 0x3002;
842 static const uint16 CMD_DVD_JUMPVTS_TT = 0x3003;
843 static const uint16 CMD_DVD_JUMPVTS_PTT = 0x3005;
844 static const uint16 CMD_DVD_JUMP_SS = 0x3006;
845 static const uint16 CMD_DVD_CALLSS_VTSM1 = 0x3008;
847 static const uint16 CMD_DVD_SET_HL_BTNN2 = 0x4600;
848 static const uint16 CMD_DVD_SET_HL_BTNN_LINKPGCN1 = 0x4604;
849 static const uint16 CMD_DVD_SET_STREAM = 0x5100;
850 static const uint16 CMD_DVD_SET_GPRMMD = 0x5300;
851 static const uint16 CMD_DVD_SET_HL_BTNN1 = 0x5600;
852 static const uint16 CMD_DVD_SET_HL_BTNN_LINKPGCN2 = 0x5604;
853 static const uint16 CMD_DVD_SET_HL_BTNN_LINKCN = 0x5607;
855 static const uint16 CMD_DVD_MOV_SPREG_PREG = 0x6100;
856 static const uint16 CMD_DVD_GPREG_MOV_VALUE = 0x7100;
857 static const uint16 CMD_DVD_SUB_GPREG = 0x7400;
858 static const uint16 CMD_DVD_MULT_GPREG = 0x7500;
859 static const uint16 CMD_DVD_GPREG_DIV_VALUE = 0x7600;
860 static const uint16 CMD_DVD_GPREG_AND_VALUE = 0x7900;
862 // callbacks when browsing inside CodecPrivate
863 static bool MatchIsDomain ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
864 static bool MatchIsVMG ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
865 static bool MatchVTSNumber ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
866 static bool MatchVTSMNumber ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
867 static bool MatchTitleNumber ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
868 static bool MatchPgcType ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
869 static bool MatchPgcNumber ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
870 static bool MatchChapterNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
871 static bool MatchCellNumber ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
874 class dvd_chapter_codec_c : public chapter_codec_cmds_c
877 dvd_chapter_codec_c( demux_sys_t & sys )
878 :chapter_codec_cmds_c( sys, 1 )
883 std::string GetCodecName( bool f_for_title = false ) const;
884 int16 GetTitleNumber();
887 class matroska_script_interpretor_c
890 matroska_script_interpretor_c( demux_sys_t & demuxer )
894 bool Interpret( const binary * p_command, size_t i_size );
897 static const std::string CMD_MS_GOTO_AND_PLAY;
903 const std::string matroska_script_interpretor_c::CMD_MS_GOTO_AND_PLAY = "GotoAndPlay";
906 class matroska_script_codec_c : public chapter_codec_cmds_c
909 matroska_script_codec_c( demux_sys_t & sys )
910 :chapter_codec_cmds_c( sys, 0 )
918 matroska_script_interpretor_c interpretor;
921 class chapter_translation_c
924 chapter_translation_c()
928 ~chapter_translation_c()
933 KaxChapterTranslateID *p_translated;
934 unsigned int codec_id;
935 std::vector<uint64_t> editions;
944 ,i_user_start_time(-1)
947 ,b_display_seekpoint(true)
948 ,b_user_display(false)
953 virtual ~chapter_item_c()
955 std::vector<chapter_codec_cmds_c*>::iterator index = codecs.begin();
956 while ( index != codecs.end() )
961 std::vector<chapter_item_c*>::iterator index_ = sub_chapters.begin();
962 while ( index_ != sub_chapters.end() )
969 int64_t RefreshChapters( bool b_ordered, int64_t i_prev_user_time );
970 int PublishChapters( input_title_t & title, int & i_user_chapters, int i_level = 0 );
971 virtual chapter_item_c * FindTimecode( mtime_t i_timecode, const chapter_item_c * p_current, bool & b_found );
972 void Append( const chapter_item_c & edition );
973 chapter_item_c * FindChapter( int64_t i_find_uid );
974 virtual chapter_item_c *BrowseCodecPrivate( unsigned int codec_id,
975 bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ),
976 const void *p_cookie,
977 size_t i_cookie_size );
978 std::string GetCodecName( bool f_for_title = false ) const;
979 bool ParentOf( const chapter_item_c & item ) const;
980 int16 GetTitleNumber( ) const;
982 int64_t i_start_time, i_end_time;
983 int64_t i_user_start_time, i_user_end_time; /* the time in the stream when an edition is ordered */
984 std::vector<chapter_item_c*> sub_chapters;
987 bool b_display_seekpoint;
989 std::string psz_name;
990 chapter_item_c *psz_parent;
993 std::vector<chapter_codec_cmds_c*> codecs;
995 static bool CompareTimecode( const chapter_item_c * itemA, const chapter_item_c * itemB )
997 return ( itemA->i_user_start_time < itemB->i_user_start_time || (itemA->i_user_start_time == itemB->i_user_start_time && itemA->i_user_end_time < itemB->i_user_end_time) );
1000 bool Enter( bool b_do_subchapters );
1001 bool Leave( bool b_do_subchapters );
1002 bool EnterAndLeave( chapter_item_c *p_item, bool b_enter = true );
1005 class chapter_edition_c : public chapter_item_c
1012 void RefreshChapters( );
1013 mtime_t Duration() const;
1014 std::string GetMainName() const;
1015 chapter_item_c * FindTimecode( mtime_t i_timecode, const chapter_item_c * p_current );
1020 class matroska_segment_c
1023 matroska_segment_c( demux_sys_t & demuxer, EbmlStream & estream )
1026 ,i_timescale(MKVD_TIMECODESCALE)
1029 ,i_cues_position(-1)
1030 ,i_info_position(-1)
1031 ,i_chapters_position(-1)
1032 ,i_tags_position(-1)
1033 ,i_tracks_position(-1)
1034 ,i_attachments_position(-1)
1035 ,i_seekhead_position(-1)
1036 ,i_seekhead_count(0)
1041 ,p_segment_uid(NULL)
1042 ,p_prev_segment_uid(NULL)
1043 ,p_next_segment_uid(NULL)
1047 ,psz_muxing_application(NULL)
1048 ,psz_writing_application(NULL)
1049 ,psz_segment_filename(NULL)
1052 ,i_default_edition(0)
1057 p_indexes = (mkv_index_t*)malloc( sizeof( mkv_index_t ) * i_index_max );
1060 virtual ~matroska_segment_c()
1062 for( size_t i_track = 0; i_track < tracks.size(); i_track++ )
1064 delete tracks[i_track]->p_compression_data;
1065 es_format_Clean( &tracks[i_track]->fmt );
1066 free( tracks[i_track]->p_extra_data );
1067 free( tracks[i_track]->psz_codec );
1068 delete tracks[i_track];
1071 free( psz_writing_application );
1072 free( psz_muxing_application );
1073 free( psz_segment_filename );
1075 free( psz_date_utc );
1080 delete p_segment_uid;
1081 delete p_prev_segment_uid;
1082 delete p_next_segment_uid;
1084 std::vector<chapter_edition_c*>::iterator index = stored_editions.begin();
1085 while ( index != stored_editions.end() )
1090 std::vector<chapter_translation_c*>::iterator indext = translations.begin();
1091 while ( indext != translations.end() )
1096 std::vector<KaxSegmentFamily*>::iterator indexf = families.begin();
1097 while ( indexf != families.end() )
1104 KaxSegment *segment;
1108 uint64_t i_timescale;
1110 /* duration of the segment */
1112 mtime_t i_start_time;
1115 std::vector<mkv_track_t*> tracks;
1118 int i_seekhead_count;
1119 int64_t i_seekhead_position;
1120 int64_t i_cues_position;
1121 int64_t i_tracks_position;
1122 int64_t i_info_position;
1123 int64_t i_chapters_position;
1124 int64_t i_tags_position;
1125 int64_t i_attachments_position;
1127 KaxCluster *cluster;
1129 uint64 i_cluster_pos;
1130 int64_t i_start_pos;
1131 KaxSegmentUID *p_segment_uid;
1132 KaxPrevUID *p_prev_segment_uid;
1133 KaxNextUID *p_next_segment_uid;
1138 mkv_index_t *p_indexes;
1141 char *psz_muxing_application;
1142 char *psz_writing_application;
1143 char *psz_segment_filename;
1147 /* !!!!! GCC 3.3 bug on Darwin !!!!! */
1148 /* when you remove this variable the compiler issues an atomicity error */
1149 /* this variable only works when using std::vector<chapter_edition_c> */
1150 std::vector<chapter_edition_c*> stored_editions;
1151 int i_default_edition;
1153 std::vector<chapter_translation_c*> translations;
1154 std::vector<KaxSegmentFamily*> families;
1161 bool LoadSeekHeadItem( const EbmlCallbacks & ClassInfos, int64_t i_element_position );
1162 bool PreloadFamily( const matroska_segment_c & segment );
1163 void ParseInfo( KaxInfo *info );
1164 void ParseAttachments( KaxAttachments *attachments );
1165 void ParseChapters( KaxChapters *chapters );
1166 void ParseSeekHead( KaxSeekHead *seekhead );
1167 void ParseTracks( KaxTracks *tracks );
1168 void ParseChapterAtom( int i_level, KaxChapterAtom *ca, chapter_item_c & chapters );
1169 void ParseTrackEntry( KaxTrackEntry *m );
1170 void ParseCluster( );
1171 void IndexAppendCluster( KaxCluster *cluster );
1172 void LoadCues( KaxCues *cues );
1173 void LoadTags( KaxTags *tags );
1174 void InformationCreate( );
1175 void Seek( mtime_t i_date, mtime_t i_time_offset, int64_t i_global_position );
1176 #if LIBMATROSKA_VERSION >= 0x000800
1177 int BlockGet( KaxBlock * &, KaxSimpleBlock * &, int64_t *, int64_t *, int64_t *);
1179 int BlockGet( KaxBlock * &, int64_t *, int64_t *, int64_t *);
1181 bool Select( mtime_t i_start_time );
1184 static bool CompareSegmentUIDs( const matroska_segment_c * item_a, const matroska_segment_c * item_b );
1187 // class holding hard-linked segment together in the playback order
1188 class virtual_segment_c
1191 virtual_segment_c( matroska_segment_c *p_segment )
1194 ,i_current_segment(0)
1195 ,i_current_edition(-1)
1196 ,psz_current_chapter(NULL)
1198 linked_segments.push_back( p_segment );
1200 AppendUID( p_segment->p_segment_uid );
1201 AppendUID( p_segment->p_prev_segment_uid );
1202 AppendUID( p_segment->p_next_segment_uid );
1206 size_t AddSegment( matroska_segment_c *p_segment );
1207 void PreloadLinked( );
1208 mtime_t Duration( ) const;
1209 void Seek( demux_t & demuxer, mtime_t i_date, mtime_t i_time_offset, chapter_item_c *psz_chapter, int64_t i_global_position );
1211 inline chapter_edition_c *Edition()
1213 if ( i_current_edition >= 0 && size_t(i_current_edition) < p_editions->size() )
1214 return (*p_editions)[i_current_edition];
1218 matroska_segment_c * Segment() const
1220 if ( linked_segments.size() == 0 || i_current_segment >= linked_segments.size() )
1222 return linked_segments[i_current_segment];
1225 inline chapter_item_c *CurrentChapter() {
1226 return psz_current_chapter;
1231 if ( i_current_segment < linked_segments.size()-1 )
1233 i_current_segment++;
1239 bool FindUID( KaxSegmentUID & uid ) const
1241 for ( size_t i=0; i<linked_uids.size(); i++ )
1243 if ( linked_uids[i] == uid )
1249 bool UpdateCurrentToChapter( demux_t & demux );
1250 void PrepareChapters( );
1252 chapter_item_c *BrowseCodecPrivate( unsigned int codec_id,
1253 bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ),
1254 const void *p_cookie,
1255 size_t i_cookie_size );
1256 chapter_item_c *FindChapter( int64_t i_find_uid );
1258 std::vector<chapter_edition_c*> *p_editions;
1262 std::vector<matroska_segment_c*> linked_segments;
1263 std::vector<KaxSegmentUID> linked_uids;
1264 size_t i_current_segment;
1266 int i_current_edition;
1267 chapter_item_c *psz_current_chapter;
1269 void AppendUID( const EbmlBinary * UID );
1272 class matroska_stream_c
1275 matroska_stream_c( demux_sys_t & demuxer )
1281 virtual ~matroska_stream_c()
1290 std::vector<matroska_segment_c*> segments;
1316 virtual ~attachment_c()
1321 std::string psz_file_name;
1322 std::string psz_mime_type;
1330 demux_sys_t( demux_t & demux )
1337 ,p_current_segment(NULL)
1338 ,dvd_interpretor( *this )
1342 ,b_pci_packet_set(false)
1345 vlc_mutex_init( &lock_demuxer );
1348 virtual ~demux_sys_t()
1352 for ( i=0; i<streams.size(); i++ )
1354 for ( i=0; i<opened_segments.size(); i++ )
1355 delete opened_segments[i];
1356 for ( i=0; i<used_segments.size(); i++ )
1357 delete used_segments[i];
1358 for ( i=0; i<stored_attachments.size(); i++ )
1359 delete stored_attachments[i];
1360 if( meta ) vlc_meta_Delete( meta );
1362 while( titles.size() )
1363 { vlc_input_title_Delete( titles.back() ); titles.pop_back();}
1365 vlc_mutex_destroy( &lock_demuxer );
1372 mtime_t i_start_pts;
1373 mtime_t i_chapter_time;
1377 std::vector<input_title_t*> titles; // matroska editions
1378 size_t i_current_title;
1380 std::vector<matroska_stream_c*> streams;
1381 std::vector<attachment_c*> stored_attachments;
1382 std::vector<matroska_segment_c*> opened_segments;
1383 std::vector<virtual_segment_c*> used_segments;
1384 virtual_segment_c *p_current_segment;
1386 dvd_command_interpretor_c dvd_interpretor;
1388 /* duration of the stream */
1391 matroska_segment_c *FindSegment( const EbmlBinary & uid ) const;
1392 chapter_item_c *BrowseCodecPrivate( unsigned int codec_id,
1393 bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ),
1394 const void *p_cookie,
1395 size_t i_cookie_size,
1396 virtual_segment_c * & p_segment_found );
1397 chapter_item_c *FindChapter( int64_t i_find_uid, virtual_segment_c * & p_segment_found );
1399 void PreloadFamily( const matroska_segment_c & of_segment );
1400 void PreloadLinked( matroska_segment_c *p_segment );
1401 bool PreparePlayback( virtual_segment_c *p_new_segment );
1402 matroska_stream_c *AnalyseAllSegmentsFound( demux_t *p_demux, EbmlStream *p_estream, bool b_initial = false );
1403 void JumpTo( virtual_segment_c & p_segment, chapter_item_c * p_chapter );
1405 void StartUiThread();
1406 void StopUiThread();
1408 inline void SwapButtons();
1410 /* for spu variables */
1411 input_thread_t *p_input;
1413 bool b_pci_packet_set;
1414 uint8_t palette[4][4];
1415 vlc_mutex_t lock_demuxer;
1418 event_thread_t *p_ev;
1419 static void * EventThread( vlc_object_t *p_this );
1420 static int EventMouse( vlc_object_t *p_this, char const *psz_var,
1421 vlc_value_t oldval, vlc_value_t newval, void *p_data );
1422 static int EventKey( vlc_object_t *p_this, char const *psz_var,
1423 vlc_value_t oldval, vlc_value_t newval, void *p_data );
1428 virtual_segment_c *VirtualFromSegments( matroska_segment_c *p_segment ) const;
1429 bool IsUsedSegment( matroska_segment_c &p_segment ) const;
1432 static int Demux ( demux_t * );
1433 static int Control( demux_t *, int, va_list );
1434 static void Seek ( demux_t *, mtime_t i_date, double f_percent, chapter_item_c *psz_chapter );
1436 #define MKV_IS_ID( el, C ) ( EbmlId( (*el) ) == C::ClassInfos.GlobalId )
1438 static inline char * ToUTF8( const UTFstring &u )
1440 return strdup( u.GetUTF8().c_str() );
1443 /*****************************************************************************
1444 * Open: initializes matroska demux structures
1445 *****************************************************************************/
1446 static int Open( vlc_object_t * p_this )
1448 demux_t *p_demux = (demux_t*)p_this;
1450 matroska_stream_c *p_stream;
1451 matroska_segment_c *p_segment;
1452 const uint8_t *p_peek;
1453 std::string s_path, s_filename;
1454 vlc_stream_io_callback *p_io_callback;
1455 EbmlStream *p_io_stream;
1457 /* peek the begining */
1458 if( stream_Peek( p_demux->s, &p_peek, 4 ) < 4 ) return VLC_EGENERIC;
1460 /* is a valid file */
1461 if( p_peek[0] != 0x1a || p_peek[1] != 0x45 ||
1462 p_peek[2] != 0xdf || p_peek[3] != 0xa3 ) return VLC_EGENERIC;
1464 /* Set the demux function */
1465 p_demux->pf_demux = Demux;
1466 p_demux->pf_control = Control;
1467 p_demux->p_sys = p_sys = new demux_sys_t( *p_demux );
1469 p_io_callback = new vlc_stream_io_callback( p_demux->s, false );
1470 p_io_stream = new EbmlStream( *p_io_callback );
1472 if( p_io_stream == NULL )
1474 msg_Err( p_demux, "failed to create EbmlStream" );
1475 delete p_io_callback;
1477 return VLC_EGENERIC;
1480 p_stream = p_sys->AnalyseAllSegmentsFound( p_demux, p_io_stream, true );
1481 if( p_stream == NULL )
1483 msg_Err( p_demux, "cannot find KaxSegment" );
1486 p_sys->streams.push_back( p_stream );
1488 p_stream->p_in = p_io_callback;
1489 p_stream->p_es = p_io_stream;
1491 for (size_t i=0; i<p_stream->segments.size(); i++)
1493 p_stream->segments[i]->Preload();
1496 p_segment = p_stream->segments[0];
1497 if( p_segment->cluster == NULL )
1499 msg_Err( p_demux, "cannot find any cluster, damaged file ?" );
1503 if (config_GetInt( p_demux, "mkv-preload-local-dir" ))
1505 /* get the files from the same dir from the same family (based on p_demux->psz_path) */
1506 if (p_demux->psz_path[0] != '\0' && !strcmp(p_demux->psz_access, ""))
1508 // assume it's a regular file
1509 // get the directory path
1510 s_path = p_demux->psz_path;
1511 if (s_path.at(s_path.length() - 1) == DIRECTORY_SEPARATOR)
1513 s_path = s_path.substr(0,s_path.length()-1);
1517 if (s_path.find_last_of(DIRECTORY_SEPARATOR) > 0)
1519 s_path = s_path.substr(0,s_path.find_last_of(DIRECTORY_SEPARATOR));
1523 DIR *p_src_dir = utf8_opendir(s_path.c_str());
1525 if (p_src_dir != NULL)
1528 while ((psz_file = utf8_readdir(p_src_dir)) != NULL)
1530 if (strlen(psz_file) > 4)
1532 s_filename = s_path + DIRECTORY_SEPARATOR + psz_file;
1535 if (!strcasecmp(s_filename.c_str(), p_demux->psz_path))
1537 if (!s_filename.compare(p_demux->psz_path))
1541 continue; // don't reuse the original opened file
1544 #if defined(__GNUC__) && (__GNUC__ < 3)
1545 if (!s_filename.compare("mkv", s_filename.length() - 3, 3) ||
1546 !s_filename.compare("mka", s_filename.length() - 3, 3))
1548 if (!s_filename.compare(s_filename.length() - 3, 3, "mkv") ||
1549 !s_filename.compare(s_filename.length() - 3, 3, "mka"))
1552 // test wether this file belongs to our family
1553 const uint8_t *p_peek;
1554 bool file_ok = false;
1555 stream_t *p_file_stream = stream_UrlNew(
1557 s_filename.c_str());
1558 /* peek the begining */
1559 if( p_file_stream &&
1560 stream_Peek( p_file_stream, &p_peek, 4 ) >= 4
1561 && p_peek[0] == 0x1a && p_peek[1] == 0x45 &&
1562 p_peek[2] == 0xdf && p_peek[3] == 0xa3 ) file_ok = true;
1566 vlc_stream_io_callback *p_file_io = new vlc_stream_io_callback( p_file_stream, true );
1567 EbmlStream *p_estream = new EbmlStream(*p_file_io);
1569 p_stream = p_sys->AnalyseAllSegmentsFound( p_demux, p_estream );
1571 if ( p_stream == NULL )
1573 msg_Dbg( p_demux, "the file '%s' will not be used", s_filename.c_str() );
1579 p_stream->p_in = p_file_io;
1580 p_stream->p_es = p_estream;
1581 p_sys->streams.push_back( p_stream );
1586 if( p_file_stream ) {
1587 stream_Delete( p_file_stream );
1589 msg_Dbg( p_demux, "the file '%s' cannot be opened", s_filename.c_str() );
1595 closedir( p_src_dir );
1599 p_sys->PreloadFamily( *p_segment );
1602 p_sys->PreloadLinked( p_segment );
1604 if ( !p_sys->PreparePlayback( NULL ) )
1606 msg_Err( p_demux, "cannot use the segment" );
1610 p_sys->StartUiThread();
1616 return VLC_EGENERIC;
1619 /*****************************************************************************
1620 * Close: frees unused data
1621 *****************************************************************************/
1622 static void Close( vlc_object_t *p_this )
1624 demux_t *p_demux = (demux_t*)p_this;
1625 demux_sys_t *p_sys = p_demux->p_sys;
1630 /*****************************************************************************
1632 *****************************************************************************/
1633 static int Control( demux_t *p_demux, int i_query, va_list args )
1635 demux_sys_t *p_sys = p_demux->p_sys;
1642 input_attachment_t ***ppp_attach;
1648 case DEMUX_GET_ATTACHMENTS:
1649 ppp_attach = (input_attachment_t***)va_arg( args, input_attachment_t*** );
1650 pi_int = (int*)va_arg( args, int * );
1652 if( p_sys->stored_attachments.size() <= 0 )
1653 return VLC_EGENERIC;
1655 *pi_int = p_sys->stored_attachments.size();
1656 *ppp_attach = (input_attachment_t**)malloc( sizeof(input_attachment_t**) *
1657 p_sys->stored_attachments.size() );
1658 if( !(*ppp_attach) )
1660 for( i = 0; i < p_sys->stored_attachments.size(); i++ )
1662 attachment_c *a = p_sys->stored_attachments[i];
1663 (*ppp_attach)[i] = vlc_input_attachment_New( a->psz_file_name.c_str(), a->psz_mime_type.c_str(), NULL,
1664 a->p_data, a->i_size );
1668 case DEMUX_GET_META:
1669 p_meta = (vlc_meta_t*)va_arg( args, vlc_meta_t* );
1670 vlc_meta_Merge( p_meta, p_sys->meta );
1673 case DEMUX_GET_LENGTH:
1674 pi64 = (int64_t*)va_arg( args, int64_t * );
1675 if( p_sys->f_duration > 0.0 )
1677 *pi64 = (int64_t)(p_sys->f_duration * 1000);
1680 return VLC_EGENERIC;
1682 case DEMUX_GET_POSITION:
1683 pf = (double*)va_arg( args, double * );
1684 if ( p_sys->f_duration > 0.0 )
1685 *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);
1688 case DEMUX_SET_POSITION:
1689 f = (double)va_arg( args, double );
1690 Seek( p_demux, -1, f, NULL );
1693 case DEMUX_GET_TIME:
1694 pi64 = (int64_t*)va_arg( args, int64_t * );
1695 *pi64 = p_sys->i_pts;
1698 case DEMUX_GET_TITLE_INFO:
1699 if( p_sys->titles.size() > 1 || ( p_sys->titles.size() == 1 && p_sys->titles[0]->i_seekpoint > 0 ) )
1701 input_title_t ***ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
1702 int *pi_int = (int*)va_arg( args, int* );
1704 *pi_int = p_sys->titles.size();
1705 *ppp_title = (input_title_t**)malloc( sizeof( input_title_t**) * p_sys->titles.size() );
1707 for( size_t i = 0; i < p_sys->titles.size(); i++ )
1709 (*ppp_title)[i] = vlc_input_title_Duplicate( p_sys->titles[i] );
1713 return VLC_EGENERIC;
1715 case DEMUX_SET_TITLE:
1716 /* TODO handle editions as titles */
1717 i_idx = (int)va_arg( args, int );
1718 if( i_idx < p_sys->used_segments.size() )
1720 p_sys->JumpTo( *p_sys->used_segments[i_idx], NULL );
1723 return VLC_EGENERIC;
1725 case DEMUX_SET_SEEKPOINT:
1726 i_skp = (int)va_arg( args, int );
1728 // TODO change the way it works with the << & >> buttons on the UI (+1/-1 instead of a number)
1729 if( p_sys->titles.size() && i_skp < p_sys->titles[p_sys->i_current_title]->i_seekpoint)
1731 Seek( p_demux, (int64_t)p_sys->titles[p_sys->i_current_title]->seekpoint[i_skp]->i_time_offset, -1, NULL);
1732 p_demux->info.i_seekpoint |= INPUT_UPDATE_SEEKPOINT;
1733 p_demux->info.i_seekpoint = i_skp;
1736 return VLC_EGENERIC;
1738 case DEMUX_SET_TIME:
1741 return VLC_EGENERIC;
1745 #if LIBMATROSKA_VERSION >= 0x000800
1746 int matroska_segment_c::BlockGet( KaxBlock * & pp_block, KaxSimpleBlock * & pp_simpleblock, int64_t *pi_ref1, int64_t *pi_ref2, int64_t *pi_duration )
1748 int matroska_segment_c::BlockGet( KaxBlock * & pp_block, int64_t *pi_ref1, int64_t *pi_ref2, int64_t *pi_duration )
1751 #if LIBMATROSKA_VERSION >= 0x000800
1752 pp_simpleblock = NULL;
1760 EbmlElement *el = NULL;
1764 return VLC_EGENERIC;
1766 #if LIBMATROSKA_VERSION >= 0x000800
1767 if( pp_simpleblock != NULL || ((el = ep->Get()) == NULL && pp_block != NULL) )
1769 if( (el = ep->Get()) == NULL && pp_block != NULL )
1772 /* update the index */
1773 #define idx p_indexes[i_index - 1]
1774 if( i_index > 0 && idx.i_time == -1 )
1776 #if LIBMATROSKA_VERSION >= 0x000800
1777 if ( pp_simpleblock != NULL )
1778 idx.i_time = pp_simpleblock->GlobalTimecode() / (mtime_t)1000;
1781 idx.i_time = (*pp_block).GlobalTimecode() / (mtime_t)1000;
1782 idx.b_key = *pi_ref1 == 0 ? true : false;
1788 i_level = ep->GetLevel();
1797 msg_Warn( &sys.demuxer, "EOF" );
1798 return VLC_EGENERIC;
1801 /* Verify that we are still inside our cluster
1802 * It can happens whith broken files and when seeking
1806 if( cluster && !ep->IsTopPresent( cluster ) )
1808 msg_Warn( &sys.demuxer, "Unexpected escape from current cluster" );
1819 if( MKV_IS_ID( el, KaxCluster ) )
1821 cluster = (KaxCluster*)el;
1822 i_cluster_pos = cluster->GetElementPosition();
1824 /* add it to the index */
1826 ( i_index > 0 && p_indexes[i_index - 1].i_position < (int64_t)cluster->GetElementPosition() ) )
1828 IndexAppendCluster( cluster );
1831 // reset silent tracks
1832 for (size_t i=0; i<tracks.size(); i++)
1834 tracks[i]->b_silent = false;
1839 else if( MKV_IS_ID( el, KaxCues ) )
1841 msg_Warn( &sys.demuxer, "find KaxCues FIXME" );
1842 return VLC_EGENERIC;
1846 msg_Dbg( &sys.demuxer, "unknown (%s)", typeid( el ).name() );
1850 if( MKV_IS_ID( el, KaxClusterTimecode ) )
1852 KaxClusterTimecode &ctc = *(KaxClusterTimecode*)el;
1854 ctc.ReadData( es.I_O(), SCOPE_ALL_DATA );
1855 cluster->InitTimecode( uint64( ctc ), i_timescale );
1857 else if( MKV_IS_ID( el, KaxClusterSilentTracks ) )
1861 else if( MKV_IS_ID( el, KaxBlockGroup ) )
1863 i_block_pos = el->GetElementPosition();
1866 #if LIBMATROSKA_VERSION >= 0x000800
1867 else if( MKV_IS_ID( el, KaxSimpleBlock ) )
1869 pp_simpleblock = (KaxSimpleBlock*)el;
1871 pp_simpleblock->ReadData( es.I_O() );
1872 pp_simpleblock->SetParent( *cluster );
1877 if( MKV_IS_ID( el, KaxBlock ) )
1879 pp_block = (KaxBlock*)el;
1881 pp_block->ReadData( es.I_O() );
1882 pp_block->SetParent( *cluster );
1886 else if( MKV_IS_ID( el, KaxBlockDuration ) )
1888 KaxBlockDuration &dur = *(KaxBlockDuration*)el;
1890 dur.ReadData( es.I_O() );
1891 *pi_duration = uint64( dur );
1893 else if( MKV_IS_ID( el, KaxReferenceBlock ) )
1895 KaxReferenceBlock &ref = *(KaxReferenceBlock*)el;
1897 ref.ReadData( es.I_O() );
1900 *pi_ref1 = int64( ref ) * cluster->GlobalTimecodeScale();
1902 else if( *pi_ref2 == 0 )
1904 *pi_ref2 = int64( ref ) * cluster->GlobalTimecodeScale();
1907 else if( MKV_IS_ID( el, KaxClusterSilentTrackNumber ) )
1909 KaxClusterSilentTrackNumber &track_num = *(KaxClusterSilentTrackNumber*)el;
1910 track_num.ReadData( es.I_O() );
1912 for (size_t i=0; i<tracks.size(); i++)
1914 if ( tracks[i]->i_number == uint32(track_num))
1916 tracks[i]->b_silent = true;
1923 msg_Err( &sys.demuxer, "invalid level = %d", i_level );
1924 return VLC_EGENERIC;
1929 static block_t *MemToBlock( demux_t *p_demux, uint8_t *p_mem, int i_mem, size_t offset)
1932 if( !(p_block = block_New( p_demux, i_mem + offset ) ) ) return NULL;
1933 memcpy( p_block->p_buffer + offset, p_mem, i_mem );
1934 //p_block->i_rate = p_input->stream.control.i_rate;
1938 #if LIBMATROSKA_VERSION >= 0x000800
1939 static void BlockDecode( demux_t *p_demux, KaxBlock *block, KaxSimpleBlock *simpleblock,
1940 mtime_t i_pts, mtime_t i_duration, bool f_mandatory )
1942 static void BlockDecode( demux_t *p_demux, KaxBlock *block, mtime_t i_pts,
1943 mtime_t i_duration, bool f_mandatory )
1946 demux_sys_t *p_sys = p_demux->p_sys;
1947 matroska_segment_c *p_segment = p_sys->p_current_segment->Segment();
1953 #define tk p_segment->tracks[i_track]
1954 for( i_track = 0; i_track < p_segment->tracks.size(); i_track++ )
1956 #if LIBMATROSKA_VERSION >= 0x000800
1957 if( (block != NULL && tk->i_number == block->TrackNum()) ||
1958 (simpleblock != NULL && tk->i_number == simpleblock->TrackNum()))
1960 if( tk->i_number == block->TrackNum() )
1967 if( i_track >= p_segment->tracks.size() )
1969 msg_Err( p_demux, "invalid track number" );
1972 if( tk->fmt.i_cat != NAV_ES && tk->p_es == NULL )
1974 msg_Err( p_demux, "unknown track number" );
1977 if( i_pts + i_duration < p_sys->i_start_pts && tk->fmt.i_cat == AUDIO_ES )
1979 return; /* discard audio packets that shouldn't be rendered */
1982 if ( tk->fmt.i_cat != NAV_ES )
1984 es_out_Control( p_demux->out, ES_OUT_GET_ES_STATE, tk->p_es, &b );
1988 tk->b_inited = false;
1994 /* First send init data */
1995 if( !tk->b_inited && tk->i_data_init > 0 )
1999 msg_Dbg( p_demux, "sending header (%d bytes)", tk->i_data_init );
2000 p_init = MemToBlock( p_demux, tk->p_data_init, tk->i_data_init, 0 );
2001 if( p_init ) es_out_Send( p_demux->out, tk->p_es, p_init );
2003 tk->b_inited = true;
2006 #if LIBMATROSKA_VERSION >= 0x000800
2008 (block != NULL && i < block->NumberFrames()) || (simpleblock != NULL && i < simpleblock->NumberFrames());
2011 for( i = 0; i < block->NumberFrames(); i++ )
2016 #if LIBMATROSKA_VERSION >= 0x000800
2017 if ( simpleblock != NULL )
2019 data = &simpleblock->GetBuffer(i);
2020 // condition when the DTS is correct (keyframe or B frame == NOT P frame)
2021 f_mandatory = simpleblock->IsDiscardable() || simpleblock->IsKeyframe();
2025 data = &block->GetBuffer(i);
2027 if( tk->i_compression_type == MATROSKA_COMPRESSION_HEADER && tk->p_compression_data != NULL )
2028 p_block = MemToBlock( p_demux, data->Buffer(), data->Size(), tk->p_compression_data->GetSize() );
2030 p_block = MemToBlock( p_demux, data->Buffer(), data->Size(), 0 );
2032 if( p_block == NULL )
2037 #if defined(HAVE_ZLIB_H)
2038 if( tk->i_compression_type == MATROSKA_COMPRESSION_ZLIB )
2040 p_block = block_zlib_decompress( VLC_OBJECT(p_demux), p_block );
2044 if( tk->i_compression_type == MATROSKA_COMPRESSION_HEADER )
2046 memcpy( p_block->p_buffer, tk->p_compression_data->GetBuffer(), tk->p_compression_data->GetSize() );
2049 if ( tk->fmt.i_cat == NAV_ES )
2051 // TODO handle the start/stop times of this packet
2052 if ( p_sys->b_ui_hooked )
2054 vlc_mutex_lock( &p_sys->p_ev->lock );
2055 memcpy( &p_sys->pci_packet, &p_block->p_buffer[1], sizeof(pci_t) );
2056 p_sys->SwapButtons();
2057 p_sys->b_pci_packet_set = true;
2058 vlc_mutex_unlock( &p_sys->p_ev->lock );
2059 block_Release( p_block );
2063 // correct timestamping when B frames are used
2064 if( tk->fmt.i_cat != VIDEO_ES )
2066 p_block->i_dts = p_block->i_pts = i_pts;
2070 if( !strcmp( tk->psz_codec, "V_MS/VFW/FOURCC" ) )
2072 // in VFW we have no idea about B frames
2074 p_block->i_dts = i_pts;
2078 p_block->i_pts = i_pts;
2080 p_block->i_dts = p_block->i_pts;
2082 p_block->i_dts = min( i_pts, tk->i_last_dts + (mtime_t)(tk->i_default_duration >> 10));
2083 p_sys->i_pts = p_block->i_dts;
2086 tk->i_last_dts = p_block->i_dts;
2089 msg_Dbg( p_demux, "block i_dts: %"PRId64" / i_pts: %"PRId64, p_block->i_dts, p_block->i_pts);
2091 if( strcmp( tk->psz_codec, "S_VOBSUB" ) )
2093 p_block->i_length = i_duration * 1000;
2096 es_out_Send( p_demux->out, tk->p_es, p_block );
2098 /* use time stamp only for first block */
2105 matroska_stream_c *demux_sys_t::AnalyseAllSegmentsFound( demux_t *p_demux, EbmlStream *p_estream, bool b_initial )
2107 int i_upper_lvl = 0;
2109 EbmlElement *p_l0, *p_l1, *p_l2;
2110 bool b_keep_stream = false, b_keep_segment;
2112 // verify the EBML Header
2113 p_l0 = p_estream->FindNextID(EbmlHead::ClassInfos, 0xFFFFFFFFL);
2116 msg_Err( p_demux, "No EBML header found" );
2120 // verify we can read this Segment, we only support Matroska version 1 for now
2121 p_l0->Read(*p_estream, EbmlHead::ClassInfos.Context, i_upper_lvl, p_l0, true);
2123 EDocType doc_type = GetChild<EDocType>(*static_cast<EbmlHead*>(p_l0));
2124 if (std::string(doc_type) != "matroska")
2126 msg_Err( p_demux, "Not a Matroska file : DocType = %s ", std::string(doc_type).c_str());
2130 EDocTypeReadVersion doc_read_version = GetChild<EDocTypeReadVersion>(*static_cast<EbmlHead*>(p_l0));
2131 #if LIBMATROSKA_VERSION >= 0x000800
2132 if (uint64(doc_read_version) > 2)
2134 msg_Err( p_demux, "This matroska file is needs version %"PRId64" and this VLC only supports version 1 & 2", uint64(doc_read_version));
2138 if (uint64(doc_read_version) != 1)
2140 msg_Err( p_demux, "This matroska file is needs version %"PRId64" and this VLC only supports version 1", uint64(doc_read_version));
2148 // find all segments in this file
2149 p_l0 = p_estream->FindNextID(KaxSegment::ClassInfos, 0xFFFFFFFFFLL);
2155 matroska_stream_c *p_stream1 = new matroska_stream_c( *this );
2159 if (EbmlId(*p_l0) == KaxSegment::ClassInfos.GlobalId)
2162 matroska_segment_c *p_segment1 = new matroska_segment_c( *this, *p_estream );
2163 b_keep_segment = b_initial;
2165 ep = new EbmlParser(p_estream, p_l0, &demuxer );
2166 p_segment1->ep = ep;
2167 p_segment1->segment = (KaxSegment*)p_l0;
2169 while ((p_l1 = ep->Get()))
2171 if (MKV_IS_ID(p_l1, KaxInfo))
2173 // find the families of this segment
2174 KaxInfo *p_info = static_cast<KaxInfo*>(p_l1);
2176 p_info->Read(*p_estream, KaxInfo::ClassInfos.Context, i_upper_lvl, p_l2, true);
2177 for( i = 0; i < p_info->ListSize(); i++ )
2179 EbmlElement *l = (*p_info)[i];
2181 if( MKV_IS_ID( l, KaxSegmentUID ) )
2183 KaxSegmentUID *p_uid = static_cast<KaxSegmentUID*>(l);
2184 b_keep_segment = (FindSegment( *p_uid ) == NULL);
2185 if ( !b_keep_segment )
2186 break; // this segment is already known
2187 opened_segments.push_back( p_segment1 );
2188 delete p_segment1->p_segment_uid;
2189 p_segment1->p_segment_uid = new KaxSegmentUID(*p_uid);
2191 else if( MKV_IS_ID( l, KaxPrevUID ) )
2193 p_segment1->p_prev_segment_uid = new KaxPrevUID( *static_cast<KaxPrevUID*>(l) );
2195 else if( MKV_IS_ID( l, KaxNextUID ) )
2197 p_segment1->p_next_segment_uid = new KaxNextUID( *static_cast<KaxNextUID*>(l) );
2199 else if( MKV_IS_ID( l, KaxSegmentFamily ) )
2201 KaxSegmentFamily *p_fam = new KaxSegmentFamily( *static_cast<KaxSegmentFamily*>(l) );
2202 p_segment1->families.push_back( p_fam );
2208 if ( b_keep_segment )
2210 b_keep_stream = true;
2211 p_stream1->segments.push_back( p_segment1 );
2215 p_segment1->segment = NULL;
2219 if (p_l0->IsFiniteSize() )
2221 p_l0->SkipData(*p_estream, KaxMatroska_Context);
2222 p_l0 = p_estream->FindNextID(KaxSegment::ClassInfos, 0xFFFFFFFFL);
2225 p_l0 = p_l0->SkipData(*p_estream, KaxSegment_Context);
2228 if ( !b_keep_stream )
2237 bool matroska_segment_c::Select( mtime_t i_start_time )
2242 msg_Dbg( &sys.demuxer, "found %d es", (int)tracks.size() );
2243 sys.b_pci_packet_set = false;
2245 for( i_track = 0; i_track < tracks.size(); i_track++ )
2247 if( tracks[i_track]->fmt.i_cat == UNKNOWN_ES )
2249 msg_Warn( &sys.demuxer, "invalid track[%d, n=%d]", (int)i_track, tracks[i_track]->i_number );
2250 tracks[i_track]->p_es = NULL;
2254 if( !strcmp( tracks[i_track]->psz_codec, "V_MS/VFW/FOURCC" ) )
2256 if( tracks[i_track]->i_extra_data < (int)sizeof( BITMAPINFOHEADER ) )
2258 msg_Err( &sys.demuxer, "missing/invalid BITMAPINFOHEADER" );
2259 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
2263 BITMAPINFOHEADER *p_bih = (BITMAPINFOHEADER*)tracks[i_track]->p_extra_data;
2265 tracks[i_track]->fmt.video.i_width = GetDWLE( &p_bih->biWidth );
2266 tracks[i_track]->fmt.video.i_height= GetDWLE( &p_bih->biHeight );
2267 tracks[i_track]->fmt.i_codec = GetFOURCC( &p_bih->biCompression );
2269 tracks[i_track]->fmt.i_extra = GetDWLE( &p_bih->biSize ) - sizeof( BITMAPINFOHEADER );
2270 if( tracks[i_track]->fmt.i_extra > 0 )
2272 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra );
2273 memcpy( tracks[i_track]->fmt.p_extra, &p_bih[1], tracks[i_track]->fmt.i_extra );
2277 else if( !strcmp( tracks[i_track]->psz_codec, "V_MPEG1" ) ||
2278 !strcmp( tracks[i_track]->psz_codec, "V_MPEG2" ) )
2280 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'm', 'p', 'g', 'v' );
2282 else if( !strncmp( tracks[i_track]->psz_codec, "V_THEORA", 8 ) )
2284 uint8_t *p_data = tracks[i_track]->p_extra_data;
2285 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 't', 'h', 'e', 'o' );
2286 if( tracks[i_track]->i_extra_data >= 4 ) {
2287 if( p_data[0] == 2 ) {
2289 int i_size1 = 0, i_size2 = 0;
2291 /* read size of first header packet */
2292 while( *p_data == 0xFF &&
2293 i < tracks[i_track]->i_extra_data )
2302 msg_Dbg( &sys.demuxer, "first theora header size %d", i_size1 );
2303 /* read size of second header packet */
2304 while( *p_data == 0xFF &&
2305 i < tracks[i_track]->i_extra_data )
2314 int i_size3 = tracks[i_track]->i_extra_data - i - i_size1
2316 msg_Dbg( &sys.demuxer, "second theora header size %d", i_size2 );
2317 msg_Dbg( &sys.demuxer, "third theora header size %d", i_size3 );
2318 tracks[i_track]->fmt.i_extra = i_size1 + i_size2 + i_size3
2320 if( i_size1 > 0 && i_size2 > 0 && i_size3 > 0 ) {
2321 tracks[i_track]->fmt.p_extra =
2322 malloc( tracks[i_track]->fmt.i_extra );
2323 uint8_t *p_out = (uint8_t*)tracks[i_track]->fmt.p_extra;
2324 *p_out++ = (i_size1>>8) & 0xFF;
2325 *p_out++ = i_size1 & 0xFF;
2326 memcpy( p_out, p_data, i_size1 );
2330 *p_out++ = (i_size2>>8) & 0xFF;
2331 *p_out++ = i_size2 & 0xFF;
2332 memcpy( p_out, p_data, i_size2 );
2336 *p_out++ = (i_size3>>8) & 0xFF;
2337 *p_out++ = i_size3 & 0xFF;
2338 memcpy( p_out, p_data, i_size3 );
2344 msg_Err( &sys.demuxer, "inconsistant theora extradata" );
2348 msg_Err( &sys.demuxer, "Wrong number of ogg packets with theora headers (%d)", p_data[0] + 1 );
2352 else if( !strncmp( tracks[i_track]->psz_codec, "V_REAL/RV", 9 ) )
2354 if( !strcmp( tracks[i_track]->psz_codec, "V_REAL/RV10" ) )
2355 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'R', 'V', '1', '0' );
2356 else if( !strcmp( tracks[i_track]->psz_codec, "V_REAL/RV20" ) )
2357 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'R', 'V', '2', '0' );
2358 else if( !strcmp( tracks[i_track]->psz_codec, "V_REAL/RV30" ) )
2359 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'R', 'V', '3', '0' );
2360 else if( !strcmp( tracks[i_track]->psz_codec, "V_REAL/RV40" ) )
2361 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'R', 'V', '4', '0' );
2363 else if( !strncmp( tracks[i_track]->psz_codec, "V_MPEG4", 7 ) )
2365 if( !strcmp( tracks[i_track]->psz_codec, "V_MPEG4/MS/V3" ) )
2367 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'D', 'I', 'V', '3' );
2369 else if( !strncmp( tracks[i_track]->psz_codec, "V_MPEG4/ISO", 11 ) )
2371 /* A MPEG 4 codec, SP, ASP, AP or AVC */
2372 if( !strcmp( tracks[i_track]->psz_codec, "V_MPEG4/ISO/AVC" ) )
2373 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'a', 'v', 'c', '1' );
2375 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'm', 'p', '4', 'v' );
2376 tracks[i_track]->fmt.i_extra = tracks[i_track]->i_extra_data;
2377 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->i_extra_data );
2378 memcpy( tracks[i_track]->fmt.p_extra,tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data );
2381 else if( !strcmp( tracks[i_track]->psz_codec, "V_QUICKTIME" ) )
2383 MP4_Box_t *p_box = (MP4_Box_t*)malloc( sizeof( MP4_Box_t ) );
2384 stream_t *p_mp4_stream = stream_MemoryNew( VLC_OBJECT(&sys.demuxer),
2385 tracks[i_track]->p_extra_data,
2386 tracks[i_track]->i_extra_data,
2388 MP4_ReadBoxCommon( p_mp4_stream, p_box );
2389 MP4_ReadBox_sample_vide( p_mp4_stream, p_box );
2390 tracks[i_track]->fmt.i_codec = p_box->i_type;
2391 tracks[i_track]->fmt.video.i_width = p_box->data.p_sample_vide->i_width;
2392 tracks[i_track]->fmt.video.i_height = p_box->data.p_sample_vide->i_height;
2393 tracks[i_track]->fmt.i_extra = p_box->data.p_sample_vide->i_qt_image_description;
2394 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra );
2395 memcpy( tracks[i_track]->fmt.p_extra, p_box->data.p_sample_vide->p_qt_image_description, tracks[i_track]->fmt.i_extra );
2396 MP4_FreeBox_sample_vide( p_box );
2397 stream_Delete( p_mp4_stream );
2399 else if( !strcmp( tracks[i_track]->psz_codec, "A_MS/ACM" ) )
2401 if( tracks[i_track]->i_extra_data < (int)sizeof( WAVEFORMATEX ) )
2403 msg_Err( &sys.demuxer, "missing/invalid WAVEFORMATEX" );
2404 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
2408 WAVEFORMATEX *p_wf = (WAVEFORMATEX*)tracks[i_track]->p_extra_data;
2410 wf_tag_to_fourcc( GetWLE( &p_wf->wFormatTag ), &tracks[i_track]->fmt.i_codec, NULL );
2412 tracks[i_track]->fmt.audio.i_channels = GetWLE( &p_wf->nChannels );
2413 tracks[i_track]->fmt.audio.i_rate = GetDWLE( &p_wf->nSamplesPerSec );
2414 tracks[i_track]->fmt.i_bitrate = GetDWLE( &p_wf->nAvgBytesPerSec ) * 8;
2415 tracks[i_track]->fmt.audio.i_blockalign = GetWLE( &p_wf->nBlockAlign );;
2416 tracks[i_track]->fmt.audio.i_bitspersample = GetWLE( &p_wf->wBitsPerSample );
2418 tracks[i_track]->fmt.i_extra = GetWLE( &p_wf->cbSize );
2419 if( tracks[i_track]->fmt.i_extra > 0 )
2421 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra );
2422 memcpy( tracks[i_track]->fmt.p_extra, &p_wf[1], tracks[i_track]->fmt.i_extra );
2426 else if( !strcmp( tracks[i_track]->psz_codec, "A_MPEG/L3" ) ||
2427 !strcmp( tracks[i_track]->psz_codec, "A_MPEG/L2" ) ||
2428 !strcmp( tracks[i_track]->psz_codec, "A_MPEG/L1" ) )
2430 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'm', 'p', 'g', 'a' );
2432 else if( !strcmp( tracks[i_track]->psz_codec, "A_AC3" ) )
2434 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'a', '5', '2', ' ' );
2436 else if( !strcmp( tracks[i_track]->psz_codec, "A_DTS" ) )
2438 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'd', 't', 's', ' ' );
2440 else if( !strcmp( tracks[i_track]->psz_codec, "A_FLAC" ) )
2442 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'f', 'l', 'a', 'c' );
2443 tracks[i_track]->fmt.i_extra = tracks[i_track]->i_extra_data;
2444 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->i_extra_data );
2445 memcpy( tracks[i_track]->fmt.p_extra,tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data );
2447 else if( !strcmp( tracks[i_track]->psz_codec, "A_VORBIS" ) )
2449 int i, i_offset = 1, i_size[3], i_extra;
2452 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'v', 'o', 'r', 'b' );
2454 /* Split the 3 headers */
2455 if( tracks[i_track]->p_extra_data[0] != 0x02 )
2456 msg_Err( &sys.demuxer, "invalid vorbis header" );
2458 for( i = 0; i < 2; i++ )
2461 while( i_offset < tracks[i_track]->i_extra_data )
2463 i_size[i] += tracks[i_track]->p_extra_data[i_offset];
2464 if( tracks[i_track]->p_extra_data[i_offset++] != 0xff ) break;
2468 i_size[0] = __MIN(i_size[0], tracks[i_track]->i_extra_data - i_offset);
2469 i_size[1] = __MIN(i_size[1], tracks[i_track]->i_extra_data -i_offset -i_size[0]);
2470 i_size[2] = tracks[i_track]->i_extra_data - i_offset - i_size[0] - i_size[1];
2472 tracks[i_track]->fmt.i_extra = 3 * 2 + i_size[0] + i_size[1] + i_size[2];
2473 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra );
2474 p_extra = (uint8_t *)tracks[i_track]->fmt.p_extra; i_extra = 0;
2475 for( i = 0; i < 3; i++ )
2477 *(p_extra++) = i_size[i] >> 8;
2478 *(p_extra++) = i_size[i] & 0xFF;
2479 memcpy( p_extra, tracks[i_track]->p_extra_data + i_offset + i_extra,
2481 p_extra += i_size[i];
2482 i_extra += i_size[i];
2485 else if( !strncmp( tracks[i_track]->psz_codec, "A_AAC/MPEG2/", strlen( "A_AAC/MPEG2/" ) ) ||
2486 !strncmp( tracks[i_track]->psz_codec, "A_AAC/MPEG4/", strlen( "A_AAC/MPEG4/" ) ) )
2488 int i_profile, i_srate, sbr = 0;
2489 static const unsigned int i_sample_rates[] =
2491 96000, 88200, 64000, 48000, 44100, 32000, 24000, 22050,
2492 16000, 12000, 11025, 8000, 7350, 0, 0, 0
2495 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'm', 'p', '4', 'a' );
2496 /* create data for faad (MP4DecSpecificDescrTag)*/
2498 if( !strcmp( &tracks[i_track]->psz_codec[12], "MAIN" ) )
2502 else if( !strcmp( &tracks[i_track]->psz_codec[12], "LC" ) )
2506 else if( !strcmp( &tracks[i_track]->psz_codec[12], "SSR" ) )
2510 else if( !strcmp( &tracks[i_track]->psz_codec[12], "LC/SBR" ) )
2520 for( i_srate = 0; i_srate < 13; i_srate++ )
2522 if( i_sample_rates[i_srate] == tracks[i_track]->i_original_rate )
2527 msg_Dbg( &sys.demuxer, "profile=%d srate=%d", i_profile, i_srate );
2529 tracks[i_track]->fmt.i_extra = sbr ? 5 : 2;
2530 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra );
2531 ((uint8_t*)tracks[i_track]->fmt.p_extra)[0] = ((i_profile + 1) << 3) | ((i_srate&0xe) >> 1);
2532 ((uint8_t*)tracks[i_track]->fmt.p_extra)[1] = ((i_srate & 0x1) << 7) | (tracks[i_track]->fmt.audio.i_channels << 3);
2535 int syncExtensionType = 0x2B7;
2537 for (iDSRI=0; iDSRI<13; iDSRI++)
2538 if( i_sample_rates[iDSRI] == tracks[i_track]->fmt.audio.i_rate )
2540 ((uint8_t*)tracks[i_track]->fmt.p_extra)[2] = (syncExtensionType >> 3) & 0xFF;
2541 ((uint8_t*)tracks[i_track]->fmt.p_extra)[3] = ((syncExtensionType & 0x7) << 5) | 5;
2542 ((uint8_t*)tracks[i_track]->fmt.p_extra)[4] = ((1 & 0x1) << 7) | (iDSRI << 3);
2545 else if( !strcmp( tracks[i_track]->psz_codec, "A_AAC" ) )
2547 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'm', 'p', '4', 'a' );
2548 tracks[i_track]->fmt.i_extra = tracks[i_track]->i_extra_data;
2549 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->i_extra_data );
2550 memcpy( tracks[i_track]->fmt.p_extra, tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data );
2552 else if( !strcmp( tracks[i_track]->psz_codec, "A_WAVPACK4" ) )
2554 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'W', 'V', 'P', 'K' );
2555 tracks[i_track]->fmt.i_extra = tracks[i_track]->i_extra_data;
2556 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->i_extra_data );
2557 memcpy( tracks[i_track]->fmt.p_extra, tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data );
2559 else if( !strcmp( tracks[i_track]->psz_codec, "A_TTA1" ) )
2561 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'T', 'T', 'A', '1' );
2562 tracks[i_track]->fmt.i_extra = tracks[i_track]->i_extra_data;
2563 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->i_extra_data );
2564 memcpy( tracks[i_track]->fmt.p_extra, tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data );
2566 else if( !strcmp( tracks[i_track]->psz_codec, "A_PCM/INT/BIG" ) ||
2567 !strcmp( tracks[i_track]->psz_codec, "A_PCM/INT/LIT" ) ||
2568 !strcmp( tracks[i_track]->psz_codec, "A_PCM/FLOAT/IEEE" ) )
2570 if( !strcmp( tracks[i_track]->psz_codec, "A_PCM/INT/BIG" ) )
2572 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 't', 'w', 'o', 's' );
2576 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'a', 'r', 'a', 'w' );
2578 tracks[i_track]->fmt.audio.i_blockalign = ( tracks[i_track]->fmt.audio.i_bitspersample + 7 ) / 8 * tracks[i_track]->fmt.audio.i_channels;
2580 /* disabled due to the potential "S_KATE" namespace issue */
2581 else if( !strcmp( tracks[i_track]->psz_codec, "S_KATE" ) )
2583 int i, i_offset = 1, *i_size, i_extra, num_headers, size_so_far;
2586 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'k', 'a', 't', 'e' );
2587 tracks[i_track]->fmt.subs.psz_encoding = strdup( "UTF-8" );
2589 /* Recover the number of headers to expect */
2590 num_headers = tracks[i_track]->p_extra_data[0]+1;
2591 msg_Dbg( &sys.demuxer, "kate in mkv detected: %d headers in %u bytes",
2592 num_headers, tracks[i_track]->i_extra_data);
2594 /* this won't overflow the stack as is can allocate only 1020 bytes max */
2595 i_size = (int*)alloca(num_headers*sizeof(int));
2597 /* Split the headers */
2599 for( i = 0; i < num_headers-1; i++ )
2602 while( i_offset < tracks[i_track]->i_extra_data )
2604 i_size[i] += tracks[i_track]->p_extra_data[i_offset];
2605 if( tracks[i_track]->p_extra_data[i_offset++] != 0xff ) break;
2607 msg_Dbg( &sys.demuxer, "kate header %d is %d bytes", i, i_size[i]);
2608 size_so_far += i_size[i];
2610 i_size[num_headers-1] = tracks[i_track]->i_extra_data - (size_so_far+i_offset);
2611 msg_Dbg( &sys.demuxer, "kate last header (%d) is %d bytes", num_headers-1, i_size[num_headers-1]);
2613 tracks[i_track]->fmt.i_extra = 1 + num_headers * 2 + size_so_far + i_size[num_headers-1];
2614 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra );
2616 p_extra = (uint8_t *)tracks[i_track]->fmt.p_extra;
2618 *(p_extra++) = num_headers;
2620 for( i = 0; i < num_headers; i++ )
2622 *(p_extra++) = i_size[i] >> 8;
2623 *(p_extra++) = i_size[i] & 0xFF;
2624 memcpy( p_extra, tracks[i_track]->p_extra_data + i_offset + i_extra-1,
2626 p_extra += i_size[i];
2627 i_extra += i_size[i];
2630 else if( !strcmp( tracks[i_track]->psz_codec, "S_TEXT/UTF8" ) )
2632 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 's', 'u', 'b', 't' );
2633 tracks[i_track]->fmt.subs.psz_encoding = strdup( "UTF-8" );
2635 else if( !strcmp( tracks[i_track]->psz_codec, "S_TEXT/USF" ) )
2637 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'u', 's', 'f', ' ' );
2638 tracks[i_track]->fmt.subs.psz_encoding = strdup( "UTF-8" );
2639 if( tracks[i_track]->i_extra_data )
2641 tracks[i_track]->fmt.i_extra = tracks[i_track]->i_extra_data;
2642 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->i_extra_data );
2643 memcpy( tracks[i_track]->fmt.p_extra, tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data );
2646 else if( !strcmp( tracks[i_track]->psz_codec, "S_TEXT/SSA" ) ||
2647 !strcmp( tracks[i_track]->psz_codec, "S_TEXT/ASS" ) ||
2648 !strcmp( tracks[i_track]->psz_codec, "S_SSA" ) ||
2649 !strcmp( tracks[i_track]->psz_codec, "S_ASS" ))
2651 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 's', 's', 'a', ' ' );
2652 tracks[i_track]->fmt.subs.psz_encoding = strdup( "UTF-8" );
2653 if( tracks[i_track]->i_extra_data )
2655 tracks[i_track]->fmt.i_extra = tracks[i_track]->i_extra_data;
2656 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->i_extra_data );
2657 memcpy( tracks[i_track]->fmt.p_extra, tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data );
2660 else if( !strcmp( tracks[i_track]->psz_codec, "S_VOBSUB" ) )
2662 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 's','p','u',' ' );
2663 if( tracks[i_track]->i_extra_data )
2666 char *p_buf = (char *)malloc( tracks[i_track]->i_extra_data + 1);
2667 memcpy( p_buf, tracks[i_track]->p_extra_data , tracks[i_track]->i_extra_data );
2668 p_buf[tracks[i_track]->i_extra_data] = '\0';
2670 p_start = strstr( p_buf, "size:" );
2671 if( sscanf( p_start, "size: %dx%d",
2672 &tracks[i_track]->fmt.subs.spu.i_original_frame_width, &tracks[i_track]->fmt.subs.spu.i_original_frame_height ) == 2 )
2674 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 );
2678 msg_Warn( &sys.demuxer, "reading original frame size for vobsub failed" );
2683 else if( !strcmp( tracks[i_track]->psz_codec, "B_VOBBTN" ) )
2685 tracks[i_track]->fmt.i_cat = NAV_ES;
2690 msg_Err( &sys.demuxer, "unknown codec id=`%s'", tracks[i_track]->psz_codec );
2691 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
2693 if( tracks[i_track]->b_default )
2695 tracks[i_track]->fmt.i_priority = 1000;
2698 tracks[i_track]->p_es = es_out_Add( sys.demuxer.out, &tracks[i_track]->fmt );
2700 /* Turn on a subtitles track if it has been flagged as default -
2701 * but only do this if no subtitles track has already been engaged,
2702 * either by an earlier 'default track' (??) or by default
2703 * language choice behaviour.
2705 if( tracks[i_track]->b_default )
2707 es_out_Control( sys.demuxer.out,
2709 tracks[i_track]->p_es );
2712 es_out_Control( sys.demuxer.out, ES_OUT_SET_NEXT_DISPLAY_TIME, tracks[i_track]->p_es, i_start_time );
2715 sys.i_start_pts = i_start_time;
2716 // reset the stream reading to the first cluster of the segment used
2717 es.I_O().setFilePointer( i_start_pos );
2720 ep = new EbmlParser( &es, segment, &sys.demuxer );
2725 void demux_sys_t::StartUiThread()
2729 msg_Dbg( &demuxer, "Starting the UI Hook" );
2731 /* FIXME hack hack hack hack FIXME */
2732 /* Get p_input and create variable */
2733 p_input = (input_thread_t *) vlc_object_find( &demuxer, VLC_OBJECT_INPUT, FIND_PARENT );
2734 var_Create( p_input, "x-start", VLC_VAR_INTEGER );
2735 var_Create( p_input, "y-start", VLC_VAR_INTEGER );
2736 var_Create( p_input, "x-end", VLC_VAR_INTEGER );
2737 var_Create( p_input, "y-end", VLC_VAR_INTEGER );
2738 var_Create( p_input, "color", VLC_VAR_ADDRESS );
2739 var_Create( p_input, "menu-palette", VLC_VAR_ADDRESS );
2740 var_Create( p_input, "highlight", VLC_VAR_BOOL );
2741 var_Create( p_input, "highlight-mutex", VLC_VAR_MUTEX );
2743 /* Now create our event thread catcher */
2744 p_ev = (event_thread_t *) vlc_object_create( &demuxer, sizeof( event_thread_t ) );
2745 p_ev->p_demux = &demuxer;
2746 p_ev->b_die = false;
2747 vlc_mutex_init( &p_ev->lock );
2748 vlc_thread_create( p_ev, "mkv event thread handler", EventThread,
2749 VLC_THREAD_PRIORITY_LOW, false );
2753 void demux_sys_t::StopUiThread()
2757 vlc_object_kill( p_ev );
2758 vlc_thread_join( p_ev );
2759 vlc_object_release( p_ev );
2763 var_Destroy( p_input, "highlight-mutex" );
2764 var_Destroy( p_input, "highlight" );
2765 var_Destroy( p_input, "x-start" );
2766 var_Destroy( p_input, "x-end" );
2767 var_Destroy( p_input, "y-start" );
2768 var_Destroy( p_input, "y-end" );
2769 var_Destroy( p_input, "color" );
2770 var_Destroy( p_input, "menu-palette" );
2772 vlc_object_release( p_input );
2774 msg_Dbg( &demuxer, "Stopping the UI Hook" );
2776 b_ui_hooked = false;
2779 int demux_sys_t::EventMouse( vlc_object_t *p_this, char const *psz_var,
2780 vlc_value_t oldval, vlc_value_t newval, void *p_data )
2782 event_thread_t *p_ev = (event_thread_t *) p_data;
2783 vlc_mutex_lock( &p_ev->lock );
2784 if( psz_var[6] == 'c' )
2786 p_ev->b_clicked = true;
2787 msg_Dbg( p_this, "Event Mouse: clicked");
2789 else if( psz_var[6] == 'm' )
2790 p_ev->b_moved = true;
2791 vlc_mutex_unlock( &p_ev->lock );
2796 int demux_sys_t::EventKey( vlc_object_t *p_this, char const *,
2797 vlc_value_t, vlc_value_t newval, void *p_data )
2799 event_thread_t *p_ev = (event_thread_t *) p_data;
2800 vlc_mutex_lock( &p_ev->lock );
2801 p_ev->i_key_action = newval.i_int;
2802 vlc_mutex_unlock( &p_ev->lock );
2803 msg_Dbg( p_this, "Event Key");
2808 void * demux_sys_t::EventThread( vlc_object_t *p_this )
2810 event_thread_t *p_ev = (event_thread_t*)p_this;
2811 demux_sys_t *p_sys = p_ev->p_demux->p_sys;
2812 vlc_object_t *p_vout = NULL;
2814 p_ev->b_moved = false;
2815 p_ev->b_clicked = false;
2816 p_ev->i_key_action = 0;
2818 /* catch all key event */
2819 var_AddCallback( p_ev->p_libvlc, "key-action", EventKey, p_ev );
2822 while( vlc_object_alive (p_ev) )
2824 if ( !p_sys->b_pci_packet_set )
2831 bool b_activated = false;
2834 if( p_ev->i_key_action )
2838 msg_Dbg( p_ev->p_demux, "Handle Key Event");
2840 vlc_mutex_lock( &p_ev->lock );
2842 pci_t *pci = (pci_t *) &p_sys->pci_packet;
2844 uint16 i_curr_button = p_sys->dvd_interpretor.GetSPRM( 0x88 );
2846 switch( p_ev->i_key_action )
2848 case ACTIONID_NAV_LEFT:
2849 if ( i_curr_button > 0 && i_curr_button <= pci->hli.hl_gi.btn_ns )
2851 btni_t *p_button_ptr = &(pci->hli.btnit[i_curr_button-1]);
2852 if ( p_button_ptr->left > 0 && p_button_ptr->left <= pci->hli.hl_gi.btn_ns )
2854 i_curr_button = p_button_ptr->left;
2855 p_sys->dvd_interpretor.SetSPRM( 0x88, i_curr_button );
2856 btni_t button_ptr = pci->hli.btnit[i_curr_button-1];
2857 if ( button_ptr.auto_action_mode )
2859 vlc_mutex_unlock( &p_ev->lock );
2860 vlc_mutex_lock( &p_sys->lock_demuxer );
2862 // process the button action
2863 p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 );
2865 vlc_mutex_unlock( &p_sys->lock_demuxer );
2866 vlc_mutex_lock( &p_ev->lock );
2871 case ACTIONID_NAV_RIGHT:
2872 if ( i_curr_button > 0 && i_curr_button <= pci->hli.hl_gi.btn_ns )
2874 btni_t *p_button_ptr = &(pci->hli.btnit[i_curr_button-1]);
2875 if ( p_button_ptr->right > 0 && p_button_ptr->right <= pci->hli.hl_gi.btn_ns )
2877 i_curr_button = p_button_ptr->right;
2878 p_sys->dvd_interpretor.SetSPRM( 0x88, i_curr_button );
2879 btni_t button_ptr = pci->hli.btnit[i_curr_button-1];
2880 if ( button_ptr.auto_action_mode )
2882 vlc_mutex_unlock( &p_ev->lock );
2883 vlc_mutex_lock( &p_sys->lock_demuxer );
2885 // process the button action
2886 p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 );
2888 vlc_mutex_unlock( &p_sys->lock_demuxer );
2889 vlc_mutex_lock( &p_ev->lock );
2894 case ACTIONID_NAV_UP:
2895 if ( i_curr_button > 0 && i_curr_button <= pci->hli.hl_gi.btn_ns )
2897 btni_t *p_button_ptr = &(pci->hli.btnit[i_curr_button-1]);
2898 if ( p_button_ptr->up > 0 && p_button_ptr->up <= pci->hli.hl_gi.btn_ns )
2900 i_curr_button = p_button_ptr->up;
2901 p_sys->dvd_interpretor.SetSPRM( 0x88, i_curr_button );
2902 btni_t button_ptr = pci->hli.btnit[i_curr_button-1];
2903 if ( button_ptr.auto_action_mode )
2905 vlc_mutex_unlock( &p_ev->lock );
2906 vlc_mutex_lock( &p_sys->lock_demuxer );
2908 // process the button action
2909 p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 );
2911 vlc_mutex_unlock( &p_sys->lock_demuxer );
2912 vlc_mutex_lock( &p_ev->lock );
2917 case ACTIONID_NAV_DOWN:
2918 if ( i_curr_button > 0 && i_curr_button <= pci->hli.hl_gi.btn_ns )
2920 btni_t *p_button_ptr = &(pci->hli.btnit[i_curr_button-1]);
2921 if ( p_button_ptr->down > 0 && p_button_ptr->down <= pci->hli.hl_gi.btn_ns )
2923 i_curr_button = p_button_ptr->down;
2924 p_sys->dvd_interpretor.SetSPRM( 0x88, i_curr_button );
2925 btni_t button_ptr = pci->hli.btnit[i_curr_button-1];
2926 if ( button_ptr.auto_action_mode )
2928 vlc_mutex_unlock( &p_ev->lock );
2929 vlc_mutex_lock( &p_sys->lock_demuxer );
2931 // process the button action
2932 p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 );
2934 vlc_mutex_unlock( &p_sys->lock_demuxer );
2935 vlc_mutex_lock( &p_ev->lock );
2940 case ACTIONID_NAV_ACTIVATE:
2943 if ( i_curr_button > 0 && i_curr_button <= pci->hli.hl_gi.btn_ns )
2945 btni_t button_ptr = pci->hli.btnit[i_curr_button-1];
2947 vlc_mutex_unlock( &p_ev->lock );
2948 vlc_mutex_lock( &p_sys->lock_demuxer );
2950 // process the button action
2951 p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 );
2953 vlc_mutex_unlock( &p_sys->lock_demuxer );
2954 vlc_mutex_lock( &p_ev->lock );
2960 p_ev->i_key_action = 0;
2961 vlc_mutex_unlock( &p_ev->lock );
2965 if( p_vout && ( p_ev->b_moved || p_ev->b_clicked ) )
2967 vlc_value_t valx, valy;
2969 vlc_mutex_lock( &p_ev->lock );
2970 pci_t *pci = (pci_t *) &p_sys->pci_packet;
2971 var_Get( p_vout, "mouse-x", &valx );
2972 var_Get( p_vout, "mouse-y", &valy );
2974 if( p_ev->b_clicked )
2977 int32_t best,dist,d;
2978 int32_t mx,my,dx,dy;
2980 msg_Dbg( p_ev->p_demux, "Handle Mouse Event: Mouse clicked x(%d)*y(%d)", (unsigned)valx.i_int, (unsigned)valy.i_int);
2983 // get current button
2985 dist = 0x08000000; /* >> than (720*720)+(567*567); */
2986 for(button = 1; button <= pci->hli.hl_gi.btn_ns; button++)
2988 btni_t *button_ptr = &(pci->hli.btnit[button-1]);
2990 if(((unsigned)valx.i_int >= button_ptr->x_start)
2991 && ((unsigned)valx.i_int <= button_ptr->x_end)
2992 && ((unsigned)valy.i_int >= button_ptr->y_start)
2993 && ((unsigned)valy.i_int <= button_ptr->y_end))
2995 mx = (button_ptr->x_start + button_ptr->x_end)/2;
2996 my = (button_ptr->y_start + button_ptr->y_end)/2;
2997 dx = mx - valx.i_int;
2998 dy = my - valy.i_int;
2999 d = (dx*dx) + (dy*dy);
3000 /* If the mouse is within the button and the mouse is closer
3001 * to the center of this button then it is the best choice. */
3011 btni_t button_ptr = pci->hli.btnit[best-1];
3012 uint16 i_curr_button = p_sys->dvd_interpretor.GetSPRM( 0x88 );
3014 msg_Dbg( &p_sys->demuxer, "Clicked button %d", best );
3015 vlc_mutex_unlock( &p_ev->lock );
3016 vlc_mutex_lock( &p_sys->lock_demuxer );
3018 // process the button action
3019 p_sys->dvd_interpretor.SetSPRM( 0x88, best );
3020 p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 );
3022 msg_Dbg( &p_sys->demuxer, "Processed button %d", best );
3024 // select new button
3025 if ( best != i_curr_button )
3029 if( var_Get( p_sys->p_input, "highlight-mutex", &val ) == VLC_SUCCESS )
3031 vlc_mutex_t *p_mutex = (vlc_mutex_t *) val.p_address;
3034 if(button_ptr.btn_coln != 0) {
3035 i_palette = pci->hli.btn_colit.btn_coli[button_ptr.btn_coln-1][1];
3040 for( int i = 0; i < 4; i++ )
3042 uint32_t i_yuv = 0xFF;//p_sys->clut[(hl.palette>>(16+i*4))&0x0f];
3043 uint8_t i_alpha = (i_palette>>(i*4))&0x0f;
3044 i_alpha = i_alpha == 0xf ? 0xff : i_alpha << 4;
3046 p_sys->palette[i][0] = (i_yuv >> 16) & 0xff;
3047 p_sys->palette[i][1] = (i_yuv >> 0) & 0xff;
3048 p_sys->palette[i][2] = (i_yuv >> 8) & 0xff;
3049 p_sys->palette[i][3] = i_alpha;
3052 vlc_mutex_lock( p_mutex );
3053 val.i_int = button_ptr.x_start; var_Set( p_sys->p_input, "x-start", val );
3054 val.i_int = button_ptr.x_end; var_Set( p_sys->p_input, "x-end", val );
3055 val.i_int = button_ptr.y_start; var_Set( p_sys->p_input, "y-start", val );
3056 val.i_int = button_ptr.y_end; var_Set( p_sys->p_input, "y-end", val );
3058 val.p_address = (void *)p_sys->palette;
3059 var_Set( p_sys->p_input, "menu-palette", val );
3061 val.b_bool = true; var_Set( p_sys->p_input, "highlight", val );
3062 vlc_mutex_unlock( p_mutex );
3065 vlc_mutex_unlock( &p_sys->lock_demuxer );
3066 vlc_mutex_lock( &p_ev->lock );
3069 else if( p_ev->b_moved )
3071 // dvdnav_mouse_select( NULL, pci, valx.i_int, valy.i_int );
3074 p_ev->b_moved = false;
3075 p_ev->b_clicked = false;
3076 vlc_mutex_unlock( &p_ev->lock );
3080 if( p_vout && !vlc_object_alive (p_vout) )
3082 var_DelCallback( p_vout, "mouse-moved", EventMouse, p_ev );
3083 var_DelCallback( p_vout, "mouse-clicked", EventMouse, p_ev );
3084 vlc_object_release( p_vout );
3088 else if( p_vout == NULL )
3090 p_vout = (vlc_object_t*) vlc_object_find( p_sys->p_input, VLC_OBJECT_VOUT,
3094 var_AddCallback( p_vout, "mouse-moved", EventMouse, p_ev );
3095 var_AddCallback( p_vout, "mouse-clicked", EventMouse, p_ev );
3099 /* Wait a bit, 10ms */
3103 /* Release callback */
3106 var_DelCallback( p_vout, "mouse-moved", EventMouse, p_ev );
3107 var_DelCallback( p_vout, "mouse-clicked", EventMouse, p_ev );
3108 vlc_object_release( p_vout );
3110 var_DelCallback( p_ev->p_libvlc, "key-action", EventKey, p_ev );
3112 vlc_mutex_destroy( &p_ev->lock );
3117 void matroska_segment_c::UnSelect( )
3121 for( i_track = 0; i_track < tracks.size(); i_track++ )
3123 if ( tracks[i_track]->p_es != NULL )
3125 // es_format_Clean( &tracks[i_track]->fmt );
3126 es_out_Del( sys.demuxer.out, tracks[i_track]->p_es );
3127 tracks[i_track]->p_es = NULL;
3134 void virtual_segment_c::PrepareChapters( )
3136 if ( linked_segments.size() == 0 )
3139 // !!! should be called only once !!!
3140 matroska_segment_c *p_segment;
3143 // copy editions from the first segment
3144 p_segment = linked_segments[0];
3145 p_editions = &p_segment->stored_editions;
3147 for ( i=1 ; i<linked_segments.size(); i++ )
3149 p_segment = linked_segments[i];
3150 // FIXME assume we have the same editions in all segments
3151 for (j=0; j<p_segment->stored_editions.size(); j++)
3153 if( j >= p_editions->size() ) /* Protect against broken files (?) */
3155 (*p_editions)[j]->Append( *p_segment->stored_editions[j] );
3160 std::string chapter_edition_c::GetMainName() const
3162 if ( sub_chapters.size() )
3164 return sub_chapters[0]->GetCodecName( true );
3169 int chapter_item_c::PublishChapters( input_title_t & title, int & i_user_chapters, int i_level )
3171 // add support for meta-elements from codec like DVD Titles
3172 if ( !b_display_seekpoint || psz_name == "" )
3174 psz_name = GetCodecName();
3175 if ( psz_name != "" )
3176 b_display_seekpoint = true;
3179 if (b_display_seekpoint)
3181 seekpoint_t *sk = vlc_seekpoint_New();
3183 sk->i_level = i_level;
3184 sk->i_time_offset = i_start_time;
3185 sk->psz_name = strdup( psz_name.c_str() );
3187 // A start time of '0' is ok. A missing ChapterTime element is ok, too, because '0' is its default value.
3188 title.i_seekpoint++;
3189 title.seekpoint = (seekpoint_t**)realloc( title.seekpoint, title.i_seekpoint * sizeof( seekpoint_t* ) );
3190 title.seekpoint[title.i_seekpoint-1] = sk;
3192 if ( b_user_display )
3196 for ( size_t i=0; i<sub_chapters.size() ; i++)
3198 sub_chapters[i]->PublishChapters( title, i_user_chapters, i_level+1 );
3201 i_seekpoint_num = i_user_chapters;
3203 return i_user_chapters;
3206 bool virtual_segment_c::UpdateCurrentToChapter( demux_t & demux )
3208 demux_sys_t & sys = *demux.p_sys;
3209 chapter_item_c *psz_curr_chapter;
3210 bool b_has_seeked = false;
3212 /* update current chapter/seekpoint */
3213 if ( p_editions->size() )
3215 /* 1st, we need to know in which chapter we are */
3216 psz_curr_chapter = (*p_editions)[i_current_edition]->FindTimecode( sys.i_pts, psz_current_chapter );
3218 /* we have moved to a new chapter */
3219 if (psz_curr_chapter != NULL && psz_current_chapter != psz_curr_chapter)
3221 if ( (*p_editions)[i_current_edition]->b_ordered )
3223 // Leave/Enter up to the link point
3224 b_has_seeked = psz_curr_chapter->EnterAndLeave( psz_current_chapter );
3225 if ( !b_has_seeked )
3227 // only physically seek if necessary
3228 if ( psz_current_chapter == NULL || (psz_current_chapter->i_end_time != psz_curr_chapter->i_start_time) )
3229 Seek( demux, sys.i_pts, 0, psz_curr_chapter, -1 );
3233 if ( !b_has_seeked )
3235 psz_current_chapter = psz_curr_chapter;
3236 if ( psz_curr_chapter->i_seekpoint_num > 0 )
3238 demux.info.i_update |= INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT;
3239 demux.info.i_title = sys.i_current_title = i_sys_title;
3240 demux.info.i_seekpoint = psz_curr_chapter->i_seekpoint_num - 1;
3246 else if (psz_curr_chapter == NULL)
3248 // out of the scope of the data described by chapters, leave the edition
3249 if ( (*p_editions)[i_current_edition]->b_ordered && psz_current_chapter != NULL )
3251 if ( !(*p_editions)[i_current_edition]->EnterAndLeave( psz_current_chapter, false ) )
3252 psz_current_chapter = NULL;
3261 chapter_item_c *virtual_segment_c::BrowseCodecPrivate( unsigned int codec_id,
3262 bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ),
3263 const void *p_cookie,
3264 size_t i_cookie_size )
3266 // FIXME don't assume it is the first edition
3267 std::vector<chapter_edition_c*>::iterator index = p_editions->begin();
3268 if ( index != p_editions->end() )
3270 chapter_item_c *p_result = (*index)->BrowseCodecPrivate( codec_id, match, p_cookie, i_cookie_size );
3271 if ( p_result != NULL )
3277 chapter_item_c *virtual_segment_c::FindChapter( int64_t i_find_uid )
3279 // FIXME don't assume it is the first edition
3280 std::vector<chapter_edition_c*>::iterator index = p_editions->begin();
3281 if ( index != p_editions->end() )
3283 chapter_item_c *p_result = (*index)->FindChapter( i_find_uid );
3284 if ( p_result != NULL )
3290 chapter_item_c *chapter_item_c::BrowseCodecPrivate( unsigned int codec_id,
3291 bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ),
3292 const void *p_cookie,
3293 size_t i_cookie_size )
3296 std::vector<chapter_codec_cmds_c*>::const_iterator index = codecs.begin();
3297 while ( index != codecs.end() )
3299 if ( match( **index ,p_cookie, i_cookie_size ) )
3305 chapter_item_c *p_result = NULL;
3306 std::vector<chapter_item_c*>::const_iterator index2 = sub_chapters.begin();
3307 while ( index2 != sub_chapters.end() )
3309 p_result = (*index2)->BrowseCodecPrivate( codec_id, match, p_cookie, i_cookie_size );
3310 if ( p_result != NULL )
3318 void chapter_item_c::Append( const chapter_item_c & chapter )
3320 // we are appending content for the same chapter UID
3322 chapter_item_c *p_chapter;
3324 for ( i=0; i<chapter.sub_chapters.size(); i++ )
3326 p_chapter = FindChapter( chapter.sub_chapters[i]->i_uid );
3327 if ( p_chapter != NULL )
3329 p_chapter->Append( *chapter.sub_chapters[i] );
3333 sub_chapters.push_back( chapter.sub_chapters[i] );
3337 i_user_start_time = min( i_user_start_time, chapter.i_user_start_time );
3338 i_user_end_time = max( i_user_end_time, chapter.i_user_end_time );
3341 chapter_item_c * chapter_item_c::FindChapter( int64_t i_find_uid )
3344 chapter_item_c *p_result = NULL;
3346 if ( i_uid == i_find_uid )
3349 for ( i=0; i<sub_chapters.size(); i++)
3351 p_result = sub_chapters[i]->FindChapter( i_find_uid );
3352 if ( p_result != NULL )
3358 std::string chapter_item_c::GetCodecName( bool f_for_title ) const
3362 std::vector<chapter_codec_cmds_c*>::const_iterator index = codecs.begin();
3363 while ( index != codecs.end() )
3365 result = (*index)->GetCodecName( f_for_title );
3374 std::string dvd_chapter_codec_c::GetCodecName( bool f_for_title ) const
3377 if ( p_private_data->GetSize() >= 3)
3379 const binary* p_data = p_private_data->GetBuffer();
3380 /* if ( p_data[0] == MATROSKA_DVD_LEVEL_TT )
3382 uint16_t i_title = (p_data[1] << 8) + p_data[2];
3384 sprintf( psz_str, " %d ---", i_title );
3385 result = N_("--- DVD Title");
3388 else */ if ( p_data[0] == MATROSKA_DVD_LEVEL_LU )
3391 sprintf( psz_str, " (%c%c) ---", p_data[1], p_data[2] );
3392 result = N_("--- DVD Menu");
3395 else if ( p_data[0] == MATROSKA_DVD_LEVEL_SS && f_for_title )
3397 if ( p_data[1] == 0x00 )
3398 result = N_("First Played");
3399 else if ( p_data[1] == 0xC0 )
3400 result = N_("Video Manager");
3401 else if ( p_data[1] == 0x80 )
3403 uint16_t i_title = (p_data[2] << 8) + p_data[3];
3405 sprintf( psz_str, " %d -----", i_title );
3406 result = N_("----- Title");
3415 int16 chapter_item_c::GetTitleNumber( ) const
3419 std::vector<chapter_codec_cmds_c*>::const_iterator index = codecs.begin();
3420 while ( index != codecs.end() )
3422 result = (*index)->GetTitleNumber( );
3431 int16 dvd_chapter_codec_c::GetTitleNumber()
3433 if ( p_private_data->GetSize() >= 3)
3435 const binary* p_data = p_private_data->GetBuffer();
3436 if ( p_data[0] == MATROSKA_DVD_LEVEL_SS )
3438 return int16( (p_data[2] << 8) + p_data[3] );
3444 static void Seek( demux_t *p_demux, mtime_t i_date, double f_percent, chapter_item_c *psz_chapter )
3446 demux_sys_t *p_sys = p_demux->p_sys;
3447 virtual_segment_c *p_vsegment = p_sys->p_current_segment;
3448 matroska_segment_c *p_segment = p_vsegment->Segment();
3449 mtime_t i_time_offset = 0;
3450 int64_t i_global_position = -1;
3454 msg_Dbg( p_demux, "seek request to %"PRId64" (%f%%)", i_date, f_percent );
3455 if( i_date < 0 && f_percent < 0 )
3457 msg_Warn( p_demux, "cannot seek nowhere !" );
3460 if( f_percent > 1.0 )
3462 msg_Warn( p_demux, "cannot seek so far !" );
3466 /* seek without index or without date */
3467 if( f_percent >= 0 && (config_GetInt( p_demux, "mkv-seek-percent" ) || !p_segment->b_cues || i_date < 0 ))
3469 if( p_sys->f_duration >= 0 && p_segment->b_cues )
3471 i_date = int64_t( f_percent * p_sys->f_duration * 1000.0 );
3475 int64_t i_pos = int64_t( f_percent * stream_Size( p_demux->s ) );
3477 msg_Dbg( p_demux, "inaccurate way of seeking for pos:%"PRId64, i_pos );
3478 for( i_index = 0; i_index < p_segment->i_index; i_index++ )
3480 if( p_segment->b_cues && p_segment->p_indexes[i_index].i_position < i_pos )
3482 if( !p_segment->b_cues && p_segment->p_indexes[i_index].i_position >= i_pos && p_segment->p_indexes[i_index].i_time > 0 )
3485 if( i_index == p_segment->i_index )
3490 i_date = p_segment->p_indexes[i_index].i_time;
3492 if( !p_segment->b_cues && ( p_segment->p_indexes[i_index].i_position < i_pos || p_segment->p_indexes[i_index].i_position - i_pos > 2000000 ))
3494 msg_Dbg( p_demux, "no cues, seek request to global pos: %"PRId64, i_pos );
3495 i_global_position = i_pos;
3500 p_vsegment->Seek( *p_demux, i_date, i_time_offset, psz_chapter, i_global_position );
3503 /*****************************************************************************
3504 * Demux: reads and demuxes data packets
3505 *****************************************************************************
3506 * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
3507 *****************************************************************************/
3508 static int Demux( demux_t *p_demux)
3510 demux_sys_t *p_sys = p_demux->p_sys;
3512 vlc_mutex_lock( &p_sys->lock_demuxer );
3514 virtual_segment_c *p_vsegment = p_sys->p_current_segment;
3515 matroska_segment_c *p_segment = p_vsegment->Segment();
3516 if ( p_segment == NULL ) return 0;
3517 int i_block_count = 0;
3522 if ( p_sys->demuxer.b_die )
3525 if( p_sys->i_pts >= p_sys->i_start_pts )
3526 if ( p_vsegment->UpdateCurrentToChapter( *p_demux ) )
3532 if ( p_vsegment->Edition() && p_vsegment->Edition()->b_ordered && p_vsegment->CurrentChapter() == NULL )
3534 /* nothing left to read in this ordered edition */
3535 if ( !p_vsegment->SelectNext() )
3537 p_segment->UnSelect( );
3539 es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
3541 /* switch to the next segment */
3542 p_segment = p_vsegment->Segment();
3543 if ( !p_segment->Select( 0 ) )
3545 msg_Err( p_demux, "Failed to select new segment" );
3552 int64_t i_block_duration = 0;
3553 int64_t i_block_ref1;
3554 int64_t i_block_ref2;
3556 #if LIBMATROSKA_VERSION >= 0x000800
3557 KaxSimpleBlock *simpleblock;
3559 if( p_segment->BlockGet( block, simpleblock, &i_block_ref1, &i_block_ref2, &i_block_duration ) )
3561 if( p_segment->BlockGet( block, &i_block_ref1, &i_block_ref2, &i_block_duration ) )
3564 if ( p_vsegment->Edition() && p_vsegment->Edition()->b_ordered )
3566 const chapter_item_c *p_chap = p_vsegment->CurrentChapter();
3567 // check if there are more chapters to read
3568 if ( p_chap != NULL )
3570 /* TODO handle successive chapters with the same user_start_time/user_end_time
3571 if ( p_chap->i_user_start_time == p_chap->i_user_start_time )
3572 p_vsegment->SelectNext();
3574 p_sys->i_pts = p_chap->i_user_end_time;
3575 p_sys->i_pts++; // trick to avoid staying on segments with no duration and no content
3584 msg_Warn( p_demux, "cannot get block EOF?" );
3585 p_segment->UnSelect( );
3587 es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
3589 /* switch to the next segment */
3590 if ( !p_vsegment->SelectNext() )
3591 // no more segments in this stream
3593 p_segment = p_vsegment->Segment();
3594 if ( !p_segment->Select( 0 ) )
3596 msg_Err( p_demux, "Failed to select new segment" );
3604 #if LIBMATROSKA_VERSION >= 0x000800
3605 if ( simpleblock != NULL )
3606 p_sys->i_pts = (p_sys->i_chapter_time + simpleblock->GlobalTimecode()) / (mtime_t) 1000;
3609 p_sys->i_pts = (p_sys->i_chapter_time + block->GlobalTimecode()) / (mtime_t) 1000;
3611 if( p_sys->i_pts >= p_sys->i_start_pts )
3613 es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_pts );
3615 if ( p_vsegment->UpdateCurrentToChapter( *p_demux ) )
3623 if ( p_vsegment->Edition() && p_vsegment->Edition()->b_ordered && p_vsegment->CurrentChapter() == NULL )
3625 /* nothing left to read in this ordered edition */
3626 if ( !p_vsegment->SelectNext() )
3631 p_segment->UnSelect( );
3633 es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
3635 /* switch to the next segment */
3636 p_segment = p_vsegment->Segment();
3637 if ( !p_segment->Select( 0 ) )
3639 msg_Err( p_demux, "Failed to select new segment" );
3647 #if LIBMATROSKA_VERSION >= 0x000800
3648 BlockDecode( p_demux, block, simpleblock, p_sys->i_pts, i_block_duration, i_block_ref1 >= 0 || i_block_ref2 > 0 );
3650 BlockDecode( p_demux, block, p_sys->i_pts, i_block_duration, i_block_ref1 >= 0 || i_block_ref2 > 0 );
3656 // TODO optimize when there is need to leave or when seeking has been called
3657 if( i_block_count > 5 )
3664 vlc_mutex_unlock( &p_sys->lock_demuxer );
3671 /*****************************************************************************
3673 *****************************************************************************/
3674 vlc_stream_io_callback::vlc_stream_io_callback( stream_t *s_, bool b_owner_ )
3681 uint32 vlc_stream_io_callback::read( void *p_buffer, size_t i_size )
3683 if( i_size <= 0 || mb_eof )
3688 return stream_Read( s, p_buffer, i_size );
3690 void vlc_stream_io_callback::setFilePointer(int64_t i_offset, seek_mode mode )
3696 case seek_beginning:
3700 i_pos = stream_Size( s ) - i_offset;
3703 i_pos= stream_Tell( s ) + i_offset;
3707 if( i_pos < 0 || i_pos >= stream_Size( s ) )
3714 if( stream_Seek( s, i_pos ) )
3720 size_t vlc_stream_io_callback::write( const void *p_buffer, size_t i_size )
3724 uint64 vlc_stream_io_callback::getFilePointer( void )
3728 return stream_Tell( s );
3730 void vlc_stream_io_callback::close( void )
3736 /*****************************************************************************
3737 * Ebml Stream parser
3738 *****************************************************************************/
3739 EbmlParser::EbmlParser( EbmlStream *es, EbmlElement *el_start, demux_t *p_demux )
3746 mi_remain_size[0] = el_start->GetSize();
3748 for( i = 1; i < 6; i++ )
3755 mb_dummy = config_GetInt( p_demux, "mkv-use-dummy" );
3758 EbmlParser::~EbmlParser( void )
3762 for( i = 1; i < mi_level; i++ )
3772 EbmlElement* EbmlParser::UnGet( uint64 i_block_pos, uint64 i_cluster_pos )
3774 if ( mi_user_level > mi_level )
3776 while ( mi_user_level != mi_level )
3778 delete m_el[mi_user_level];
3779 m_el[mi_user_level] = NULL;
3785 if ( m_el[1]->GetElementPosition() == i_cluster_pos )
3787 m_es->I_O().setFilePointer( i_block_pos, seek_beginning );
3788 return (EbmlMaster*) m_el[1];
3792 // seek to the previous Cluster
3793 m_es->I_O().setFilePointer( i_cluster_pos, seek_beginning );
3796 delete m_el[mi_level];
3797 m_el[mi_level] = NULL;
3802 void EbmlParser::Up( void )
3804 if( mi_user_level == mi_level )
3806 fprintf( stderr," arrrrrrrrrrrrrg Up cannot escape itself\n" );
3812 void EbmlParser::Down( void )
3818 void EbmlParser::Keep( void )
3823 int EbmlParser::GetLevel( void )
3825 return mi_user_level;
3828 void EbmlParser::Reset( demux_t *p_demux )
3830 while ( mi_level > 0)
3832 delete m_el[mi_level];
3833 m_el[mi_level] = NULL;
3836 mi_user_level = mi_level = 1;
3837 #if LIBEBML_VERSION >= 0x000704
3838 // a little faster and cleaner
3839 m_es->I_O().setFilePointer( static_cast<KaxSegment*>(m_el[0])->GetGlobalPosition(0) );
3841 m_es->I_O().setFilePointer( m_el[0]->GetElementPosition() + m_el[0]->ElementSize(true) - m_el[0]->GetSize() );
3843 mb_dummy = config_GetInt( p_demux, "mkv-use-dummy" );
3846 EbmlElement *EbmlParser::Get( void )
3850 if( mi_user_level != mi_level )
3856 EbmlElement *ret = m_got;
3862 if( m_el[mi_level] )
3864 m_el[mi_level]->SkipData( *m_es, m_el[mi_level]->Generic().Context );
3867 delete m_el[mi_level];
3872 m_el[mi_level] = m_es->FindNextElement( m_el[mi_level - 1]->Generic().Context, i_ulev, 0xFFFFFFFFL, mb_dummy != 0, 1 );
3873 // mi_remain_size[mi_level] = m_el[mi_level]->GetSize();
3884 delete m_el[mi_level - 1];
3885 m_got = m_el[mi_level -1] = m_el[mi_level];
3886 m_el[mi_level] = NULL;
3893 else if( m_el[mi_level] == NULL )
3895 fprintf( stderr," m_el[mi_level] == NULL\n" );
3898 return m_el[mi_level];
3901 bool EbmlParser::IsTopPresent( EbmlElement *el )
3903 for( int i = 0; i < mi_level; i++ )
3905 if( m_el[i] && m_el[i] == el )
3911 /*****************************************************************************
3913 * * LoadCues : load the cues element and update index
3915 * * LoadTags : load ... the tags element
3917 * * InformationCreate : create all information, load tags if present
3919 *****************************************************************************/
3920 void matroska_segment_c::LoadCues( KaxCues *cues )
3928 msg_Err( &sys.demuxer, "There can be only 1 Cues per section." );
3932 ep = new EbmlParser( &es, cues, &sys.demuxer );
3933 while( ( el = ep->Get() ) != NULL )
3935 if( MKV_IS_ID( el, KaxCuePoint ) )
3937 #define idx p_indexes[i_index]
3940 idx.i_block_number= -1;
3941 idx.i_position = -1;
3946 while( ( el = ep->Get() ) != NULL )
3948 if( MKV_IS_ID( el, KaxCueTime ) )
3950 KaxCueTime &ctime = *(KaxCueTime*)el;
3952 ctime.ReadData( es.I_O() );
3954 idx.i_time = uint64( ctime ) * i_timescale / (mtime_t)1000;
3956 else if( MKV_IS_ID( el, KaxCueTrackPositions ) )
3959 while( ( el = ep->Get() ) != NULL )
3961 if( MKV_IS_ID( el, KaxCueTrack ) )
3963 KaxCueTrack &ctrack = *(KaxCueTrack*)el;
3965 ctrack.ReadData( es.I_O() );
3966 idx.i_track = uint16( ctrack );
3968 else if( MKV_IS_ID( el, KaxCueClusterPosition ) )
3970 KaxCueClusterPosition &ccpos = *(KaxCueClusterPosition*)el;
3972 ccpos.ReadData( es.I_O() );
3973 idx.i_position = segment->GetGlobalPosition( uint64( ccpos ) );
3975 else if( MKV_IS_ID( el, KaxCueBlockNumber ) )
3977 KaxCueBlockNumber &cbnum = *(KaxCueBlockNumber*)el;
3979 cbnum.ReadData( es.I_O() );
3980 idx.i_block_number = uint32( cbnum );
3984 msg_Dbg( &sys.demuxer, " * Unknown (%s)", typeid(*el).name() );
3991 msg_Dbg( &sys.demuxer, " * Unknown (%s)", typeid(*el).name() );
3997 msg_Dbg( &sys.demuxer, " * added time=%"PRId64" pos=%"PRId64
3998 " track=%d bnum=%d", idx.i_time, idx.i_position,
3999 idx.i_track, idx.i_block_number );
4003 if( i_index >= i_index_max )
4005 i_index_max += 1024;
4006 p_indexes = (mkv_index_t*)realloc( p_indexes, sizeof( mkv_index_t ) * i_index_max );
4012 msg_Dbg( &sys.demuxer, " * Unknown (%s)", typeid(*el).name() );
4017 msg_Dbg( &sys.demuxer, "| - loading cues done." );
4020 void matroska_segment_c::LoadTags( KaxTags *tags )
4026 /* Master elements */
4027 ep = new EbmlParser( &es, tags, &sys.demuxer );
4029 while( ( el = ep->Get() ) != NULL )
4031 if( MKV_IS_ID( el, KaxTag ) )
4033 msg_Dbg( &sys.demuxer, "+ Tag" );
4035 while( ( el = ep->Get() ) != NULL )
4037 if( MKV_IS_ID( el, KaxTagTargets ) )
4039 msg_Dbg( &sys.demuxer, "| + Targets" );
4041 while( ( el = ep->Get() ) != NULL )
4043 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid( *el ).name() );
4047 else if( MKV_IS_ID( el, KaxTagGeneral ) )
4049 msg_Dbg( &sys.demuxer, "| + General" );
4051 while( ( el = ep->Get() ) != NULL )
4053 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid( *el ).name() );
4057 else if( MKV_IS_ID( el, KaxTagGenres ) )
4059 msg_Dbg( &sys.demuxer, "| + Genres" );
4061 while( ( el = ep->Get() ) != NULL )
4063 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid( *el ).name() );
4067 else if( MKV_IS_ID( el, KaxTagAudioSpecific ) )
4069 msg_Dbg( &sys.demuxer, "| + Audio Specific" );
4071 while( ( el = ep->Get() ) != NULL )
4073 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid( *el ).name() );
4077 else if( MKV_IS_ID( el, KaxTagImageSpecific ) )
4079 msg_Dbg( &sys.demuxer, "| + Images Specific" );
4081 while( ( el = ep->Get() ) != NULL )
4083 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid( *el ).name() );
4087 else if( MKV_IS_ID( el, KaxTagMultiComment ) )
4089 msg_Dbg( &sys.demuxer, "| + Multi Comment" );
4091 else if( MKV_IS_ID( el, KaxTagMultiCommercial ) )
4093 msg_Dbg( &sys.demuxer, "| + Multi Commercial" );
4095 else if( MKV_IS_ID( el, KaxTagMultiDate ) )
4097 msg_Dbg( &sys.demuxer, "| + Multi Date" );
4099 else if( MKV_IS_ID( el, KaxTagMultiEntity ) )
4101 msg_Dbg( &sys.demuxer, "| + Multi Entity" );
4103 else if( MKV_IS_ID( el, KaxTagMultiIdentifier ) )
4105 msg_Dbg( &sys.demuxer, "| + Multi Identifier" );
4107 else if( MKV_IS_ID( el, KaxTagMultiLegal ) )
4109 msg_Dbg( &sys.demuxer, "| + Multi Legal" );
4111 else if( MKV_IS_ID( el, KaxTagMultiTitle ) )
4113 msg_Dbg( &sys.demuxer, "| + Multi Title" );
4117 msg_Dbg( &sys.demuxer, "| + LoadTag Unknown (%s)", typeid( *el ).name() );
4124 msg_Dbg( &sys.demuxer, "+ Unknown (%s)", typeid( *el ).name() );
4129 msg_Dbg( &sys.demuxer, "loading tags done." );
4132 /*****************************************************************************
4134 *****************************************************************************/
4135 void matroska_segment_c::ParseSeekHead( KaxSeekHead *seekhead )
4140 int i_upper_level = 0;
4145 stream_Control( sys.demuxer.s, STREAM_CAN_SEEK, &b_seekable );
4149 ep = new EbmlParser( &es, seekhead, &sys.demuxer );
4151 while( ( l = ep->Get() ) != NULL )
4153 if( MKV_IS_ID( l, KaxSeek ) )
4155 EbmlId id = EbmlVoid::ClassInfos.GlobalId;
4158 msg_Dbg( &sys.demuxer, "| | + Seek" );
4160 while( ( l = ep->Get() ) != NULL )
4162 if( MKV_IS_ID( l, KaxSeekID ) )
4164 KaxSeekID &sid = *(KaxSeekID*)l;
4165 sid.ReadData( es.I_O() );
4166 id = EbmlId( sid.GetBuffer(), sid.GetSize() );
4168 else if( MKV_IS_ID( l, KaxSeekPosition ) )
4170 KaxSeekPosition &spos = *(KaxSeekPosition*)l;
4171 spos.ReadData( es.I_O() );
4172 i_pos = (int64_t)segment->GetGlobalPosition( uint64( spos ) );
4176 /* Many mkvmerge files hit this case. It seems to be a broken SeekHead */
4177 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid(*l).name() );
4184 if( id == KaxCues::ClassInfos.GlobalId )
4186 msg_Dbg( &sys.demuxer, "| - cues at %"PRId64, i_pos );
4187 LoadSeekHeadItem( KaxCues::ClassInfos, i_pos );
4189 else if( id == KaxInfo::ClassInfos.GlobalId )
4191 msg_Dbg( &sys.demuxer, "| - info at %"PRId64, i_pos );
4192 LoadSeekHeadItem( KaxInfo::ClassInfos, i_pos );
4194 else if( id == KaxChapters::ClassInfos.GlobalId )
4196 msg_Dbg( &sys.demuxer, "| - chapters at %"PRId64, i_pos );
4197 LoadSeekHeadItem( KaxChapters::ClassInfos, i_pos );
4199 else if( id == KaxTags::ClassInfos.GlobalId )
4201 msg_Dbg( &sys.demuxer, "| - tags at %"PRId64, i_pos );
4202 LoadSeekHeadItem( KaxTags::ClassInfos, i_pos );
4204 else if( id == KaxSeekHead::ClassInfos.GlobalId )
4206 msg_Dbg( &sys.demuxer, "| - chained seekhead at %"PRId64, i_pos );
4207 LoadSeekHeadItem( KaxSeekHead::ClassInfos, i_pos );
4209 else if( id == KaxTracks::ClassInfos.GlobalId )
4211 msg_Dbg( &sys.demuxer, "| - tracks at %"PRId64, i_pos );
4212 LoadSeekHeadItem( KaxTracks::ClassInfos, i_pos );
4214 else if( id == KaxAttachments::ClassInfos.GlobalId )
4216 msg_Dbg( &sys.demuxer, "| - attachments at %"PRId64, i_pos );
4217 LoadSeekHeadItem( KaxAttachments::ClassInfos, i_pos );
4220 msg_Dbg( &sys.demuxer, "| - unknown seekhead reference at %"PRId64, i_pos );
4224 msg_Dbg( &sys.demuxer, "| | + ParseSeekHead Unknown (%s)", typeid(*l).name() );
4229 /*****************************************************************************
4231 *****************************************************************************/
4232 void matroska_segment_c::ParseTrackEntry( KaxTrackEntry *m )
4235 bool bSupported = true;
4239 msg_Dbg( &sys.demuxer, "| | + Track Entry" );
4241 tk = new mkv_track_t();
4243 /* Init the track */
4244 memset( tk, 0, sizeof( mkv_track_t ) );
4246 es_format_Init( &tk->fmt, UNKNOWN_ES, 0 );
4247 tk->fmt.psz_language = strdup("English");
4248 tk->fmt.psz_description = NULL;
4250 tk->b_default = true;
4251 tk->b_enabled = true;
4252 tk->b_silent = false;
4253 tk->i_number = tracks.size() - 1;
4254 tk->i_extra_data = 0;
4255 tk->p_extra_data = NULL;
4256 tk->psz_codec = NULL;
4257 tk->i_default_duration = 0;
4258 tk->f_timecodescale = 1.0;
4260 tk->b_inited = false;
4261 tk->i_data_init = 0;
4262 tk->p_data_init = NULL;
4264 tk->psz_codec_name = NULL;
4265 tk->psz_codec_settings = NULL;
4266 tk->psz_codec_info_url = NULL;
4267 tk->psz_codec_download_url = NULL;
4269 tk->i_compression_type = MATROSKA_COMPRESSION_NONE;
4270 tk->p_compression_data = NULL;
4272 for( i = 0; i < m->ListSize(); i++ )
4274 EbmlElement *l = (*m)[i];
4276 if( MKV_IS_ID( l, KaxTrackNumber ) )
4278 KaxTrackNumber &tnum = *(KaxTrackNumber*)l;
4280 tk->i_number = uint32( tnum );
4281 msg_Dbg( &sys.demuxer, "| | | + Track Number=%u", uint32( tnum ) );
4283 else if( MKV_IS_ID( l, KaxTrackUID ) )
4285 KaxTrackUID &tuid = *(KaxTrackUID*)l;
4287 msg_Dbg( &sys.demuxer, "| | | + Track UID=%u", uint32( tuid ) );
4289 else if( MKV_IS_ID( l, KaxTrackType ) )
4291 const char *psz_type;
4292 KaxTrackType &ttype = *(KaxTrackType*)l;
4294 switch( uint8(ttype) )
4298 tk->fmt.i_cat = AUDIO_ES;
4302 tk->fmt.i_cat = VIDEO_ES;
4304 case track_subtitle:
4305 psz_type = "subtitle";
4306 tk->fmt.i_cat = SPU_ES;
4309 psz_type = "buttons";
4310 tk->fmt.i_cat = SPU_ES;
4313 psz_type = "unknown";
4314 tk->fmt.i_cat = UNKNOWN_ES;
4318 msg_Dbg( &sys.demuxer, "| | | + Track Type=%s", psz_type );
4320 // else if( EbmlId( *l ) == KaxTrackFlagEnabled::ClassInfos.GlobalId )
4322 // KaxTrackFlagEnabled &fenb = *(KaxTrackFlagEnabled*)l;
4324 // tk->b_enabled = uint32( fenb );
4325 // msg_Dbg( &sys.demuxer, "| | | + Track Enabled=%u",
4326 // uint32( fenb ) );
4328 else if( MKV_IS_ID( l, KaxTrackFlagDefault ) )
4330 KaxTrackFlagDefault &fdef = *(KaxTrackFlagDefault*)l;
4332 tk->b_default = uint32( fdef );
4333 msg_Dbg( &sys.demuxer, "| | | + Track Default=%u", uint32( fdef ) );
4335 else if( MKV_IS_ID( l, KaxTrackFlagLacing ) )
4337 KaxTrackFlagLacing &lac = *(KaxTrackFlagLacing*)l;
4339 msg_Dbg( &sys.demuxer, "| | | + Track Lacing=%d", uint32( lac ) );
4341 else if( MKV_IS_ID( l, KaxTrackMinCache ) )
4343 KaxTrackMinCache &cmin = *(KaxTrackMinCache*)l;
4345 msg_Dbg( &sys.demuxer, "| | | + Track MinCache=%d", uint32( cmin ) );
4347 else if( MKV_IS_ID( l, KaxTrackMaxCache ) )
4349 KaxTrackMaxCache &cmax = *(KaxTrackMaxCache*)l;
4351 msg_Dbg( &sys.demuxer, "| | | + Track MaxCache=%d", uint32( cmax ) );
4353 else if( MKV_IS_ID( l, KaxTrackDefaultDuration ) )
4355 KaxTrackDefaultDuration &defd = *(KaxTrackDefaultDuration*)l;
4357 tk->i_default_duration = uint64(defd);
4358 msg_Dbg( &sys.demuxer, "| | | + Track Default Duration=%"PRId64, uint64(defd) );
4360 else if( MKV_IS_ID( l, KaxTrackTimecodeScale ) )
4362 KaxTrackTimecodeScale &ttcs = *(KaxTrackTimecodeScale*)l;
4364 tk->f_timecodescale = float( ttcs );
4365 msg_Dbg( &sys.demuxer, "| | | + Track TimeCodeScale=%f", tk->f_timecodescale );
4367 else if( MKV_IS_ID( l, KaxTrackName ) )
4369 KaxTrackName &tname = *(KaxTrackName*)l;
4371 tk->fmt.psz_description = ToUTF8( UTFstring( tname ) );
4372 msg_Dbg( &sys.demuxer, "| | | + Track Name=%s", tk->fmt.psz_description );
4374 else if( MKV_IS_ID( l, KaxTrackLanguage ) )
4376 KaxTrackLanguage &lang = *(KaxTrackLanguage*)l;
4378 if ( tk->fmt.psz_language != NULL )
4379 free( tk->fmt.psz_language );
4380 tk->fmt.psz_language = strdup( string( lang ).c_str() );
4381 msg_Dbg( &sys.demuxer,
4382 "| | | + Track Language=`%s'", tk->fmt.psz_language );
4384 else if( MKV_IS_ID( l, KaxCodecID ) )
4386 KaxCodecID &codecid = *(KaxCodecID*)l;
4388 tk->psz_codec = strdup( string( codecid ).c_str() );
4389 msg_Dbg( &sys.demuxer, "| | | + Track CodecId=%s", string( codecid ).c_str() );
4391 else if( MKV_IS_ID( l, KaxCodecPrivate ) )
4393 KaxCodecPrivate &cpriv = *(KaxCodecPrivate*)l;
4395 tk->i_extra_data = cpriv.GetSize();
4396 if( tk->i_extra_data > 0 )
4398 tk->p_extra_data = (uint8_t*)malloc( tk->i_extra_data );
4399 memcpy( tk->p_extra_data, cpriv.GetBuffer(), tk->i_extra_data );
4401 msg_Dbg( &sys.demuxer, "| | | + Track CodecPrivate size=%"PRId64, cpriv.GetSize() );
4403 else if( MKV_IS_ID( l, KaxCodecName ) )
4405 KaxCodecName &cname = *(KaxCodecName*)l;
4407 tk->psz_codec_name = ToUTF8( UTFstring( cname ) );
4408 msg_Dbg( &sys.demuxer, "| | | + Track Codec Name=%s", tk->psz_codec_name );
4410 else if( MKV_IS_ID( l, KaxContentEncodings ) )
4412 EbmlMaster *cencs = static_cast<EbmlMaster*>(l);
4413 MkvTree( sys.demuxer, 3, "Content Encodings" );
4414 if ( cencs->ListSize() > 1 )
4416 msg_Err( &sys.demuxer, "Multiple Compression method not supported" );
4419 for( j = 0; j < cencs->ListSize(); j++ )
4421 EbmlElement *l2 = (*cencs)[j];
4422 if( MKV_IS_ID( l2, KaxContentEncoding ) )
4424 MkvTree( sys.demuxer, 4, "Content Encoding" );
4425 EbmlMaster *cenc = static_cast<EbmlMaster*>(l2);
4426 for( k = 0; k < cenc->ListSize(); k++ )
4428 EbmlElement *l3 = (*cenc)[k];
4429 if( MKV_IS_ID( l3, KaxContentEncodingOrder ) )
4431 KaxContentEncodingOrder &encord = *(KaxContentEncodingOrder*)l3;
4432 MkvTree( sys.demuxer, 5, "Order: %i", uint32( encord ) );
4434 else if( MKV_IS_ID( l3, KaxContentEncodingScope ) )
4436 KaxContentEncodingScope &encscope = *(KaxContentEncodingScope*)l3;
4437 MkvTree( sys.demuxer, 5, "Scope: %i", uint32( encscope ) );
4439 else if( MKV_IS_ID( l3, KaxContentEncodingType ) )
4441 KaxContentEncodingType &enctype = *(KaxContentEncodingType*)l3;
4442 MkvTree( sys.demuxer, 5, "Type: %i", uint32( enctype ) );
4444 else if( MKV_IS_ID( l3, KaxContentCompression ) )
4446 EbmlMaster *compr = static_cast<EbmlMaster*>(l3);
4447 MkvTree( sys.demuxer, 5, "Content Compression" );
4448 for( n = 0; n < compr->ListSize(); n++ )
4450 EbmlElement *l4 = (*compr)[n];
4451 if( MKV_IS_ID( l4, KaxContentCompAlgo ) )
4453 KaxContentCompAlgo &compalg = *(KaxContentCompAlgo*)l4;
4454 MkvTree( sys.demuxer, 6, "Compression Algorithm: %i", uint32(compalg) );
4455 tk->i_compression_type = uint32( compalg );
4456 if ( ( tk->i_compression_type != MATROSKA_COMPRESSION_ZLIB ) &&
4457 ( tk->i_compression_type != MATROSKA_COMPRESSION_HEADER ) )
4459 msg_Err( &sys.demuxer, "Track Compression method %d not supported", tk->i_compression_type );
4463 else if( MKV_IS_ID( l4, KaxContentCompSettings ) )
4465 tk->p_compression_data = new KaxContentCompSettings( *(KaxContentCompSettings*)l4 );
4469 MkvTree( sys.demuxer, 6, "Unknown (%s)", typeid(*l4).name() );
4475 MkvTree( sys.demuxer, 5, "Unknown (%s)", typeid(*l3).name() );
4481 MkvTree( sys.demuxer, 4, "Unknown (%s)", typeid(*l2).name() );
4485 // else if( EbmlId( *l ) == KaxCodecSettings::ClassInfos.GlobalId )
4487 // KaxCodecSettings &cset = *(KaxCodecSettings*)l;
4489 // tk->psz_codec_settings = ToUTF8( UTFstring( cset ) );
4490 // msg_Dbg( &sys.demuxer, "| | | + Track Codec Settings=%s", tk->psz_codec_settings );
4492 // else if( EbmlId( *l ) == KaxCodecInfoURL::ClassInfos.GlobalId )
4494 // KaxCodecInfoURL &ciurl = *(KaxCodecInfoURL*)l;
4496 // tk->psz_codec_info_url = strdup( string( ciurl ).c_str() );
4497 // msg_Dbg( &sys.demuxer, "| | | + Track Codec Info URL=%s", tk->psz_codec_info_url );
4499 // else if( EbmlId( *l ) == KaxCodecDownloadURL::ClassInfos.GlobalId )
4501 // KaxCodecDownloadURL &cdurl = *(KaxCodecDownloadURL*)l;
4503 // tk->psz_codec_download_url = strdup( string( cdurl ).c_str() );
4504 // msg_Dbg( &sys.demuxer, "| | | + Track Codec Info URL=%s", tk->psz_codec_download_url );
4506 // else if( EbmlId( *l ) == KaxCodecDecodeAll::ClassInfos.GlobalId )
4508 // KaxCodecDecodeAll &cdall = *(KaxCodecDecodeAll*)l;
4510 // msg_Dbg( &sys.demuxer, "| | | + Track Codec Decode All=%u <== UNUSED", uint8( cdall ) );
4512 // else if( EbmlId( *l ) == KaxTrackOverlay::ClassInfos.GlobalId )
4514 // KaxTrackOverlay &tovr = *(KaxTrackOverlay*)l;
4516 // msg_Dbg( &sys.demuxer, "| | | + Track Overlay=%u <== UNUSED", uint32( tovr ) );
4518 else if( MKV_IS_ID( l, KaxTrackVideo ) )
4520 EbmlMaster *tkv = static_cast<EbmlMaster*>(l);
4522 unsigned int i_crop_right = 0, i_crop_left = 0, i_crop_top = 0, i_crop_bottom = 0;
4523 unsigned int i_display_unit = 0, i_display_width = 0, i_display_height = 0;
4525 msg_Dbg( &sys.demuxer, "| | | + Track Video" );
4528 tk->fmt.video.i_frame_rate_base = (unsigned int)(tk->i_default_duration / 1000);
4529 tk->fmt.video.i_frame_rate = 1000000;
4531 for( j = 0; j < tkv->ListSize(); j++ )
4533 EbmlElement *l = (*tkv)[j];
4534 // if( EbmlId( *el4 ) == KaxVideoFlagInterlaced::ClassInfos.GlobalId )
4536 // KaxVideoFlagInterlaced &fint = *(KaxVideoFlagInterlaced*)el4;
4538 // msg_Dbg( &sys.demuxer, "| | | | + Track Video Interlaced=%u", uint8( fint ) );
4540 // else if( EbmlId( *el4 ) == KaxVideoStereoMode::ClassInfos.GlobalId )
4542 // KaxVideoStereoMode &stereo = *(KaxVideoStereoMode*)el4;
4544 // msg_Dbg( &sys.demuxer, "| | | | + Track Video Stereo Mode=%u", uint8( stereo ) );
4547 if( MKV_IS_ID( l, KaxVideoPixelWidth ) )
4549 KaxVideoPixelWidth &vwidth = *(KaxVideoPixelWidth*)l;
4551 tk->fmt.video.i_width += uint16( vwidth );
4552 msg_Dbg( &sys.demuxer, "| | | | + width=%d", uint16( vwidth ) );
4554 else if( MKV_IS_ID( l, KaxVideoPixelHeight ) )
4556 KaxVideoPixelWidth &vheight = *(KaxVideoPixelWidth*)l;
4558 tk->fmt.video.i_height += uint16( vheight );
4559 msg_Dbg( &sys.demuxer, "| | | | + height=%d", uint16( vheight ) );
4561 else if( MKV_IS_ID( l, KaxVideoDisplayWidth ) )
4563 KaxVideoDisplayWidth &vwidth = *(KaxVideoDisplayWidth*)l;
4565 i_display_width = uint16( vwidth );
4566 msg_Dbg( &sys.demuxer, "| | | | + display width=%d", uint16( vwidth ) );
4568 else if( MKV_IS_ID( l, KaxVideoDisplayHeight ) )
4570 KaxVideoDisplayWidth &vheight = *(KaxVideoDisplayWidth*)l;
4572 i_display_height = uint16( vheight );
4573 msg_Dbg( &sys.demuxer, "| | | | + display height=%d", uint16( vheight ) );
4575 else if( MKV_IS_ID( l, KaxVideoPixelCropBottom ) )
4577 KaxVideoPixelCropBottom &cropval = *(KaxVideoPixelCropBottom*)l;
4579 i_crop_bottom = uint16( cropval );
4580 msg_Dbg( &sys.demuxer, "| | | | + crop pixel bottom=%d", uint16( cropval ) );
4582 else if( MKV_IS_ID( l, KaxVideoPixelCropTop ) )
4584 KaxVideoPixelCropTop &cropval = *(KaxVideoPixelCropTop*)l;
4586 i_crop_top = uint16( cropval );
4587 msg_Dbg( &sys.demuxer, "| | | | + crop pixel top=%d", uint16( cropval ) );
4589 else if( MKV_IS_ID( l, KaxVideoPixelCropRight ) )
4591 KaxVideoPixelCropRight &cropval = *(KaxVideoPixelCropRight*)l;
4593 i_crop_right = uint16( cropval );
4594 msg_Dbg( &sys.demuxer, "| | | | + crop pixel right=%d", uint16( cropval ) );
4596 else if( MKV_IS_ID( l, KaxVideoPixelCropLeft ) )
4598 KaxVideoPixelCropLeft &cropval = *(KaxVideoPixelCropLeft*)l;
4600 i_crop_left = uint16( cropval );
4601 msg_Dbg( &sys.demuxer, "| | | | + crop pixel left=%d", uint16( cropval ) );
4603 else if( MKV_IS_ID( l, KaxVideoFrameRate ) )
4605 KaxVideoFrameRate &vfps = *(KaxVideoFrameRate*)l;
4607 tk->f_fps = float( vfps );
4608 msg_Dbg( &sys.demuxer, " | | | + fps=%f", float( vfps ) );
4610 else if( EbmlId( *l ) == KaxVideoDisplayUnit::ClassInfos.GlobalId )
4612 KaxVideoDisplayUnit &vdmode = *(KaxVideoDisplayUnit*)l;
4614 i_display_unit = uint8( vdmode );
4615 msg_Dbg( &sys.demuxer, "| | | | + Track Video Display Unit=%s",
4616 uint8( vdmode ) == 0 ? "pixels" : ( uint8( vdmode ) == 1 ? "centimeters": "inches" ) );
4618 // else if( EbmlId( *l ) == KaxVideoAspectRatio::ClassInfos.GlobalId )
4620 // KaxVideoAspectRatio &ratio = *(KaxVideoAspectRatio*)l;
4622 // msg_Dbg( &sys.demuxer, " | | | + Track Video Aspect Ratio Type=%u", uint8( ratio ) );
4624 // else if( EbmlId( *l ) == KaxVideoGamma::ClassInfos.GlobalId )
4626 // KaxVideoGamma &gamma = *(KaxVideoGamma*)l;
4628 // msg_Dbg( &sys.demuxer, " | | | + gamma=%f", float( gamma ) );
4632 msg_Dbg( &sys.demuxer, "| | | | + Unknown (%s)", typeid(*l).name() );
4635 if( i_display_height && i_display_width )
4636 tk->fmt.video.i_aspect = VOUT_ASPECT_FACTOR * i_display_width / i_display_height;
4637 if( i_crop_left || i_crop_right || i_crop_top || i_crop_bottom )
4639 tk->fmt.video.i_visible_width = tk->fmt.video.i_width;
4640 tk->fmt.video.i_visible_height = tk->fmt.video.i_height;
4641 tk->fmt.video.i_x_offset = i_crop_left;
4642 tk->fmt.video.i_y_offset = i_crop_top;
4643 tk->fmt.video.i_visible_width -= i_crop_left + i_crop_right;
4644 tk->fmt.video.i_visible_height -= i_crop_top + i_crop_bottom;
4646 /* FIXME: i_display_* allows you to not only set DAR, but also a zoom factor.
4647 we do not support this atm */
4649 else if( MKV_IS_ID( l, KaxTrackAudio ) )
4651 EbmlMaster *tka = static_cast<EbmlMaster*>(l);
4654 msg_Dbg( &sys.demuxer, "| | | + Track Audio" );
4656 for( j = 0; j < tka->ListSize(); j++ )
4658 EbmlElement *l = (*tka)[j];
4660 if( MKV_IS_ID( l, KaxAudioSamplingFreq ) )
4662 KaxAudioSamplingFreq &afreq = *(KaxAudioSamplingFreq*)l;
4664 tk->i_original_rate = tk->fmt.audio.i_rate = (int)float( afreq );
4665 msg_Dbg( &sys.demuxer, "| | | | + afreq=%d", tk->fmt.audio.i_rate );
4667 else if( MKV_IS_ID( l, KaxAudioOutputSamplingFreq ) )
4669 KaxAudioOutputSamplingFreq &afreq = *(KaxAudioOutputSamplingFreq*)l;
4671 tk->fmt.audio.i_rate = (int)float( afreq );
4672 msg_Dbg( &sys.demuxer, "| | | | + aoutfreq=%d", tk->fmt.audio.i_rate );
4674 else if( MKV_IS_ID( l, KaxAudioChannels ) )
4676 KaxAudioChannels &achan = *(KaxAudioChannels*)l;
4678 tk->fmt.audio.i_channels = uint8( achan );
4679 msg_Dbg( &sys.demuxer, "| | | | + achan=%u", uint8( achan ) );
4681 else if( MKV_IS_ID( l, KaxAudioBitDepth ) )
4683 KaxAudioBitDepth &abits = *(KaxAudioBitDepth*)l;
4685 tk->fmt.audio.i_bitspersample = uint8( abits );
4686 msg_Dbg( &sys.demuxer, "| | | | + abits=%u", uint8( abits ) );
4690 msg_Dbg( &sys.demuxer, "| | | | + Unknown (%s)", typeid(*l).name() );
4696 msg_Dbg( &sys.demuxer, "| | | + Unknown (%s)",
4697 typeid(*l).name() );
4703 tracks.push_back( tk );
4707 msg_Err( &sys.demuxer, "Track Entry %d not supported", tk->i_number );
4712 /*****************************************************************************
4714 *****************************************************************************/
4715 void matroska_segment_c::ParseTracks( KaxTracks *tracks )
4719 int i_upper_level = 0;
4721 /* Master elements */
4722 tracks->Read( es, tracks->Generic().Context, i_upper_level, el, true );
4724 for( i = 0; i < tracks->ListSize(); i++ )
4726 EbmlElement *l = (*tracks)[i];
4728 if( MKV_IS_ID( l, KaxTrackEntry ) )
4730 ParseTrackEntry( static_cast<KaxTrackEntry *>(l) );
4734 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid(*l).name() );
4739 /*****************************************************************************
4741 *****************************************************************************/
4742 void matroska_segment_c::ParseInfo( KaxInfo *info )
4747 int i_upper_level = 0;
4749 /* Master elements */
4750 m = static_cast<EbmlMaster *>(info);
4751 m->Read( es, info->Generic().Context, i_upper_level, el, true );
4753 for( i = 0; i < m->ListSize(); i++ )
4755 EbmlElement *l = (*m)[i];
4757 if( MKV_IS_ID( l, KaxSegmentUID ) )
4759 if ( p_segment_uid == NULL )
4760 p_segment_uid = new KaxSegmentUID(*static_cast<KaxSegmentUID*>(l));
4762 msg_Dbg( &sys.demuxer, "| | + UID=%d", *(uint32*)p_segment_uid->GetBuffer() );
4764 else if( MKV_IS_ID( l, KaxPrevUID ) )
4766 if ( p_prev_segment_uid == NULL )
4767 p_prev_segment_uid = new KaxPrevUID(*static_cast<KaxPrevUID*>(l));
4769 msg_Dbg( &sys.demuxer, "| | + PrevUID=%d", *(uint32*)p_prev_segment_uid->GetBuffer() );
4771 else if( MKV_IS_ID( l, KaxNextUID ) )
4773 if ( p_next_segment_uid == NULL )
4774 p_next_segment_uid = new KaxNextUID(*static_cast<KaxNextUID*>(l));
4776 msg_Dbg( &sys.demuxer, "| | + NextUID=%d", *(uint32*)p_next_segment_uid->GetBuffer() );
4778 else if( MKV_IS_ID( l, KaxTimecodeScale ) )
4780 KaxTimecodeScale &tcs = *(KaxTimecodeScale*)l;
4782 i_timescale = uint64(tcs);
4784 msg_Dbg( &sys.demuxer, "| | + TimecodeScale=%"PRId64,
4787 else if( MKV_IS_ID( l, KaxDuration ) )
4789 KaxDuration &dur = *(KaxDuration*)l;
4791 i_duration = mtime_t( double( dur ) );
4793 msg_Dbg( &sys.demuxer, "| | + Duration=%"PRId64,
4796 else if( MKV_IS_ID( l, KaxMuxingApp ) )
4798 KaxMuxingApp &mapp = *(KaxMuxingApp*)l;
4800 psz_muxing_application = ToUTF8( UTFstring( mapp ) );
4802 msg_Dbg( &sys.demuxer, "| | + Muxing Application=%s",
4803 psz_muxing_application );
4805 else if( MKV_IS_ID( l, KaxWritingApp ) )
4807 KaxWritingApp &wapp = *(KaxWritingApp*)l;
4809 psz_writing_application = ToUTF8( UTFstring( wapp ) );
4811 msg_Dbg( &sys.demuxer, "| | + Writing Application=%s",
4812 psz_writing_application );
4814 else if( MKV_IS_ID( l, KaxSegmentFilename ) )
4816 KaxSegmentFilename &sfn = *(KaxSegmentFilename*)l;
4818 psz_segment_filename = ToUTF8( UTFstring( sfn ) );
4820 msg_Dbg( &sys.demuxer, "| | + Segment Filename=%s",
4821 psz_segment_filename );
4823 else if( MKV_IS_ID( l, KaxTitle ) )
4825 KaxTitle &title = *(KaxTitle*)l;
4827 psz_title = ToUTF8( UTFstring( title ) );
4829 msg_Dbg( &sys.demuxer, "| | + Title=%s", psz_title );
4831 else if( MKV_IS_ID( l, KaxSegmentFamily ) )
4833 KaxSegmentFamily *uid = static_cast<KaxSegmentFamily*>(l);
4835 families.push_back( new KaxSegmentFamily(*uid) );
4837 msg_Dbg( &sys.demuxer, "| | + family=%d", *(uint32*)uid->GetBuffer() );
4839 #if defined( HAVE_GMTIME_R )
4840 else if( MKV_IS_ID( l, KaxDateUTC ) )
4842 KaxDateUTC &date = *(KaxDateUTC*)l;
4847 i_date = date.GetEpochDate();
4848 memset( buffer, 0, 256 );
4849 if( gmtime_r( &i_date, &tmres ) &&
4850 asctime_r( &tmres, buffer ) )
4852 buffer[strlen( buffer)-1]= '\0';
4853 psz_date_utc = strdup( buffer );
4854 msg_Dbg( &sys.demuxer, "| | + Date=%s", psz_date_utc );
4858 #if LIBMATROSKA_VERSION >= 0x000704
4859 else if( MKV_IS_ID( l, KaxChapterTranslate ) )
4861 KaxChapterTranslate *p_trans = static_cast<KaxChapterTranslate*>( l );
4862 chapter_translation_c *p_translate = new chapter_translation_c();
4864 p_trans->Read( es, p_trans->Generic().Context, i_upper_level, el, true );
4865 for( j = 0; j < p_trans->ListSize(); j++ )
4867 EbmlElement *l = (*p_trans)[j];
4869 if( MKV_IS_ID( l, KaxChapterTranslateEditionUID ) )
4871 p_translate->editions.push_back( uint64( *static_cast<KaxChapterTranslateEditionUID*>( l ) ) );
4873 else if( MKV_IS_ID( l, KaxChapterTranslateCodec ) )
4875 p_translate->codec_id = uint32( *static_cast<KaxChapterTranslateCodec*>( l ) );
4877 else if( MKV_IS_ID( l, KaxChapterTranslateID ) )
4879 p_translate->p_translated = new KaxChapterTranslateID( *static_cast<KaxChapterTranslateID*>( l ) );
4883 translations.push_back( p_translate );
4888 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid(*l).name() );
4892 double f_dur = double(i_duration) * double(i_timescale) / 1000000.0;
4893 i_duration = mtime_t(f_dur);
4897 /*****************************************************************************
4899 *****************************************************************************/
4900 void matroska_segment_c::ParseChapterAtom( int i_level, KaxChapterAtom *ca, chapter_item_c & chapters )
4904 msg_Dbg( &sys.demuxer, "| | | + ChapterAtom (level=%d)", i_level );
4905 for( i = 0; i < ca->ListSize(); i++ )
4907 EbmlElement *l = (*ca)[i];
4909 if( MKV_IS_ID( l, KaxChapterUID ) )
4911 chapters.i_uid = uint64_t(*(KaxChapterUID*)l);
4912 msg_Dbg( &sys.demuxer, "| | | | + ChapterUID: %lld", chapters.i_uid );
4914 else if( MKV_IS_ID( l, KaxChapterFlagHidden ) )
4916 KaxChapterFlagHidden &flag =*(KaxChapterFlagHidden*)l;
4917 chapters.b_display_seekpoint = uint8( flag ) == 0;
4919 msg_Dbg( &sys.demuxer, "| | | | + ChapterFlagHidden: %s", chapters.b_display_seekpoint ? "no":"yes" );
4921 else if( MKV_IS_ID( l, KaxChapterTimeStart ) )
4923 KaxChapterTimeStart &start =*(KaxChapterTimeStart*)l;
4924 chapters.i_start_time = uint64( start ) / INT64_C(1000);
4926 msg_Dbg( &sys.demuxer, "| | | | + ChapterTimeStart: %lld", chapters.i_start_time );
4928 else if( MKV_IS_ID( l, KaxChapterTimeEnd ) )
4930 KaxChapterTimeEnd &end =*(KaxChapterTimeEnd*)l;
4931 chapters.i_end_time = uint64( end ) / INT64_C(1000);
4933 msg_Dbg( &sys.demuxer, "| | | | + ChapterTimeEnd: %lld", chapters.i_end_time );
4935 else if( MKV_IS_ID( l, KaxChapterDisplay ) )
4937 EbmlMaster *cd = static_cast<EbmlMaster *>(l);
4939 msg_Dbg( &sys.demuxer, "| | | | + ChapterDisplay" );
4940 for( j = 0; j < cd->ListSize(); j++ )
4942 EbmlElement *l= (*cd)[j];
4944 if( MKV_IS_ID( l, KaxChapterString ) )
4948 KaxChapterString &name =*(KaxChapterString*)l;
4949 for (k = 0; k < i_level; k++)
4950 chapters.psz_name += '+';
4951 chapters.psz_name += ' ';
4952 char *psz_tmp_utf8 = ToUTF8( UTFstring( name ) );
4953 chapters.psz_name += psz_tmp_utf8;
4954 chapters.b_user_display = true;
4956 msg_Dbg( &sys.demuxer, "| | | | | + ChapterString '%s'", psz_tmp_utf8 );
4957 free( psz_tmp_utf8 );
4959 else if( MKV_IS_ID( l, KaxChapterLanguage ) )
4961 KaxChapterLanguage &lang =*(KaxChapterLanguage*)l;
4962 const char *psz = string( lang ).c_str();
4964 msg_Dbg( &sys.demuxer, "| | | | | + ChapterLanguage '%s'", psz );
4966 else if( MKV_IS_ID( l, KaxChapterCountry ) )
4968 KaxChapterCountry &ct =*(KaxChapterCountry*)l;
4969 const char *psz = string( ct ).c_str();
4971 msg_Dbg( &sys.demuxer, "| | | | | + ChapterCountry '%s'", psz );
4975 else if( MKV_IS_ID( l, KaxChapterProcess ) )
4977 msg_Dbg( &sys.demuxer, "| | | | + ChapterProcess" );
4979 KaxChapterProcess *cp = static_cast<KaxChapterProcess *>(l);
4980 chapter_codec_cmds_c *p_ccodec = NULL;
4982 for( j = 0; j < cp->ListSize(); j++ )
4984 EbmlElement *k= (*cp)[j];
4986 if( MKV_IS_ID( k, KaxChapterProcessCodecID ) )
4988 KaxChapterProcessCodecID *p_codec_id = static_cast<KaxChapterProcessCodecID*>( k );
4989 if ( uint32(*p_codec_id) == 0 )
4990 p_ccodec = new matroska_script_codec_c( sys );
4991 else if ( uint32(*p_codec_id) == 1 )
4992 p_ccodec = new dvd_chapter_codec_c( sys );
4997 if ( p_ccodec != NULL )
4999 for( j = 0; j < cp->ListSize(); j++ )
5001 EbmlElement *k= (*cp)[j];
5003 if( MKV_IS_ID( k, KaxChapterProcessPrivate ) )
5005 KaxChapterProcessPrivate * p_private = static_cast<KaxChapterProcessPrivate*>( k );
5006 p_ccodec->SetPrivate( *p_private );
5008 else if( MKV_IS_ID( k, KaxChapterProcessCommand ) )
5010 p_ccodec->AddCommand( *static_cast<KaxChapterProcessCommand*>( k ) );
5013 chapters.codecs.push_back( p_ccodec );
5016 else if( MKV_IS_ID( l, KaxChapterAtom ) )
5018 chapter_item_c *new_sub_chapter = new chapter_item_c();
5019 ParseChapterAtom( i_level+1, static_cast<KaxChapterAtom *>(l), *new_sub_chapter );
5020 new_sub_chapter->psz_parent = &chapters;
5021 chapters.sub_chapters.push_back( new_sub_chapter );
5026 /*****************************************************************************
5028 *****************************************************************************/
5029 void matroska_segment_c::ParseAttachments( KaxAttachments *attachments )
5032 int i_upper_level = 0;
5034 attachments->Read( es, attachments->Generic().Context, i_upper_level, el, true );
5036 KaxAttached *attachedFile = FindChild<KaxAttached>( *attachments );
5038 while( attachedFile && ( attachedFile->GetSize() > 0 ) )
5040 std::string psz_mime_type = GetChild<KaxMimeType>( *attachedFile );
5041 KaxFileName &file_name = GetChild<KaxFileName>( *attachedFile );
5042 KaxFileData &img_data = GetChild<KaxFileData>( *attachedFile );
5044 attachment_c *new_attachment = new attachment_c();
5046 if( new_attachment )
5048 char* tmp = ToUTF8( UTFstring( file_name ) );
5049 new_attachment->psz_file_name = tmp;
5051 new_attachment->psz_mime_type = psz_mime_type;
5052 new_attachment->i_size = img_data.GetSize();
5053 new_attachment->p_data = malloc( img_data.GetSize() );
5055 if( new_attachment->p_data )
5057 memcpy( new_attachment->p_data, img_data.GetBuffer(), img_data.GetSize() );
5058 sys.stored_attachments.push_back( new_attachment );
5062 delete new_attachment;
5066 attachedFile = &GetNextChild<KaxAttached>( *attachments, *attachedFile );
5070 /*****************************************************************************
5072 *****************************************************************************/
5073 void matroska_segment_c::ParseChapters( KaxChapters *chapters )
5077 int i_upper_level = 0;
5080 /* Master elements */
5081 chapters->Read( es, chapters->Generic().Context, i_upper_level, el, true );
5083 for( i = 0; i < chapters->ListSize(); i++ )
5085 EbmlElement *l = (*chapters)[i];
5087 if( MKV_IS_ID( l, KaxEditionEntry ) )
5089 chapter_edition_c *p_edition = new chapter_edition_c();
5091 EbmlMaster *E = static_cast<EbmlMaster *>(l );
5093 msg_Dbg( &sys.demuxer, "| | + EditionEntry" );
5094 for( j = 0; j < E->ListSize(); j++ )
5096 EbmlElement *l = (*E)[j];
5098 if( MKV_IS_ID( l, KaxChapterAtom ) )
5100 chapter_item_c *new_sub_chapter = new chapter_item_c();
5101 ParseChapterAtom( 0, static_cast<KaxChapterAtom *>(l), *new_sub_chapter );
5102 p_edition->sub_chapters.push_back( new_sub_chapter );
5104 else if( MKV_IS_ID( l, KaxEditionUID ) )
5106 p_edition->i_uid = uint64(*static_cast<KaxEditionUID *>( l ));
5108 else if( MKV_IS_ID( l, KaxEditionFlagOrdered ) )
5110 p_edition->b_ordered = config_GetInt( &sys.demuxer, "mkv-use-ordered-chapters" ) ? (uint8(*static_cast<KaxEditionFlagOrdered *>( l )) != 0) : 0;
5112 else if( MKV_IS_ID( l, KaxEditionFlagDefault ) )
5114 if (uint8(*static_cast<KaxEditionFlagDefault *>( l )) != 0)
5115 i_default_edition = stored_editions.size();
5119 msg_Dbg( &sys.demuxer, "| | | + Unknown (%s)", typeid(*l).name() );
5122 stored_editions.push_back( p_edition );
5126 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid(*l).name() );
5130 for( i = 0; i < stored_editions.size(); i++ )
5132 stored_editions[i]->RefreshChapters( );
5135 if ( stored_editions.size() != 0 && stored_editions[i_default_edition]->b_ordered )
5137 /* update the duration of the segment according to the sum of all sub chapters */
5138 i_dur = stored_editions[i_default_edition]->Duration() / INT64_C(1000);
5144 void matroska_segment_c::ParseCluster( )
5149 int i_upper_level = 0;
5151 /* Master elements */
5152 m = static_cast<EbmlMaster *>( cluster );
5153 m->Read( es, cluster->Generic().Context, i_upper_level, el, true );
5155 for( i = 0; i < m->ListSize(); i++ )
5157 EbmlElement *l = (*m)[i];
5159 if( MKV_IS_ID( l, KaxClusterTimecode ) )
5161 KaxClusterTimecode &ctc = *(KaxClusterTimecode*)l;
5163 cluster->InitTimecode( uint64( ctc ), i_timescale );
5168 i_start_time = cluster->GlobalTimecode() / 1000;
5171 /*****************************************************************************
5172 * InformationCreate:
5173 *****************************************************************************/
5174 void matroska_segment_c::InformationCreate( )
5176 sys.meta = vlc_meta_New();
5180 vlc_meta_SetTitle( sys.meta, psz_title );
5184 vlc_meta_SetDate( sys.meta, psz_date_utc );
5187 if( psz_segment_filename )
5189 fprintf( stderr, "***** WARNING: Unhandled meta - Use custom\n" );
5191 if( psz_muxing_application )
5193 fprintf( stderr, "***** WARNING: Unhandled meta - Use custom\n" );
5195 if( psz_writing_application )
5197 fprintf( stderr, "***** WARNING: Unhandled meta - Use custom\n" );
5200 for( size_t i_track = 0; i_track < tracks.size(); i_track++ )
5202 // mkv_track_t *tk = tracks[i_track];
5203 // vlc_meta_t *mtk = vlc_meta_New();
5204 fprintf( stderr, "***** WARNING: Unhandled child meta\n");
5208 if( i_tags_position >= 0 )
5212 stream_Control( sys.demuxer.s, STREAM_CAN_FASTSEEK, &b_seekable );
5222 /*****************************************************************************
5224 *****************************************************************************/
5226 void matroska_segment_c::IndexAppendCluster( KaxCluster *cluster )
5228 #define idx p_indexes[i_index]
5230 idx.i_block_number= -1;
5231 idx.i_position = cluster->GetElementPosition();
5236 if( i_index >= i_index_max )
5238 i_index_max += 1024;
5239 p_indexes = (mkv_index_t*)realloc( p_indexes, sizeof( mkv_index_t ) * i_index_max );
5244 void chapter_edition_c::RefreshChapters( )
5246 chapter_item_c::RefreshChapters( b_ordered, -1 );
5247 b_display_seekpoint = false;
5250 int64_t chapter_item_c::RefreshChapters( bool b_ordered, int64_t i_prev_user_time )
5252 int64_t i_user_time = i_prev_user_time;
5254 // first the sub-chapters, and then ourself
5255 std::vector<chapter_item_c*>::iterator index = sub_chapters.begin();
5256 while ( index != sub_chapters.end() )
5258 i_user_time = (*index)->RefreshChapters( b_ordered, i_user_time );
5264 // the ordered chapters always start at zero
5265 if ( i_prev_user_time == -1 )
5267 if ( i_user_time == -1 )
5269 i_prev_user_time = 0;
5272 i_user_start_time = i_prev_user_time;
5273 if ( i_end_time != -1 && i_user_time == i_prev_user_time )
5275 i_user_end_time = i_user_start_time - i_start_time + i_end_time;
5279 i_user_end_time = i_user_time;
5284 if ( sub_chapters.begin() != sub_chapters.end() )
5285 std::sort( sub_chapters.begin(), sub_chapters.end(), chapter_item_c::CompareTimecode );
5286 i_user_start_time = i_start_time;
5287 if ( i_end_time != -1 )
5288 i_user_end_time = i_end_time;
5289 else if ( i_user_time != -1 )
5290 i_user_end_time = i_user_time;
5292 i_user_end_time = i_user_start_time;
5295 return i_user_end_time;
5298 mtime_t chapter_edition_c::Duration() const
5300 mtime_t i_result = 0;
5302 if ( sub_chapters.size() )
5304 std::vector<chapter_item_c*>::const_iterator index = sub_chapters.end();
5306 i_result = (*index)->i_user_end_time;
5312 chapter_item_c * chapter_edition_c::FindTimecode( mtime_t i_timecode, const chapter_item_c * p_current )
5316 bool b_found_current = false;
5317 return chapter_item_c::FindTimecode( i_timecode, p_current, b_found_current );
5320 chapter_item_c *chapter_item_c::FindTimecode( mtime_t i_user_timecode, const chapter_item_c * p_current, bool & b_found )
5322 chapter_item_c *psz_result = NULL;
5324 if ( p_current == this )
5327 if ( i_user_timecode >= i_user_start_time &&
5328 ( i_user_timecode < i_user_end_time ||
5329 ( i_user_start_time == i_user_end_time && i_user_timecode == i_user_end_time )))
5331 std::vector<chapter_item_c*>::iterator index = sub_chapters.begin();
5332 while ( index != sub_chapters.end() && ((p_current == NULL && psz_result == NULL) || (p_current != NULL && (!b_found || psz_result == NULL))))
5334 psz_result = (*index)->FindTimecode( i_user_timecode, p_current, b_found );
5338 if ( psz_result == NULL )
5345 bool chapter_item_c::ParentOf( const chapter_item_c & item ) const
5347 if ( &item == this )
5350 std::vector<chapter_item_c*>::const_iterator index = sub_chapters.begin();
5351 while ( index != sub_chapters.end() )
5353 if ( (*index)->ParentOf( item ) )
5361 void demux_sys_t::PreloadFamily( const matroska_segment_c & of_segment )
5363 for (size_t i=0; i<opened_segments.size(); i++)
5365 opened_segments[i]->PreloadFamily( of_segment );
5368 bool matroska_segment_c::PreloadFamily( const matroska_segment_c & of_segment )
5373 for (size_t i=0; i<families.size(); i++)
5375 for (size_t j=0; j<of_segment.families.size(); j++)
5377 if ( *(families[i]) == *(of_segment.families[j]) )
5385 // preload all the linked segments for all preloaded segments
5386 void demux_sys_t::PreloadLinked( matroska_segment_c *p_segment )
5388 size_t i_preloaded, i, j;
5389 virtual_segment_c *p_seg;
5391 p_current_segment = VirtualFromSegments( p_segment );
5393 used_segments.push_back( p_current_segment );
5395 // create all the other virtual segments of the family
5398 for ( i=0; i< opened_segments.size(); i++ )
5400 if ( opened_segments[i]->b_preloaded && !IsUsedSegment( *opened_segments[i] ) )
5402 p_seg = VirtualFromSegments( opened_segments[i] );
5403 used_segments.push_back( p_seg );
5407 } while ( i_preloaded ); // worst case: will stop when all segments are found as family related
5409 // publish all editions of all usable segment
5410 for ( i=0; i< used_segments.size(); i++ )
5412 p_seg = used_segments[i];
5413 if ( p_seg->p_editions != NULL )
5415 std::string sz_name;
5416 input_title_t *p_title = vlc_input_title_New();
5417 p_seg->i_sys_title = i;
5420 // TODO use a name for each edition, let the TITLE deal with a codec name
5421 for ( j=0; j<p_seg->p_editions->size(); j++ )
5423 if ( p_title->psz_name == NULL )
5425 sz_name = (*p_seg->p_editions)[j]->GetMainName();
5426 if ( sz_name != "" )
5427 p_title->psz_name = strdup( sz_name.c_str() );
5430 chapter_edition_c *p_edition = (*p_seg->p_editions)[j];
5433 p_edition->PublishChapters( *p_title, i_chapters, 0 );
5436 // create a name if there is none
5437 if ( p_title->psz_name == NULL )
5439 sz_name = N_("Segment");
5441 sprintf( psz_str, " %d", (int)i );
5443 p_title->psz_name = strdup( sz_name.c_str() );
5446 titles.push_back( p_title );
5450 // TODO decide which segment should be first used (VMG for DVD)
5453 bool demux_sys_t::IsUsedSegment( matroska_segment_c &segment ) const
5455 for ( size_t i=0; i< used_segments.size(); i++ )
5457 if ( used_segments[i]->FindUID( *segment.p_segment_uid ) )
5463 virtual_segment_c *demux_sys_t::VirtualFromSegments( matroska_segment_c *p_segment ) const
5465 size_t i_preloaded, i;
5467 virtual_segment_c *p_result = new virtual_segment_c( p_segment );
5469 // fill our current virtual segment with all hard linked segments
5472 for ( i=0; i< opened_segments.size(); i++ )
5474 i_preloaded += p_result->AddSegment( opened_segments[i] );
5476 } while ( i_preloaded ); // worst case: will stop when all segments are found as linked
5480 p_result->PreloadLinked( );
5482 p_result->PrepareChapters( );
5487 bool demux_sys_t::PreparePlayback( virtual_segment_c *p_new_segment )
5489 if ( p_new_segment != NULL && p_new_segment != p_current_segment )
5491 if ( p_current_segment != NULL && p_current_segment->Segment() != NULL )
5492 p_current_segment->Segment()->UnSelect();
5494 p_current_segment = p_new_segment;
5495 i_current_title = p_new_segment->i_sys_title;
5497 if( !p_current_segment->Segment()->b_cues )
5498 msg_Warn( &p_current_segment->Segment()->sys.demuxer, "no cues/empty cues found->seek won't be precise" );
5500 f_duration = p_current_segment->Duration();
5502 /* add information */
5503 p_current_segment->Segment()->InformationCreate( );
5504 p_current_segment->Segment()->Select( 0 );
5509 void demux_sys_t::JumpTo( virtual_segment_c & vsegment, chapter_item_c * p_chapter )
5511 // if the segment is not part of the current segment, select the new one
5512 if ( &vsegment != p_current_segment )
5514 PreparePlayback( &vsegment );
5517 if ( p_chapter != NULL )
5519 if ( !p_chapter->Enter( true ) )
5521 // jump to the location in the found segment
5522 vsegment.Seek( demuxer, p_chapter->i_user_start_time, -1, p_chapter, -1 );
5528 bool matroska_segment_c::CompareSegmentUIDs( const matroska_segment_c * p_item_a, const matroska_segment_c * p_item_b )
5532 if ( p_item_a == NULL || p_item_b == NULL )
5535 p_tmp = (EbmlBinary *)p_item_a->p_segment_uid;
5536 if ( p_item_b->p_prev_segment_uid != NULL
5537 && *p_tmp == *p_item_b->p_prev_segment_uid )
5540 p_tmp = (EbmlBinary *)p_item_a->p_next_segment_uid;
5544 if ( p_item_b->p_segment_uid != NULL
5545 && *p_tmp == *p_item_b->p_segment_uid )
5548 if ( p_item_b->p_prev_segment_uid != NULL
5549 && *p_tmp == *p_item_b->p_prev_segment_uid )
5555 bool matroska_segment_c::Preload( )
5560 EbmlElement *el = NULL;
5562 ep->Reset( &sys.demuxer );
5564 while( ( el = ep->Get() ) != NULL )
5566 if( MKV_IS_ID( el, KaxSeekHead ) )
5568 /* Multiple allowed */
5569 /* We bail at 10, to prevent possible recursion */
5570 msg_Dbg( &sys.demuxer, "| + Seek head" );
5571 if( i_seekhead_count < 10 )
5573 i_seekhead_position = (int64_t) es.I_O().getFilePointer();
5574 ParseSeekHead( static_cast<KaxSeekHead*>( el ) );
5577 else if( MKV_IS_ID( el, KaxInfo ) )
5579 /* Multiple allowed, mandatory */
5580 msg_Dbg( &sys.demuxer, "| + Information" );
5581 if( i_info_position < 0 ) // FIXME
5582 ParseInfo( static_cast<KaxInfo*>( el ) );
5583 i_info_position = (int64_t) es.I_O().getFilePointer();
5585 else if( MKV_IS_ID( el, KaxTracks ) )
5587 /* Multiple allowed */
5588 msg_Dbg( &sys.demuxer, "| + Tracks" );
5589 if( i_tracks_position < 0 ) // FIXME
5590 ParseTracks( static_cast<KaxTracks*>( el ) );
5591 if ( tracks.size() == 0 )
5593 msg_Err( &sys.demuxer, "No tracks supported" );
5596 i_tracks_position = (int64_t) es.I_O().getFilePointer();
5598 else if( MKV_IS_ID( el, KaxCues ) )
5600 msg_Dbg( &sys.demuxer, "| + Cues" );
5601 if( i_cues_position < 0 )
5602 LoadCues( static_cast<KaxCues*>( el ) );
5603 i_cues_position = (int64_t) es.I_O().getFilePointer();
5605 else if( MKV_IS_ID( el, KaxCluster ) )
5607 msg_Dbg( &sys.demuxer, "| + Cluster" );
5609 cluster = (KaxCluster*)el;
5611 i_cluster_pos = i_start_pos = cluster->GetElementPosition();
5615 /* stop pre-parsing the stream */
5618 else if( MKV_IS_ID( el, KaxAttachments ) )
5620 msg_Dbg( &sys.demuxer, "| + Attachments" );
5621 if( i_attachments_position < 0 )
5622 ParseAttachments( static_cast<KaxAttachments*>( el ) );
5623 i_attachments_position = (int64_t) es.I_O().getFilePointer();
5625 else if( MKV_IS_ID( el, KaxChapters ) )
5627 msg_Dbg( &sys.demuxer, "| + Chapters" );
5628 if( i_chapters_position < 0 )
5629 ParseChapters( static_cast<KaxChapters*>( el ) );
5630 i_chapters_position = (int64_t) es.I_O().getFilePointer();
5632 else if( MKV_IS_ID( el, KaxTag ) )
5634 msg_Dbg( &sys.demuxer, "| + Tags" );
5635 if( i_tags_position < 0) // FIXME
5636 ;//LoadTags( static_cast<KaxTags*>( el ) );
5637 i_tags_position = (int64_t) es.I_O().getFilePointer();
5640 msg_Dbg( &sys.demuxer, "| + Preload Unknown (%s)", typeid(*el).name() );
5648 /* Here we try to load elements that were found in Seek Heads, but not yet parsed */
5649 bool matroska_segment_c::LoadSeekHeadItem( const EbmlCallbacks & ClassInfos, int64_t i_element_position )
5651 int64_t i_sav_position = (int64_t)es.I_O().getFilePointer();
5654 es.I_O().setFilePointer( i_element_position, seek_beginning );
5655 el = es.FindNextID( ClassInfos, 0xFFFFFFFFL);
5659 msg_Err( &sys.demuxer, "cannot load some cues/chapters/tags etc. (broken seekhead or file)" );
5660 es.I_O().setFilePointer( i_sav_position, seek_beginning );
5664 if( MKV_IS_ID( el, KaxSeekHead ) )
5666 /* Multiple allowed */
5667 msg_Dbg( &sys.demuxer, "| + Seek head" );
5668 if( i_seekhead_count < 10 )
5670 i_seekhead_position = i_element_position;
5671 ParseSeekHead( static_cast<KaxSeekHead*>( el ) );
5674 else if( MKV_IS_ID( el, KaxInfo ) ) // FIXME
5676 /* Multiple allowed, mandatory */
5677 msg_Dbg( &sys.demuxer, "| + Information" );
5678 if( i_info_position < 0 )
5679 ParseInfo( static_cast<KaxInfo*>( el ) );
5680 i_info_position = i_element_position;
5682 else if( MKV_IS_ID( el, KaxTracks ) ) // FIXME
5684 /* Multiple allowed */
5685 msg_Dbg( &sys.demuxer, "| + Tracks" );
5686 if( i_tracks_position < 0 )
5687 ParseTracks( static_cast<KaxTracks*>( el ) );
5688 if ( tracks.size() == 0 )
5690 msg_Err( &sys.demuxer, "No tracks supported" );
5692 es.I_O().setFilePointer( i_sav_position, seek_beginning );
5695 i_tracks_position = i_element_position;
5697 else if( MKV_IS_ID( el, KaxCues ) )
5699 msg_Dbg( &sys.demuxer, "| + Cues" );
5700 if( i_cues_position < 0 )
5701 LoadCues( static_cast<KaxCues*>( el ) );
5702 i_cues_position = i_element_position;
5704 else if( MKV_IS_ID( el, KaxAttachments ) )
5706 msg_Dbg( &sys.demuxer, "| + Attachments" );
5707 if( i_attachments_position < 0 )
5708 ParseAttachments( static_cast<KaxAttachments*>( el ) );
5709 i_attachments_position = i_element_position;
5711 else if( MKV_IS_ID( el, KaxChapters ) )
5713 msg_Dbg( &sys.demuxer, "| + Chapters" );
5714 if( i_chapters_position < 0 )
5715 ParseChapters( static_cast<KaxChapters*>( el ) );
5716 i_chapters_position = i_element_position;
5718 else if( MKV_IS_ID( el, KaxTag ) ) // FIXME
5720 msg_Dbg( &sys.demuxer, "| + Tags" );
5721 if( i_tags_position < 0 )
5722 ;//LoadTags( static_cast<KaxTags*>( el ) );
5723 i_tags_position = i_element_position;
5727 msg_Dbg( &sys.demuxer, "| + LoadSeekHeadItem Unknown (%s)", typeid(*el).name() );
5731 es.I_O().setFilePointer( i_sav_position, seek_beginning );
5735 matroska_segment_c *demux_sys_t::FindSegment( const EbmlBinary & uid ) const
5737 for (size_t i=0; i<opened_segments.size(); i++)
5739 if ( *opened_segments[i]->p_segment_uid == uid )
5740 return opened_segments[i];
5745 chapter_item_c *demux_sys_t::BrowseCodecPrivate( unsigned int codec_id,
5746 bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ),
5747 const void *p_cookie,
5748 size_t i_cookie_size,
5749 virtual_segment_c * &p_segment_found )
5751 chapter_item_c *p_result = NULL;
5752 for (size_t i=0; i<used_segments.size(); i++)
5754 p_result = used_segments[i]->BrowseCodecPrivate( codec_id, match, p_cookie, i_cookie_size );
5755 if ( p_result != NULL )
5757 p_segment_found = used_segments[i];
5764 chapter_item_c *demux_sys_t::FindChapter( int64_t i_find_uid, virtual_segment_c * & p_segment_found )
5766 chapter_item_c *p_result = NULL;
5767 for (size_t i=0; i<used_segments.size(); i++)
5769 p_result = used_segments[i]->FindChapter( i_find_uid );
5770 if ( p_result != NULL )
5772 p_segment_found = used_segments[i];
5779 void virtual_segment_c::Sort()
5781 // keep the current segment index
5782 matroska_segment_c *p_segment = linked_segments[i_current_segment];
5784 std::sort( linked_segments.begin(), linked_segments.end(), matroska_segment_c::CompareSegmentUIDs );
5786 for ( i_current_segment=0; i_current_segment<linked_segments.size(); i_current_segment++)
5787 if ( linked_segments[i_current_segment] == p_segment )
5791 size_t virtual_segment_c::AddSegment( matroska_segment_c *p_segment )
5794 // check if it's not already in here
5795 for ( i=0; i<linked_segments.size(); i++ )
5797 if ( linked_segments[i]->p_segment_uid != NULL
5798 && p_segment->p_segment_uid != NULL
5799 && *p_segment->p_segment_uid == *linked_segments[i]->p_segment_uid )
5803 // find possible mates
5804 for ( i=0; i<linked_uids.size(); i++ )
5806 if ( (p_segment->p_segment_uid != NULL && *p_segment->p_segment_uid == linked_uids[i])
5807 || (p_segment->p_prev_segment_uid != NULL && *p_segment->p_prev_segment_uid == linked_uids[i])
5808 || (p_segment->p_next_segment_uid !=NULL && *p_segment->p_next_segment_uid == linked_uids[i]) )
5810 linked_segments.push_back( p_segment );
5812 AppendUID( p_segment->p_prev_segment_uid );
5813 AppendUID( p_segment->p_next_segment_uid );
5821 void virtual_segment_c::PreloadLinked( )
5823 for ( size_t i=0; i<linked_segments.size(); i++ )
5825 linked_segments[i]->Preload( );
5827 i_current_edition = linked_segments[0]->i_default_edition;
5830 mtime_t virtual_segment_c::Duration() const
5833 if ( linked_segments.size() == 0 )
5836 matroska_segment_c *p_last_segment = linked_segments[linked_segments.size()-1];
5837 // p_last_segment->ParseCluster( );
5839 i_duration = p_last_segment->i_start_time / 1000 + p_last_segment->i_duration;
5844 void virtual_segment_c::AppendUID( const EbmlBinary * p_UID )
5846 if ( p_UID == NULL )
5848 if ( p_UID->GetBuffer() == NULL )
5851 for (size_t i=0; i<linked_uids.size(); i++)
5853 if ( *p_UID == linked_uids[i] )
5856 linked_uids.push_back( *(KaxSegmentUID*)(p_UID) );
5859 void matroska_segment_c::Seek( mtime_t i_date, mtime_t i_time_offset, int64_t i_global_position )
5862 #if LIBMATROSKA_VERSION >= 0x000800
5863 KaxSimpleBlock *simpleblock;
5865 int i_track_skipping;
5866 int64_t i_block_duration;
5867 int64_t i_block_ref1;
5868 int64_t i_block_ref2;
5870 int64_t i_seek_position = i_start_pos;
5871 int64_t i_seek_time = i_start_time;
5873 if( i_global_position >= 0 )
5875 /* Special case for seeking in files with no cues */
5876 EbmlElement *el = NULL;
5877 es.I_O().setFilePointer( i_start_pos, seek_beginning );
5879 ep = new EbmlParser( &es, segment, &sys.demuxer );
5882 while( ( el = ep->Get() ) != NULL )
5884 if( MKV_IS_ID( el, KaxCluster ) )
5886 cluster = (KaxCluster *)el;
5887 i_cluster_pos = cluster->GetElementPosition();
5889 ( i_index > 0 && p_indexes[i_index - 1].i_position < (int64_t)cluster->GetElementPosition() ) )
5891 IndexAppendCluster( cluster );
5893 if( es.I_O().getFilePointer() >= i_global_position )
5896 msg_Dbg( &sys.demuxer, "we found a cluster that is in the neighbourhood" );
5897 es_out_Control( sys.demuxer.out, ES_OUT_RESET_PCR );
5902 msg_Err( &sys.demuxer, "This file has no cues, and we were unable to seek to the requested position by parsing." );
5910 for( ; i_idx < i_index; i_idx++ )
5912 if( p_indexes[i_idx].i_time + i_time_offset > i_date )
5923 i_seek_position = p_indexes[i_idx].i_position;
5924 i_seek_time = p_indexes[i_idx].i_time;
5927 msg_Dbg( &sys.demuxer, "seek got %"PRId64" (%d%%)",
5928 i_seek_time, (int)( 100 * i_seek_position / stream_Size( sys.demuxer.s ) ) );
5930 es.I_O().setFilePointer( i_seek_position, seek_beginning );
5933 ep = new EbmlParser( &es, segment, &sys.demuxer );
5936 sys.i_start_pts = i_date;
5938 es_out_Control( sys.demuxer.out, ES_OUT_RESET_PCR );
5940 /* now parse until key frame */
5941 i_track_skipping = 0;
5942 for( i_track = 0; i_track < tracks.size(); i_track++ )
5944 if( tracks[i_track]->fmt.i_cat == VIDEO_ES )
5946 tracks[i_track]->b_search_keyframe = true;
5949 es_out_Control( sys.demuxer.out, ES_OUT_SET_NEXT_DISPLAY_TIME, tracks[i_track]->p_es, i_date );
5952 while( i_track_skipping > 0 )
5954 #if LIBMATROSKA_VERSION >= 0x000800
5955 if( BlockGet( block, simpleblock, &i_block_ref1, &i_block_ref2, &i_block_duration ) )
5957 if( BlockGet( block, &i_block_ref1, &i_block_ref2, &i_block_duration ) )
5960 msg_Warn( &sys.demuxer, "cannot get block EOF?" );
5966 for( i_track = 0; i_track < tracks.size(); i_track++ )
5968 #if LIBMATROSKA_VERSION >= 0x000800
5969 if( (simpleblock && tracks[i_track]->i_number == simpleblock->TrackNum()) ||
5970 (block && tracks[i_track]->i_number == block->TrackNum()) )
5972 if( tracks[i_track]->i_number == block->TrackNum() )
5979 #if LIBMATROSKA_VERSION >= 0x000800
5981 sys.i_pts = (sys.i_chapter_time + simpleblock->GlobalTimecode()) / (mtime_t) 1000;
5984 sys.i_pts = (sys.i_chapter_time + block->GlobalTimecode()) / (mtime_t) 1000;
5986 if( i_track < tracks.size() )
5988 if( sys.i_pts >= sys.i_start_pts )
5990 cluster = static_cast<KaxCluster*>(ep->UnGet( i_block_pos, i_cluster_pos ));
5991 i_track_skipping = 0;
5993 else if( tracks[i_track]->fmt.i_cat == VIDEO_ES )
5995 if( i_block_ref1 == 0 && tracks[i_track]->b_search_keyframe )
5997 tracks[i_track]->b_search_keyframe = false;
6000 if( !tracks[i_track]->b_search_keyframe )
6003 //es_out_Control( sys.demuxer.out, ES_OUT_SET_PCR, sys.i_pts );
6004 #if LIBMATROSKA_VERSION >= 0x000800
6005 BlockDecode( &sys.demuxer, block, simpleblock, sys.i_pts, 0, i_block_ref1 >= 0 || i_block_ref2 > 0 );
6007 BlockDecode( &sys.demuxer, block, sys.i_pts, 0, i_block_ref1 >= 0 || i_block_ref2 > 0 );
6016 /* FIXME current ES_OUT_SET_NEXT_DISPLAY_TIME does not work that well if
6017 * the delay is too high. */
6018 if( sys.i_pts + 500*1000 < sys.i_start_pts )
6020 sys.i_start_pts = sys.i_pts;
6022 for( i_track = 0; i_track < tracks.size(); i_track++ )
6023 es_out_Control( sys.demuxer.out, ES_OUT_SET_NEXT_DISPLAY_TIME, tracks[i_track]->p_es, sys.i_start_pts );
6027 void virtual_segment_c::Seek( demux_t & demuxer, mtime_t i_date, mtime_t i_time_offset, chapter_item_c *psz_chapter, int64_t i_global_position )
6029 demux_sys_t *p_sys = demuxer.p_sys;
6032 // find the actual time for an ordered edition
6033 if ( psz_chapter == NULL )
6035 if ( Edition() && Edition()->b_ordered )
6037 /* 1st, we need to know in which chapter we are */
6038 psz_chapter = (*p_editions)[i_current_edition]->FindTimecode( i_date, psz_current_chapter );
6042 if ( psz_chapter != NULL )
6044 psz_current_chapter = psz_chapter;
6045 p_sys->i_chapter_time = i_time_offset = psz_chapter->i_user_start_time - psz_chapter->i_start_time;
6046 if ( psz_chapter->i_seekpoint_num > 0 )
6048 demuxer.info.i_update |= INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT;
6049 demuxer.info.i_title = p_sys->i_current_title = i_sys_title;
6050 demuxer.info.i_seekpoint = psz_chapter->i_seekpoint_num - 1;
6054 // find the best matching segment
6055 for ( i=0; i<linked_segments.size(); i++ )
6057 if ( i_date < linked_segments[i]->i_start_time )
6064 if ( i_current_segment != i )
6066 linked_segments[i_current_segment]->UnSelect();
6067 linked_segments[i]->Select( i_date );
6068 i_current_segment = i;
6071 linked_segments[i]->Seek( i_date, i_time_offset, i_global_position );
6074 void chapter_codec_cmds_c::AddCommand( const KaxChapterProcessCommand & command )
6078 uint32 codec_time = uint32(-1);
6079 for( i = 0; i < command.ListSize(); i++ )
6081 const EbmlElement *k = command[i];
6083 if( MKV_IS_ID( k, KaxChapterProcessTime ) )
6085 codec_time = uint32( *static_cast<const KaxChapterProcessTime*>( k ) );
6090 for( i = 0; i < command.ListSize(); i++ )
6092 const EbmlElement *k = command[i];
6094 if( MKV_IS_ID( k, KaxChapterProcessData ) )
6096 KaxChapterProcessData *p_data = new KaxChapterProcessData( *static_cast<const KaxChapterProcessData*>( k ) );
6097 switch ( codec_time )
6100 during_cmds.push_back( p_data );
6103 enter_cmds.push_back( p_data );
6106 leave_cmds.push_back( p_data );
6115 bool chapter_item_c::Enter( bool b_do_subs )
6117 bool f_result = false;
6118 std::vector<chapter_codec_cmds_c*>::iterator index = codecs.begin();
6119 while ( index != codecs.end() )
6121 f_result |= (*index)->Enter();
6128 std::vector<chapter_item_c*>::iterator index_ = sub_chapters.begin();
6129 while ( index_ != sub_chapters.end() )
6131 f_result |= (*index_)->Enter( true );
6138 bool chapter_item_c::Leave( bool b_do_subs )
6140 bool f_result = false;
6141 b_is_leaving = true;
6142 std::vector<chapter_codec_cmds_c*>::iterator index = codecs.begin();
6143 while ( index != codecs.end() )
6145 f_result |= (*index)->Leave();
6152 std::vector<chapter_item_c*>::iterator index_ = sub_chapters.begin();
6153 while ( index_ != sub_chapters.end() )
6155 f_result |= (*index_)->Leave( true );
6159 b_is_leaving = false;
6163 bool chapter_item_c::EnterAndLeave( chapter_item_c *p_item, bool b_final_enter )
6165 chapter_item_c *p_common_parent = p_item;
6167 // leave, up to a common parent
6168 while ( p_common_parent != NULL && !p_common_parent->ParentOf( *this ) )
6170 if ( !p_common_parent->b_is_leaving && p_common_parent->Leave( false ) )
6172 p_common_parent = p_common_parent->psz_parent;
6175 // enter from the parent to <this>
6176 if ( p_common_parent != NULL )
6180 if ( p_common_parent == this )
6181 return Enter( true );
6183 for ( size_t i = 0; i<p_common_parent->sub_chapters.size(); i++ )
6185 if ( p_common_parent->sub_chapters[i]->ParentOf( *this ) )
6187 p_common_parent = p_common_parent->sub_chapters[i];
6188 if ( p_common_parent != this )
6189 if ( p_common_parent->Enter( false ) )
6198 if ( b_final_enter )
6199 return Enter( true );
6204 bool dvd_chapter_codec_c::Enter()
6206 bool f_result = false;
6207 std::vector<KaxChapterProcessData*>::iterator index = enter_cmds.begin();
6208 while ( index != enter_cmds.end() )
6210 if ( (*index)->GetSize() )
6212 binary *p_data = (*index)->GetBuffer();
6213 size_t i_size = *p_data++;
6214 // avoid reading too much from the buffer
6215 i_size = __MIN( i_size, ((*index)->GetSize() - 1) >> 3 );
6216 for ( ; i_size > 0; i_size--, p_data += 8 )
6218 msg_Dbg( &sys.demuxer, "Matroska DVD enter command" );
6219 f_result |= sys.dvd_interpretor.Interpret( p_data );
6227 bool dvd_chapter_codec_c::Leave()
6229 bool f_result = false;
6230 std::vector<KaxChapterProcessData*>::iterator index = leave_cmds.begin();
6231 while ( index != leave_cmds.end() )
6233 if ( (*index)->GetSize() )
6235 binary *p_data = (*index)->GetBuffer();
6236 size_t i_size = *p_data++;
6237 // avoid reading too much from the buffer
6238 i_size = __MIN( i_size, ((*index)->GetSize() - 1) >> 3 );
6239 for ( ; i_size > 0; i_size--, p_data += 8 )
6241 msg_Dbg( &sys.demuxer, "Matroska DVD leave command" );
6242 f_result |= sys.dvd_interpretor.Interpret( p_data );
6250 // see http://www.dvd-replica.com/DVD/vmcmdset.php for a description of DVD commands
6251 bool dvd_command_interpretor_c::Interpret( const binary * p_command, size_t i_size )
6256 virtual_segment_c *p_segment = NULL;
6257 chapter_item_c *p_chapter = NULL;
6258 bool f_result = false;
6259 uint16 i_command = ( p_command[0] << 8 ) + p_command[1];
6261 // handle register tests if there are some
6262 if ( (i_command & 0xF0) != 0 )
6264 bool b_test_positive = true;//(i_command & CMD_DVD_IF_NOT) == 0;
6265 bool b_test_value = (i_command & CMD_DVD_TEST_VALUE) != 0;
6266 uint8 i_test = i_command & 0x70;
6269 // see http://dvd.sourceforge.net/dvdinfo/vmi.html
6272 switch ( i_command >> 12 )
6275 i_cr1 = p_command[3];
6276 i_cr2 = (p_command[4] << 8) + p_command[5];
6281 i_cr1 = p_command[6];
6282 i_cr2 = p_command[7];
6283 b_test_value = false;
6287 if ( ((p_command[1] >> 4) & 0x7) == 0)
6289 i_cr1 = p_command[2];
6290 i_cr2 = (p_command[6] << 8) + p_command[7];
6294 i_cr1 = p_command[2];
6295 i_cr2 = (p_command[6] << 8) + p_command[7];
6303 i_value = GetPRM( i_cr2 );
6307 case CMD_DVD_IF_GPREG_EQUAL:
6309 msg_Dbg( &sys.demuxer, "IF %s EQUALS %s", GetRegTypeName( false, i_cr1 ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
6310 if (!( GetPRM( i_cr1 ) == i_value ))
6312 b_test_positive = false;
6315 case CMD_DVD_IF_GPREG_NOT_EQUAL:
6317 msg_Dbg( &sys.demuxer, "IF %s NOT EQUALS %s", GetRegTypeName( false, i_cr1 ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
6318 if (!( GetPRM( i_cr1 ) != i_value ))
6320 b_test_positive = false;
6323 case CMD_DVD_IF_GPREG_INF:
6325 msg_Dbg( &sys.demuxer, "IF %s < %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
6326 if (!( GetPRM( i_cr1 ) < i_value ))
6328 b_test_positive = false;
6331 case CMD_DVD_IF_GPREG_INF_EQUAL:
6332 // if inferior or equal
6333 msg_Dbg( &sys.demuxer, "IF %s < %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
6334 if (!( GetPRM( i_cr1 ) <= i_value ))
6336 b_test_positive = false;
6339 case CMD_DVD_IF_GPREG_AND:
6341 msg_Dbg( &sys.demuxer, "IF %s & %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
6342 if (!( GetPRM( i_cr1 ) & i_value ))
6344 b_test_positive = false;
6347 case CMD_DVD_IF_GPREG_SUP:
6349 msg_Dbg( &sys.demuxer, "IF %s >= %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
6350 if (!( GetPRM( i_cr1 ) > i_value ))
6352 b_test_positive = false;
6355 case CMD_DVD_IF_GPREG_SUP_EQUAL:
6356 // if superior or equal
6357 msg_Dbg( &sys.demuxer, "IF %s >= %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
6358 if (!( GetPRM( i_cr1 ) >= i_value ))
6360 b_test_positive = false;
6365 if ( !b_test_positive )
6369 // strip the test command
6370 i_command &= 0xFF0F;
6372 switch ( i_command )
6377 msg_Dbg( &sys.demuxer, "NOP" );
6382 msg_Dbg( &sys.demuxer, "Break" );
6386 case CMD_DVD_JUMP_TT:
6388 uint8 i_title = p_command[5];
6389 msg_Dbg( &sys.demuxer, "JumpTT %d", i_title );
6391 // find in the ChapProcessPrivate matching this Title level
6392 p_chapter = sys.BrowseCodecPrivate( 1, MatchTitleNumber, &i_title, sizeof(i_title), p_segment );
6393 if ( p_segment != NULL )
6395 sys.JumpTo( *p_segment, p_chapter );
6401 case CMD_DVD_CALLSS_VTSM1:
6403 msg_Dbg( &sys.demuxer, "CallSS" );
6405 switch( (p_command[6] & 0xC0) >> 6 ) {
6407 p_type = p_command[5] & 0x0F;
6411 msg_Dbg( &sys.demuxer, "CallSS PGC (rsm_cell %x)", p_command[4]);
6414 msg_Dbg( &sys.demuxer, "CallSS Title Entry (rsm_cell %x)", p_command[4]);
6417 msg_Dbg( &sys.demuxer, "CallSS Root Menu (rsm_cell %x)", p_command[4]);
6420 msg_Dbg( &sys.demuxer, "CallSS Subpicture Menu (rsm_cell %x)", p_command[4]);
6423 msg_Dbg( &sys.demuxer, "CallSS Audio Menu (rsm_cell %x)", p_command[4]);
6426 msg_Dbg( &sys.demuxer, "CallSS Angle Menu (rsm_cell %x)", p_command[4]);
6429 msg_Dbg( &sys.demuxer, "CallSS Chapter Menu (rsm_cell %x)", p_command[4]);
6432 msg_Dbg( &sys.demuxer, "CallSS <unknown> (rsm_cell %x)", p_command[4]);
6435 p_chapter = sys.BrowseCodecPrivate( 1, MatchPgcType, &p_type, 1, p_segment );
6436 if ( p_segment != NULL )
6438 sys.JumpTo( *p_segment, p_chapter );
6443 msg_Dbg( &sys.demuxer, "CallSS VMGM (menu %d, rsm_cell %x)", p_command[5] & 0x0F, p_command[4]);
6446 msg_Dbg( &sys.demuxer, "CallSS VTSM (menu %d, rsm_cell %x)", p_command[5] & 0x0F, p_command[4]);
6449 msg_Dbg( &sys.demuxer, "CallSS VMGM (pgc %d, rsm_cell %x)", (p_command[2] << 8) + p_command[3], p_command[4]);
6454 case CMD_DVD_JUMP_SS:
6456 msg_Dbg( &sys.demuxer, "JumpSS");
6458 switch( (p_command[5] & 0xC0) >> 6 ) {
6460 msg_Dbg( &sys.demuxer, "JumpSS FP");
6463 p_type = p_command[5] & 0x0F;
6467 msg_Dbg( &sys.demuxer, "JumpSS VMGM Title Entry");
6470 msg_Dbg( &sys.demuxer, "JumpSS VMGM Root Menu");
6473 msg_Dbg( &sys.demuxer, "JumpSS VMGM Subpicture Menu");
6476 msg_Dbg( &sys.demuxer, "JumpSS VMGM Audio Menu");
6479 msg_Dbg( &sys.demuxer, "JumpSS VMGM Angle Menu");
6482 msg_Dbg( &sys.demuxer, "JumpSS VMGM Chapter Menu");
6485 msg_Dbg( &sys.demuxer, "JumpSS <unknown>");
6489 p_chapter = sys.BrowseCodecPrivate( 1, MatchIsVMG, NULL, 0, p_segment );
6490 if ( p_segment != NULL )
6492 p_chapter = p_segment->BrowseCodecPrivate( 1, MatchPgcType, &p_type, 1 );
6493 if ( p_chapter != NULL )
6495 sys.JumpTo( *p_segment, p_chapter );
6501 p_type = p_command[5] & 0x0F;
6505 msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Title Entry", p_command[4], p_command[3]);
6508 msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Root Menu", p_command[4], p_command[3]);
6511 msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Subpicture Menu", p_command[4], p_command[3]);
6514 msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Audio Menu", p_command[4], p_command[3]);
6517 msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Angle Menu", p_command[4], p_command[3]);
6520 msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Chapter Menu", p_command[4], p_command[3]);
6523 msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) <unknown>", p_command[4], p_command[3]);
6527 p_chapter = sys.BrowseCodecPrivate( 1, MatchVTSMNumber, &p_command[4], 1, p_segment );
6529 if ( p_segment != NULL && p_chapter != NULL )
6531 // find the title in the VTS
6532 p_chapter = p_chapter->BrowseCodecPrivate( 1, MatchTitleNumber, &p_command[3], 1 );
6533 if ( p_chapter != NULL )
6535 // find the specified menu in the VTSM
6536 p_chapter = p_segment->BrowseCodecPrivate( 1, MatchPgcType, &p_type, 1 );
6537 if ( p_chapter != NULL )
6539 sys.JumpTo( *p_segment, p_chapter );
6544 msg_Dbg( &sys.demuxer, "Title (%d) does not exist in this VTS", p_command[3] );
6547 msg_Dbg( &sys.demuxer, "DVD Domain VTS (%d) not found", p_command[4] );
6550 msg_Dbg( &sys.demuxer, "JumpSS VMGM (pgc %d)", (p_command[2] << 8) + p_command[3]);
6555 case CMD_DVD_JUMPVTS_PTT:
6557 uint8 i_title = p_command[5];
6558 uint8 i_ptt = p_command[3];
6560 msg_Dbg( &sys.demuxer, "JumpVTS Title (%d) PTT (%d)", i_title, i_ptt);
6562 // find the current VTS content segment
6563 p_chapter = sys.p_current_segment->BrowseCodecPrivate( 1, MatchIsDomain, NULL, 0 );
6564 if ( p_chapter != NULL )
6566 int16 i_curr_title = p_chapter->GetTitleNumber( );
6567 if ( i_curr_title > 0 )
6569 p_chapter = sys.BrowseCodecPrivate( 1, MatchVTSNumber, &i_curr_title, sizeof(i_curr_title), p_segment );
6571 if ( p_segment != NULL && p_chapter != NULL )
6573 // find the title in the VTS
6574 p_chapter = p_chapter->BrowseCodecPrivate( 1, MatchTitleNumber, &i_title, sizeof(i_title) );
6575 if ( p_chapter != NULL )
6577 // find the chapter in the title
6578 p_chapter = p_chapter->BrowseCodecPrivate( 1, MatchChapterNumber, &i_ptt, sizeof(i_ptt) );
6579 if ( p_chapter != NULL )
6581 sys.JumpTo( *p_segment, p_chapter );
6586 msg_Dbg( &sys.demuxer, "Title (%d) does not exist in this VTS", i_title );
6589 msg_Dbg( &sys.demuxer, "DVD Domain VTS (%d) not found", i_curr_title );
6592 msg_Dbg( &sys.demuxer, "JumpVTS_PTT command found but not in a VTS(M)");
6595 msg_Dbg( &sys.demuxer, "JumpVTS_PTT command but the DVD domain wasn't found");
6598 case CMD_DVD_SET_GPRMMD:
6600 msg_Dbg( &sys.demuxer, "Set GPRMMD [%d]=%d", (p_command[4] << 8) + p_command[5], (p_command[2] << 8) + p_command[3]);
6602 if ( !SetGPRM( (p_command[4] << 8) + p_command[5], (p_command[2] << 8) + p_command[3] ) )
6603 msg_Dbg( &sys.demuxer, "Set GPRMMD failed" );
6606 case CMD_DVD_LINKPGCN:
6608 uint16 i_pgcn = (p_command[6] << 8) + p_command[7];
6610 msg_Dbg( &sys.demuxer, "Link PGCN(%d)", i_pgcn );
6611 p_chapter = sys.p_current_segment->BrowseCodecPrivate( 1, MatchPgcNumber, &i_pgcn, 2 );
6612 if ( p_chapter != NULL )
6614 if ( !p_chapter->Enter( true ) )
6615 // jump to the location in the found segment
6616 sys.p_current_segment->Seek( sys.demuxer, p_chapter->i_user_start_time, -1, p_chapter, -1 );
6622 case CMD_DVD_LINKCN:
6624 uint8 i_cn = p_command[7];
6626 p_chapter = sys.p_current_segment->CurrentChapter();
6628 msg_Dbg( &sys.demuxer, "LinkCN (cell %d)", i_cn );
6629 p_chapter = p_chapter->BrowseCodecPrivate( 1, MatchCellNumber, &i_cn, 1 );
6630 if ( p_chapter != NULL )
6632 if ( !p_chapter->Enter( true ) )
6633 // jump to the location in the found segment
6634 sys.p_current_segment->Seek( sys.demuxer, p_chapter->i_user_start_time, -1, p_chapter, -1 );
6640 case CMD_DVD_GOTO_LINE:
6642 msg_Dbg( &sys.demuxer, "GotoLine (%d)", (p_command[6] << 8) + p_command[7] );
6646 case CMD_DVD_SET_HL_BTNN1:
6648 msg_Dbg( &sys.demuxer, "SetHL_BTN (%d)", p_command[4] );
6649 SetSPRM( 0x88, p_command[4] );
6654 msg_Dbg( &sys.demuxer, "unsupported command : %02X %02X %02X %02X %02X %02X %02X %02X"
6670 bool dvd_command_interpretor_c::MatchIsDomain( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6672 return ( data.p_private_data != NULL && data.p_private_data->GetBuffer()[0] == MATROSKA_DVD_LEVEL_SS );
6675 bool dvd_command_interpretor_c::MatchIsVMG( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6677 if ( data.p_private_data == NULL || data.p_private_data->GetSize() < 2 )
6680 return ( data.p_private_data->GetBuffer()[0] == MATROSKA_DVD_LEVEL_SS && data.p_private_data->GetBuffer()[1] == 0xC0);
6683 bool dvd_command_interpretor_c::MatchVTSNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6685 if ( i_cookie_size != 2 || data.p_private_data == NULL || data.p_private_data->GetSize() < 4 )
6688 if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_SS || data.p_private_data->GetBuffer()[1] != 0x80 )
6691 uint16 i_gtitle = (data.p_private_data->GetBuffer()[2] << 8 ) + data.p_private_data->GetBuffer()[3];
6692 uint16 i_title = *(uint16*)p_cookie;
6694 return (i_gtitle == i_title);
6697 bool dvd_command_interpretor_c::MatchVTSMNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6699 if ( i_cookie_size != 1 || data.p_private_data == NULL || data.p_private_data->GetSize() < 4 )
6702 if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_SS || data.p_private_data->GetBuffer()[1] != 0x40 )
6705 uint8 i_gtitle = data.p_private_data->GetBuffer()[3];
6706 uint8 i_title = *(uint8*)p_cookie;
6708 return (i_gtitle == i_title);
6711 bool dvd_command_interpretor_c::MatchTitleNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6713 if ( i_cookie_size != 1 || data.p_private_data == NULL || data.p_private_data->GetSize() < 4 )
6716 if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_TT )
6719 uint16 i_gtitle = (data.p_private_data->GetBuffer()[1] << 8 ) + data.p_private_data->GetBuffer()[2];
6720 uint8 i_title = *(uint8*)p_cookie;
6722 return (i_gtitle == i_title);
6725 bool dvd_command_interpretor_c::MatchPgcType( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6727 if ( i_cookie_size != 1 || data.p_private_data == NULL || data.p_private_data->GetSize() < 8 )
6730 if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_PGC )
6733 uint8 i_pgc_type = data.p_private_data->GetBuffer()[3] & 0x0F;
6734 uint8 i_pgc = *(uint8*)p_cookie;
6736 return (i_pgc_type == i_pgc);
6739 bool dvd_command_interpretor_c::MatchPgcNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6741 if ( i_cookie_size != 2 || data.p_private_data == NULL || data.p_private_data->GetSize() < 8 )
6744 if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_PGC )
6747 uint16 *i_pgc_n = (uint16 *)p_cookie;
6748 uint16 i_pgc_num = (data.p_private_data->GetBuffer()[1] << 8) + data.p_private_data->GetBuffer()[2];
6750 return (i_pgc_num == *i_pgc_n);
6753 bool dvd_command_interpretor_c::MatchChapterNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6755 if ( i_cookie_size != 1 || data.p_private_data == NULL || data.p_private_data->GetSize() < 2 )
6758 if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_PTT )
6761 uint8 i_chapter = data.p_private_data->GetBuffer()[1];
6762 uint8 i_ptt = *(uint8*)p_cookie;
6764 return (i_chapter == i_ptt);
6767 bool dvd_command_interpretor_c::MatchCellNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6769 if ( i_cookie_size != 1 || data.p_private_data == NULL || data.p_private_data->GetSize() < 5 )
6772 if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_CN )
6775 uint8 *i_cell_n = (uint8 *)p_cookie;
6776 uint8 i_cell_num = data.p_private_data->GetBuffer()[3];
6778 return (i_cell_num == *i_cell_n);
6781 bool matroska_script_codec_c::Enter()
6783 bool f_result = false;
6784 std::vector<KaxChapterProcessData*>::iterator index = enter_cmds.begin();
6785 while ( index != enter_cmds.end() )
6787 if ( (*index)->GetSize() )
6789 msg_Dbg( &sys.demuxer, "Matroska Script enter command" );
6790 f_result |= interpretor.Interpret( (*index)->GetBuffer(), (*index)->GetSize() );
6797 bool matroska_script_codec_c::Leave()
6799 bool f_result = false;
6800 std::vector<KaxChapterProcessData*>::iterator index = leave_cmds.begin();
6801 while ( index != leave_cmds.end() )
6803 if ( (*index)->GetSize() )
6805 msg_Dbg( &sys.demuxer, "Matroska Script leave command" );
6806 f_result |= interpretor.Interpret( (*index)->GetBuffer(), (*index)->GetSize() );
6813 // see http://www.matroska.org/technical/specs/chapters/index.html#mscript
6814 // for a description of existing commands
6815 bool matroska_script_interpretor_c::Interpret( const binary * p_command, size_t i_size )
6817 bool b_result = false;
6819 char *psz_str = (char*) malloc( i_size + 1 );
6820 memcpy( psz_str, p_command, i_size );
6821 psz_str[ i_size ] = '\0';
6823 std::string sz_command = psz_str;
6826 msg_Dbg( &sys.demuxer, "command : %s", sz_command.c_str() );
6828 #if defined(__GNUC__) && (__GNUC__ < 3)
6829 if ( sz_command.compare( CMD_MS_GOTO_AND_PLAY, 0, CMD_MS_GOTO_AND_PLAY.size() ) == 0 )
6831 if ( sz_command.compare( 0, CMD_MS_GOTO_AND_PLAY.size(), CMD_MS_GOTO_AND_PLAY ) == 0 )
6837 for ( i=CMD_MS_GOTO_AND_PLAY.size(); i<sz_command.size(); i++)
6839 if ( sz_command[i] == '(' )
6846 for ( j=i; j<sz_command.size(); j++)
6848 if ( sz_command[j] == ')' )
6855 std::string st = sz_command.substr( i+1, j-i-1 );
6856 int64_t i_chapter_uid = atoi( st.c_str() );
6858 virtual_segment_c *p_segment;
6859 chapter_item_c *p_chapter = sys.FindChapter( i_chapter_uid, p_segment );
6861 if ( p_chapter == NULL )
6862 msg_Dbg( &sys.demuxer, "Chapter %"PRId64" not found", i_chapter_uid);
6865 if ( !p_chapter->EnterAndLeave( sys.p_current_segment->CurrentChapter() ) )
6866 p_segment->Seek( sys.demuxer, p_chapter->i_user_start_time, -1, p_chapter, -1 );
6874 void demux_sys_t::SwapButtons()
6876 #ifndef WORDS_BIGENDIAN
6877 uint8_t button, i, j;
6879 for( button = 1; button <= pci_packet.hli.hl_gi.btn_ns; button++) {
6880 btni_t *button_ptr = &(pci_packet.hli.btnit[button-1]);
6881 binary *p_data = (binary*) button_ptr;
6883 uint16 i_x_start = ((p_data[0] & 0x3F) << 4 ) + ( p_data[1] >> 4 );
6884 uint16 i_x_end = ((p_data[1] & 0x03) << 8 ) + p_data[2];
6885 uint16 i_y_start = ((p_data[3] & 0x3F) << 4 ) + ( p_data[4] >> 4 );
6886 uint16 i_y_end = ((p_data[4] & 0x03) << 8 ) + p_data[5];
6887 button_ptr->x_start = i_x_start;
6888 button_ptr->x_end = i_x_end;
6889 button_ptr->y_start = i_y_start;
6890 button_ptr->y_end = i_y_end;
6893 for ( i = 0; i<3; i++ )
6895 for ( j = 0; j<2; j++ )
6897 pci_packet.hli.btn_colit.btn_coli[i][j] = U32_AT( &pci_packet.hli.btn_colit.btn_coli[i][j] );