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 *****************************************************************************/
32 # include <time.h> /* time() */
36 #include <vlc_codecs.h> /* BITMAPINFOHEADER, WAVEFORMATEX */
39 #include <vlc_charset.h>
40 #include <vlc_input.h>
41 #include <vlc_demux.h>
54 /* libebml and matroska */
55 #include "ebml/EbmlHead.h"
56 #include "ebml/EbmlSubHead.h"
57 #include "ebml/EbmlStream.h"
58 #include "ebml/EbmlContexts.h"
59 #include "ebml/EbmlVoid.h"
60 #include "ebml/EbmlVersion.h"
61 #include "ebml/StdIOCallback.h"
63 #include "matroska/KaxAttachments.h"
64 #include "matroska/KaxAttached.h"
65 #include "matroska/KaxBlock.h"
66 #include "matroska/KaxBlockData.h"
67 #include "matroska/KaxChapters.h"
68 #include "matroska/KaxCluster.h"
69 #include "matroska/KaxClusterData.h"
70 #include "matroska/KaxContexts.h"
71 #include "matroska/KaxCues.h"
72 #include "matroska/KaxCuesData.h"
73 #include "matroska/KaxInfo.h"
74 #include "matroska/KaxInfoData.h"
75 #include "matroska/KaxSeekHead.h"
76 #include "matroska/KaxSegment.h"
77 #include "matroska/KaxTag.h"
78 #include "matroska/KaxTags.h"
79 #include "matroska/KaxTagMulti.h"
80 #include "matroska/KaxTracks.h"
81 #include "matroska/KaxTrackAudio.h"
82 #include "matroska/KaxTrackVideo.h"
83 #include "matroska/KaxTrackEntryData.h"
84 #include "matroska/KaxContentEncoding.h"
85 #include "matroska/KaxVersion.h"
87 #include "ebml/StdIOCallback.h"
89 #if LIBMATROSKA_VERSION < 0x000706
90 START_LIBMATROSKA_NAMESPACE
91 extern const EbmlSemanticContext MATROSKA_DLL_API KaxMatroska_Context;
92 END_LIBMATROSKA_NAMESPACE
98 #include "mp4/libmp4.h"
104 #define MATROSKA_COMPRESSION_NONE -1
105 #define MATROSKA_COMPRESSION_ZLIB 0
106 #define MATROSKA_COMPRESSION_BLIB 1
107 #define MATROSKA_COMPRESSION_LZOX 2
108 #define MATROSKA_COMPRESSION_HEADER 3
110 #define MKVD_TIMECODESCALE 1000000
112 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
113 #undef ATTRIBUTE_PACKED
114 #undef PRAGMA_PACK_BEGIN
115 #undef PRAGMA_PACK_END
117 #if defined(__GNUC__)
118 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)
119 #define ATTRIBUTE_PACKED __attribute__ ((packed))
120 #define PRAGMA_PACK 0
124 #if !defined(ATTRIBUTE_PACKED)
125 #define ATTRIBUTE_PACKED
126 #define PRAGMA_PACK 1
133 /*************************************
134 * taken from libdvdnav / libdvdread
135 **************************************/
138 * DVD Time Information.
144 uint8_t frame_u; /* The two high bits are the frame rate. */
145 } ATTRIBUTE_PACKED dvd_time_t;
151 #ifdef WORDS_BIGENDIAN
152 unsigned char zero : 7; /* 25-31 */
153 unsigned char video_pres_mode_change : 1; /* 24 */
155 unsigned char karaoke_audio_pres_mode_change : 1; /* 23 */
156 unsigned char angle_change : 1;
157 unsigned char subpic_stream_change : 1;
158 unsigned char audio_stream_change : 1;
159 unsigned char pause_on : 1;
160 unsigned char still_off : 1;
161 unsigned char button_select_or_activate : 1;
162 unsigned char resume : 1; /* 16 */
164 unsigned char chapter_menu_call : 1; /* 15 */
165 unsigned char angle_menu_call : 1;
166 unsigned char audio_menu_call : 1;
167 unsigned char subpic_menu_call : 1;
168 unsigned char root_menu_call : 1;
169 unsigned char title_menu_call : 1;
170 unsigned char backward_scan : 1;
171 unsigned char forward_scan : 1; /* 8 */
173 unsigned char next_pg_search : 1; /* 7 */
174 unsigned char prev_or_top_pg_search : 1;
175 unsigned char time_or_chapter_search : 1;
176 unsigned char go_up : 1;
177 unsigned char stop : 1;
178 unsigned char title_play : 1;
179 unsigned char chapter_search_or_play : 1;
180 unsigned char title_or_time_play : 1; /* 0 */
182 unsigned char video_pres_mode_change : 1; /* 24 */
183 unsigned char zero : 7; /* 25-31 */
185 unsigned char resume : 1; /* 16 */
186 unsigned char button_select_or_activate : 1;
187 unsigned char still_off : 1;
188 unsigned char pause_on : 1;
189 unsigned char audio_stream_change : 1;
190 unsigned char subpic_stream_change : 1;
191 unsigned char angle_change : 1;
192 unsigned char karaoke_audio_pres_mode_change : 1; /* 23 */
194 unsigned char forward_scan : 1; /* 8 */
195 unsigned char backward_scan : 1;
196 unsigned char title_menu_call : 1;
197 unsigned char root_menu_call : 1;
198 unsigned char subpic_menu_call : 1;
199 unsigned char audio_menu_call : 1;
200 unsigned char angle_menu_call : 1;
201 unsigned char chapter_menu_call : 1; /* 15 */
203 unsigned char title_or_time_play : 1; /* 0 */
204 unsigned char chapter_search_or_play : 1;
205 unsigned char title_play : 1;
206 unsigned char stop : 1;
207 unsigned char go_up : 1;
208 unsigned char time_or_chapter_search : 1;
209 unsigned char prev_or_top_pg_search : 1;
210 unsigned char next_pg_search : 1; /* 7 */
212 } ATTRIBUTE_PACKED user_ops_t;
215 * Type to store per-command data.
219 } ATTRIBUTE_PACKED vm_cmd_t;
220 #define COMMAND_DATA_SIZE 8
223 * PCI General Information
226 uint32_t nv_pck_lbn; /**< sector address of this nav pack */
227 uint16_t vobu_cat; /**< 'category' of vobu */
228 uint16_t zero1; /**< reserved */
229 user_ops_t vobu_uop_ctl; /**< UOP of vobu */
230 uint32_t vobu_s_ptm; /**< start presentation time of vobu */
231 uint32_t vobu_e_ptm; /**< end presentation time of vobu */
232 uint32_t vobu_se_e_ptm; /**< end ptm of sequence end in vobu */
233 dvd_time_t e_eltm; /**< Cell elapsed time */
235 } ATTRIBUTE_PACKED pci_gi_t;
238 * Non Seamless Angle Information
241 uint32_t nsml_agl_dsta[9]; /**< address of destination vobu in AGL_C#n */
242 } ATTRIBUTE_PACKED nsml_agli_t;
245 * Highlight General Information
247 * For btngrX_dsp_ty the bits have the following meaning:
248 * 000b: normal 4/3 only buttons
249 * XX1b: wide (16/9) buttons
250 * X1Xb: letterbox buttons
251 * 1XXb: pan&scan buttons
254 uint16_t hli_ss; /**< status, only low 2 bits 0: no buttons, 1: different 2: equal 3: eual except for button cmds */
255 uint32_t hli_s_ptm; /**< start ptm of hli */
256 uint32_t hli_e_ptm; /**< end ptm of hli */
257 uint32_t btn_se_e_ptm; /**< end ptm of button select */
258 #ifdef WORDS_BIGENDIAN
259 unsigned char zero1 : 2; /**< reserved */
260 unsigned char btngr_ns : 2; /**< number of button groups 1, 2 or 3 with 36/18/12 buttons */
261 unsigned char zero2 : 1; /**< reserved */
262 unsigned char btngr1_dsp_ty : 3; /**< display type of subpic stream for button group 1 */
263 unsigned char zero3 : 1; /**< reserved */
264 unsigned char btngr2_dsp_ty : 3; /**< display type of subpic stream for button group 2 */
265 unsigned char zero4 : 1; /**< reserved */
266 unsigned char btngr3_dsp_ty : 3; /**< display type of subpic stream for button group 3 */
268 unsigned char btngr1_dsp_ty : 3;
269 unsigned char zero2 : 1;
270 unsigned char btngr_ns : 2;
271 unsigned char zero1 : 2;
272 unsigned char btngr3_dsp_ty : 3;
273 unsigned char zero4 : 1;
274 unsigned char btngr2_dsp_ty : 3;
275 unsigned char zero3 : 1;
277 uint8_t btn_ofn; /**< button offset number range 0-255 */
278 uint8_t btn_ns; /**< number of valid buttons <= 36/18/12 (low 6 bits) */
279 uint8_t nsl_btn_ns; /**< number of buttons selectable by U_BTNNi (low 6 bits) nsl_btn_ns <= btn_ns */
280 uint8_t zero5; /**< reserved */
281 uint8_t fosl_btnn; /**< forcedly selected button (low 6 bits) */
282 uint8_t foac_btnn; /**< forcedly activated button (low 6 bits) */
283 } ATTRIBUTE_PACKED hl_gi_t;
287 * Button Color Information Table
288 * Each entry beeing a 32bit word that contains the color indexs and alpha
289 * values to use. They are all represented by 4 bit number and stored
290 * like this [Ci3, Ci2, Ci1, Ci0, A3, A2, A1, A0]. The actual palette
291 * that the indexes reference is in the PGC.
292 * \todo split the uint32_t into a struct
295 uint32_t btn_coli[3][2]; /**< [button color number-1][select:0/action:1] */
296 } ATTRIBUTE_PACKED btn_colit_t;
301 * NOTE: I've had to change the structure from the disk layout to get
302 * the packing to work with Sun's Forte C compiler.
303 * The 4 and 7 bytes are 'rotated' was: ABC DEF GHIJ is: ABCG DEFH IJ
306 #ifdef WORDS_BIGENDIAN
307 uint32 btn_coln : 2; /**< button color number */
308 uint32 x_start : 10; /**< x start offset within the overlay */
309 uint32 zero1 : 2; /**< reserved */
310 uint32 x_end : 10; /**< x end offset within the overlay */
312 uint32 zero3 : 2; /**< reserved */
313 uint32 up : 6; /**< button index when pressing up */
315 uint32 auto_action_mode : 2; /**< 0: no, 1: activated if selected */
316 uint32 y_start : 10; /**< y start offset within the overlay */
317 uint32 zero2 : 2; /**< reserved */
318 uint32 y_end : 10; /**< y end offset within the overlay */
320 uint32 zero4 : 2; /**< reserved */
321 uint32 down : 6; /**< button index when pressing down */
322 unsigned char zero5 : 2; /**< reserved */
323 unsigned char left : 6; /**< button index when pressing left */
324 unsigned char zero6 : 2; /**< reserved */
325 unsigned char right : 6; /**< button index when pressing right */
338 uint32 auto_action_mode : 2;
342 unsigned char left : 6;
343 unsigned char zero5 : 2;
344 unsigned char right : 6;
345 unsigned char zero6 : 2;
348 } ATTRIBUTE_PACKED btni_t;
351 * Highlight Information
355 btn_colit_t btn_colit;
357 } ATTRIBUTE_PACKED hli_t;
364 nsml_agli_t nsml_agli;
367 } ATTRIBUTE_PACKED pci_t;
373 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
377 * What's between a directory and a filename?
380 #define DIRECTORY_SEPARATOR '\\'
382 #define DIRECTORY_SEPARATOR '/'
385 using namespace LIBMATROSKA_NAMESPACE;
388 /*****************************************************************************
390 *****************************************************************************/
391 static int Open ( vlc_object_t * );
392 static void Close( vlc_object_t * );
395 set_shortname( "Matroska" );
396 set_description( _("Matroska stream demuxer" ) );
397 set_capability( "demux2", 50 );
398 set_callbacks( Open, Close );
399 set_category( CAT_INPUT );
400 set_subcategory( SUBCAT_INPUT_DEMUX );
402 add_bool( "mkv-use-ordered-chapters", 1, NULL,
403 N_("Ordered chapters"),
404 N_("Play ordered chapters as specified in the segment."), VLC_TRUE );
406 add_bool( "mkv-use-chapter-codec", 1, NULL,
407 N_("Chapter codecs"),
408 N_("Use chapter codecs found in the segment."), VLC_TRUE );
410 add_bool( "mkv-preload-local-dir", 1, NULL,
411 N_("Preload Directory"),
412 N_("Preload matroska files from the same family in the same directory (not good for broken files)."), VLC_TRUE );
414 add_bool( "mkv-seek-percent", 0, NULL,
415 N_("Seek based on percent not time"),
416 N_("Seek based on percent not time."), VLC_TRUE );
418 add_bool( "mkv-use-dummy", 0, NULL,
419 N_("Dummy Elements"),
420 N_("Read and discard unknown EBML elements (not good for broken files)."), VLC_TRUE );
422 add_shortcut( "mka" );
423 add_shortcut( "mkv" );
426 /*****************************************************************************
428 *****************************************************************************/
430 block_t *block_zlib_decompress( vlc_object_t *p_this, block_t *p_in_block ) {
431 int result, dstsize, n;
436 d_stream.zalloc = (alloc_func)0;
437 d_stream.zfree = (free_func)0;
438 d_stream.opaque = (voidpf)0;
439 result = inflateInit(&d_stream);
442 msg_Dbg( p_this, "inflateInit() failed. Result: %d", result );
446 d_stream.next_in = (Bytef *)p_in_block->p_buffer;
447 d_stream.avail_in = p_in_block->i_buffer;
449 p_block = block_New( p_this, 0 );
454 p_block = block_Realloc( p_block, 0, n * 1000 );
455 dst = (unsigned char *)p_block->p_buffer;
456 d_stream.next_out = (Bytef *)&dst[(n - 1) * 1000];
457 d_stream.avail_out = 1000;
458 result = inflate(&d_stream, Z_NO_FLUSH);
459 if( ( result != Z_OK ) && ( result != Z_STREAM_END ) )
461 msg_Dbg( p_this, "Zlib decompression failed. Result: %d", result );
465 while( ( d_stream.avail_out == 0 ) && ( d_stream.avail_in != 0 ) &&
466 ( result != Z_STREAM_END ) );
468 dstsize = d_stream.total_out;
469 inflateEnd( &d_stream );
471 p_block = block_Realloc( p_block, 0, dstsize );
472 p_block->i_buffer = dstsize;
473 block_Release( p_in_block );
480 * Helper function to print the mkv parse tree
482 static void MkvTree( demux_t & demuxer, int i_level, const char *psz_format, ... )
487 msg_Err( &demuxer, "too deep tree" );
490 va_start( args, psz_format );
491 static const char psz_foo[] = "| | | | | | | | | |";
492 char *psz_foo2 = (char*)malloc( ( i_level * 4 + 3 + strlen( psz_format ) ) * sizeof(char) );
493 strncpy( psz_foo2, psz_foo, 4 * i_level );
494 psz_foo2[ 4 * i_level ] = '+';
495 psz_foo2[ 4 * i_level + 1 ] = ' ';
496 strcpy( &psz_foo2[ 4 * i_level + 2 ], psz_format );
497 __msg_GenericVa( VLC_OBJECT(&demuxer), MSG_QUEUE_NORMAL, VLC_MSG_DBG, "mkv", psz_foo2, args );
502 /*****************************************************************************
504 *****************************************************************************/
505 class vlc_stream_io_callback: public IOCallback
513 vlc_stream_io_callback( stream_t *, vlc_bool_t );
515 virtual ~vlc_stream_io_callback()
521 virtual uint32 read ( void *p_buffer, size_t i_size);
522 virtual void setFilePointer ( int64_t i_offset, seek_mode mode = seek_beginning );
523 virtual size_t write ( const void *p_buffer, size_t i_size);
524 virtual uint64 getFilePointer ( void );
525 virtual void close ( void );
528 /*****************************************************************************
530 *****************************************************************************/
534 EbmlParser( EbmlStream *es, EbmlElement *el_start, demux_t *p_demux );
535 virtual ~EbmlParser( void );
539 void Reset( demux_t *p_demux );
540 EbmlElement *Get( void );
542 EbmlElement *UnGet( uint64 i_block_pos, uint64 i_cluster_pos );
544 int GetLevel( void );
549 EbmlElement *m_el[10];
550 int64_t mi_remain_size[10];
560 /*****************************************************************************
561 * Some functions to manipulate memory
562 *****************************************************************************/
563 #define GetFOURCC( p ) __GetFOURCC( (uint8_t*)p )
564 static vlc_fourcc_t __GetFOURCC( uint8_t *p )
566 return VLC_FOURCC( p[0], p[1], p[2], p[3] );
569 /*****************************************************************************
570 * definitions of structures and functions used by this plugins
571 *****************************************************************************/
576 vlc_bool_t b_default;
577 vlc_bool_t b_enabled;
578 unsigned int i_number;
581 uint8_t *p_extra_data;
585 uint64_t i_default_duration;
586 float f_timecodescale;
595 unsigned int i_original_rate;
598 /* data to be send first */
600 uint8_t *p_data_init;
602 /* hack : it's for seek */
603 vlc_bool_t b_search_keyframe;
607 const char *psz_codec_name;
608 const char *psz_codec_settings;
609 const char *psz_codec_info_url;
610 const char *psz_codec_download_url;
612 /* encryption/compression */
613 int i_compression_type;
614 KaxContentCompSettings *p_compression_data;
631 const binary MATROSKA_DVD_LEVEL_SS = 0x30;
632 const binary MATROSKA_DVD_LEVEL_LU = 0x2A;
633 const binary MATROSKA_DVD_LEVEL_TT = 0x28;
634 const binary MATROSKA_DVD_LEVEL_PGC = 0x20;
635 const binary MATROSKA_DVD_LEVEL_PG = 0x18;
636 const binary MATROSKA_DVD_LEVEL_PTT = 0x10;
637 const binary MATROSKA_DVD_LEVEL_CN = 0x08;
639 class chapter_codec_cmds_c
642 chapter_codec_cmds_c( demux_sys_t & demuxer, int codec_id = -1)
643 :p_private_data(NULL)
644 ,i_codec_id( codec_id )
648 virtual ~chapter_codec_cmds_c()
650 delete p_private_data;
651 std::vector<KaxChapterProcessData*>::iterator indexe = enter_cmds.begin();
652 while ( indexe != enter_cmds.end() )
657 std::vector<KaxChapterProcessData*>::iterator indexl = leave_cmds.begin();
658 while ( indexl != leave_cmds.end() )
663 std::vector<KaxChapterProcessData*>::iterator indexd = during_cmds.begin();
664 while ( indexd != during_cmds.end() )
671 void SetPrivate( const KaxChapterProcessPrivate & private_data )
673 p_private_data = new KaxChapterProcessPrivate( private_data );
676 void AddCommand( const KaxChapterProcessCommand & command );
678 /// \return wether the codec has seeked in the files or not
679 virtual bool Enter() { return false; }
680 virtual bool Leave() { return false; }
681 virtual std::string GetCodecName( bool f_for_title = false ) const { return ""; }
682 virtual int16 GetTitleNumber() { return -1; }
684 KaxChapterProcessPrivate *p_private_data;
687 std::vector<KaxChapterProcessData*> enter_cmds;
688 std::vector<KaxChapterProcessData*> during_cmds;
689 std::vector<KaxChapterProcessData*> leave_cmds;
695 class dvd_command_interpretor_c
698 dvd_command_interpretor_c( demux_sys_t & demuxer )
701 memset( p_PRMs, 0, sizeof(p_PRMs) );
702 p_PRMs[ 0x80 + 1 ] = 15;
703 p_PRMs[ 0x80 + 2 ] = 62;
704 p_PRMs[ 0x80 + 3 ] = 1;
705 p_PRMs[ 0x80 + 4 ] = 1;
706 p_PRMs[ 0x80 + 7 ] = 1;
707 p_PRMs[ 0x80 + 8 ] = 1;
708 p_PRMs[ 0x80 + 16 ] = 0xFFFFu;
709 p_PRMs[ 0x80 + 18 ] = 0xFFFFu;
712 bool Interpret( const binary * p_command, size_t i_size = 8 );
714 uint16 GetPRM( size_t index ) const
717 return p_PRMs[ index ];
721 uint16 GetGPRM( size_t index ) const
723 if ( index >= 0 && index < 16 )
724 return p_PRMs[ index ];
728 uint16 GetSPRM( size_t index ) const
730 // 21,22,23 reserved for future use
731 if ( index >= 0x80 && index < 0x95 )
732 return p_PRMs[ index ];
736 bool SetPRM( size_t index, uint16 value )
738 if ( index >= 0 && index < 16 )
740 p_PRMs[ index ] = value;
746 bool SetGPRM( size_t index, uint16 value )
748 if ( index >= 0 && index < 16 )
750 p_PRMs[ index ] = value;
756 bool SetSPRM( size_t index, uint16 value )
758 if ( index > 0x80 && index <= 0x8D && index != 0x8C )
760 p_PRMs[ index ] = value;
767 std::string GetRegTypeName( bool b_value, uint16 value ) const
770 char s_value[6], s_reg_value[6];
771 sprintf( s_value, "%.5d", value );
779 else if ( value < 0x80 )
781 sprintf( s_reg_value, "%.5d", GetPRM( value ) );
785 result += s_reg_value;
790 sprintf( s_reg_value, "%.5d", GetPRM( value ) );
794 result += s_reg_value;
806 // wether it's a comparison on the value or register
807 static const uint16 CMD_DVD_TEST_VALUE = 0x80;
808 static const uint16 CMD_DVD_IF_GPREG_AND = (1 << 4);
809 static const uint16 CMD_DVD_IF_GPREG_EQUAL = (2 << 4);
810 static const uint16 CMD_DVD_IF_GPREG_NOT_EQUAL = (3 << 4);
811 static const uint16 CMD_DVD_IF_GPREG_SUP_EQUAL = (4 << 4);
812 static const uint16 CMD_DVD_IF_GPREG_SUP = (5 << 4);
813 static const uint16 CMD_DVD_IF_GPREG_INF_EQUAL = (6 << 4);
814 static const uint16 CMD_DVD_IF_GPREG_INF = (7 << 4);
816 static const uint16 CMD_DVD_NOP = 0x0000;
817 static const uint16 CMD_DVD_GOTO_LINE = 0x0001;
818 static const uint16 CMD_DVD_BREAK = 0x0002;
820 static const uint16 CMD_DVD_NOP2 = 0x2001;
821 static const uint16 CMD_DVD_LINKPGCN = 0x2004;
822 static const uint16 CMD_DVD_LINKPGN = 0x2006;
823 static const uint16 CMD_DVD_LINKCN = 0x2007;
824 static const uint16 CMD_DVD_JUMP_TT = 0x3002;
825 static const uint16 CMD_DVD_JUMPVTS_TT = 0x3003;
826 static const uint16 CMD_DVD_JUMPVTS_PTT = 0x3005;
827 static const uint16 CMD_DVD_JUMP_SS = 0x3006;
828 static const uint16 CMD_DVD_CALLSS_VTSM1 = 0x3008;
830 static const uint16 CMD_DVD_SET_HL_BTNN2 = 0x4600;
831 static const uint16 CMD_DVD_SET_HL_BTNN_LINKPGCN1 = 0x4604;
832 static const uint16 CMD_DVD_SET_STREAM = 0x5100;
833 static const uint16 CMD_DVD_SET_GPRMMD = 0x5300;
834 static const uint16 CMD_DVD_SET_HL_BTNN1 = 0x5600;
835 static const uint16 CMD_DVD_SET_HL_BTNN_LINKPGCN2 = 0x5604;
836 static const uint16 CMD_DVD_SET_HL_BTNN_LINKCN = 0x5607;
838 static const uint16 CMD_DVD_MOV_SPREG_PREG = 0x6100;
839 static const uint16 CMD_DVD_GPREG_MOV_VALUE = 0x7100;
840 static const uint16 CMD_DVD_SUB_GPREG = 0x7400;
841 static const uint16 CMD_DVD_MULT_GPREG = 0x7500;
842 static const uint16 CMD_DVD_GPREG_DIV_VALUE = 0x7600;
843 static const uint16 CMD_DVD_GPREG_AND_VALUE = 0x7900;
845 // callbacks when browsing inside CodecPrivate
846 static bool MatchIsDomain ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
847 static bool MatchIsVMG ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
848 static bool MatchVTSNumber ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
849 static bool MatchVTSMNumber ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
850 static bool MatchTitleNumber ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
851 static bool MatchPgcType ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
852 static bool MatchPgcNumber ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
853 static bool MatchChapterNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
854 static bool MatchCellNumber ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size );
857 class dvd_chapter_codec_c : public chapter_codec_cmds_c
860 dvd_chapter_codec_c( demux_sys_t & sys )
861 :chapter_codec_cmds_c( sys, 1 )
866 std::string GetCodecName( bool f_for_title = false ) const;
867 int16 GetTitleNumber();
870 class matroska_script_interpretor_c
873 matroska_script_interpretor_c( demux_sys_t & demuxer )
877 bool Interpret( const binary * p_command, size_t i_size );
880 static const std::string CMD_MS_GOTO_AND_PLAY;
886 const std::string matroska_script_interpretor_c::CMD_MS_GOTO_AND_PLAY = "GotoAndPlay";
889 class matroska_script_codec_c : public chapter_codec_cmds_c
892 matroska_script_codec_c( demux_sys_t & sys )
893 :chapter_codec_cmds_c( sys, 0 )
901 matroska_script_interpretor_c interpretor;
904 class chapter_translation_c
907 chapter_translation_c()
911 ~chapter_translation_c()
916 KaxChapterTranslateID *p_translated;
917 unsigned int codec_id;
918 std::vector<uint64_t> editions;
927 ,i_user_start_time(-1)
930 ,b_display_seekpoint(true)
931 ,b_user_display(false)
936 virtual ~chapter_item_c()
938 std::vector<chapter_codec_cmds_c*>::iterator index = codecs.begin();
939 while ( index != codecs.end() )
944 std::vector<chapter_item_c*>::iterator index_ = sub_chapters.begin();
945 while ( index_ != sub_chapters.end() )
952 int64_t RefreshChapters( bool b_ordered, int64_t i_prev_user_time );
953 int PublishChapters( input_title_t & title, int & i_user_chapters, int i_level = 0 );
954 virtual chapter_item_c * FindTimecode( mtime_t i_timecode, const chapter_item_c * p_current, bool & b_found );
955 void Append( const chapter_item_c & edition );
956 chapter_item_c * FindChapter( int64_t i_find_uid );
957 virtual chapter_item_c *BrowseCodecPrivate( unsigned int codec_id,
958 bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ),
959 const void *p_cookie,
960 size_t i_cookie_size );
961 std::string GetCodecName( bool f_for_title = false ) const;
962 bool ParentOf( const chapter_item_c & item ) const;
963 int16 GetTitleNumber( ) const;
965 int64_t i_start_time, i_end_time;
966 int64_t i_user_start_time, i_user_end_time; /* the time in the stream when an edition is ordered */
967 std::vector<chapter_item_c*> sub_chapters;
970 bool b_display_seekpoint;
972 std::string psz_name;
973 chapter_item_c *psz_parent;
976 std::vector<chapter_codec_cmds_c*> codecs;
978 static bool CompareTimecode( const chapter_item_c * itemA, const chapter_item_c * itemB )
980 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) );
983 bool Enter( bool b_do_subchapters );
984 bool Leave( bool b_do_subchapters );
985 bool EnterAndLeave( chapter_item_c *p_item, bool b_enter = true );
988 class chapter_edition_c : public chapter_item_c
995 void RefreshChapters( );
996 mtime_t Duration() const;
997 std::string GetMainName() const;
998 chapter_item_c * FindTimecode( mtime_t i_timecode, const chapter_item_c * p_current );
1003 class matroska_segment_c
1006 matroska_segment_c( demux_sys_t & demuxer, EbmlStream & estream )
1009 ,i_timescale(MKVD_TIMECODESCALE)
1012 ,i_cues_position(-1)
1013 ,i_chapters_position(-1)
1014 ,i_tags_position(-1)
1019 ,p_segment_uid(NULL)
1020 ,p_prev_segment_uid(NULL)
1021 ,p_next_segment_uid(NULL)
1025 ,psz_muxing_application(NULL)
1026 ,psz_writing_application(NULL)
1027 ,psz_segment_filename(NULL)
1030 ,i_default_edition(0)
1035 p_indexes = (mkv_index_t*)malloc( sizeof( mkv_index_t ) * i_index_max );
1038 virtual ~matroska_segment_c()
1040 for( size_t i_track = 0; i_track < tracks.size(); i_track++ )
1042 if ( tracks[i_track]->p_compression_data )
1044 delete tracks[i_track]->p_compression_data;
1046 es_format_Clean( &tracks[i_track]->fmt );
1047 if( tracks[i_track]->p_extra_data )
1048 free( tracks[i_track]->p_extra_data );
1049 if( tracks[i_track]->psz_codec )
1050 free( tracks[i_track]->psz_codec );
1051 delete tracks[i_track];
1054 if( psz_writing_application )
1056 free( psz_writing_application );
1058 if( psz_muxing_application )
1060 free( psz_muxing_application );
1062 if( psz_segment_filename )
1064 free( psz_segment_filename );
1072 free( psz_date_utc );
1079 delete p_segment_uid;
1080 delete p_prev_segment_uid;
1081 delete p_next_segment_uid;
1083 std::vector<chapter_edition_c*>::iterator index = stored_editions.begin();
1084 while ( index != stored_editions.end() )
1089 std::vector<chapter_translation_c*>::iterator indext = translations.begin();
1090 while ( indext != translations.end() )
1095 std::vector<KaxSegmentFamily*>::iterator indexf = families.begin();
1096 while ( indexf != families.end() )
1103 KaxSegment *segment;
1107 uint64_t i_timescale;
1109 /* duration of the segment */
1111 mtime_t i_start_time;
1114 std::vector<mkv_track_t*> tracks;
1117 int64_t i_cues_position;
1118 int64_t i_chapters_position;
1119 int64_t i_tags_position;
1121 KaxCluster *cluster;
1123 uint64 i_cluster_pos;
1124 int64_t i_start_pos;
1125 KaxSegmentUID *p_segment_uid;
1126 KaxPrevUID *p_prev_segment_uid;
1127 KaxNextUID *p_next_segment_uid;
1132 mkv_index_t *p_indexes;
1135 char *psz_muxing_application;
1136 char *psz_writing_application;
1137 char *psz_segment_filename;
1141 /* !!!!! GCC 3.3 bug on Darwin !!!!! */
1142 /* when you remove this variable the compiler issues an atomicity error */
1143 /* this variable only works when using std::vector<chapter_edition_c> */
1144 std::vector<chapter_edition_c*> stored_editions;
1145 int i_default_edition;
1147 std::vector<chapter_translation_c*> translations;
1148 std::vector<KaxSegmentFamily*> families;
1155 bool PreloadFamily( const matroska_segment_c & segment );
1156 void ParseInfo( KaxInfo *info );
1157 void ParseAttachments( KaxAttachments *attachments );
1158 void ParseChapters( KaxChapters *chapters );
1159 void ParseSeekHead( KaxSeekHead *seekhead );
1160 void ParseTracks( KaxTracks *tracks );
1161 void ParseChapterAtom( int i_level, KaxChapterAtom *ca, chapter_item_c & chapters );
1162 void ParseTrackEntry( KaxTrackEntry *m );
1163 void ParseCluster( );
1164 void IndexAppendCluster( KaxCluster *cluster );
1167 void InformationCreate( );
1168 void Seek( mtime_t i_date, mtime_t i_time_offset );
1169 #if LIBMATROSKA_VERSION >= 0x000800
1170 int BlockGet( KaxBlock * &, KaxSimpleBlock * &, int64_t *, int64_t *, int64_t *);
1172 int BlockGet( KaxBlock * &, int64_t *, int64_t *, int64_t *);
1174 bool Select( mtime_t i_start_time );
1177 static bool CompareSegmentUIDs( const matroska_segment_c * item_a, const matroska_segment_c * item_b );
1180 // class holding hard-linked segment together in the playback order
1181 class virtual_segment_c
1184 virtual_segment_c( matroska_segment_c *p_segment )
1187 ,i_current_segment(0)
1188 ,i_current_edition(-1)
1189 ,psz_current_chapter(NULL)
1191 linked_segments.push_back( p_segment );
1193 AppendUID( p_segment->p_segment_uid );
1194 AppendUID( p_segment->p_prev_segment_uid );
1195 AppendUID( p_segment->p_next_segment_uid );
1199 size_t AddSegment( matroska_segment_c *p_segment );
1200 void PreloadLinked( );
1201 mtime_t Duration( ) const;
1203 void Seek( demux_t & demuxer, mtime_t i_date, mtime_t i_time_offset, chapter_item_c *psz_chapter );
1205 inline chapter_edition_c *Edition()
1207 if ( i_current_edition >= 0 && size_t(i_current_edition) < p_editions->size() )
1208 return (*p_editions)[i_current_edition];
1212 matroska_segment_c * Segment() const
1214 if ( linked_segments.size() == 0 || i_current_segment >= linked_segments.size() )
1216 return linked_segments[i_current_segment];
1219 inline chapter_item_c *CurrentChapter() {
1220 return psz_current_chapter;
1225 if ( i_current_segment < linked_segments.size()-1 )
1227 i_current_segment++;
1233 bool FindUID( KaxSegmentUID & uid ) const
1235 for ( size_t i=0; i<linked_uids.size(); i++ )
1237 if ( linked_uids[i] == uid )
1243 bool UpdateCurrentToChapter( demux_t & demux );
1244 void PrepareChapters( );
1246 chapter_item_c *BrowseCodecPrivate( unsigned int codec_id,
1247 bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ),
1248 const void *p_cookie,
1249 size_t i_cookie_size );
1250 chapter_item_c *FindChapter( int64_t i_find_uid );
1252 std::vector<chapter_edition_c*> *p_editions;
1256 std::vector<matroska_segment_c*> linked_segments;
1257 std::vector<KaxSegmentUID> linked_uids;
1258 size_t i_current_segment;
1260 int i_current_edition;
1261 chapter_item_c *psz_current_chapter;
1263 void AppendUID( const EbmlBinary * UID );
1266 class matroska_stream_c
1269 matroska_stream_c( demux_sys_t & demuxer )
1275 virtual ~matroska_stream_c()
1284 std::vector<matroska_segment_c*> segments;
1297 vlc_bool_t b_clicked;
1310 virtual ~attachment_c()
1312 if( p_data ) free( p_data );
1315 std::string psz_file_name;
1316 std::string psz_mime_type;
1324 demux_sys_t( demux_t & demux )
1331 ,p_current_segment(NULL)
1332 ,dvd_interpretor( *this )
1336 ,b_pci_packet_set(false)
1339 vlc_mutex_init( &demuxer, &lock_demuxer );
1342 virtual ~demux_sys_t()
1346 for ( i=0; i<streams.size(); i++ )
1348 for ( i=0; i<opened_segments.size(); i++ )
1349 delete opened_segments[i];
1350 for ( i=0; i<used_segments.size(); i++ )
1351 delete used_segments[i];
1352 for ( i=0; i<stored_attachments.size(); i++ )
1353 delete stored_attachments[i];
1354 if( meta ) vlc_meta_Delete( meta );
1356 while( titles.size() )
1357 { vlc_input_title_Delete( titles.back() ); titles.pop_back();}
1359 vlc_mutex_destroy( &lock_demuxer );
1366 mtime_t i_start_pts;
1367 mtime_t i_chapter_time;
1371 std::vector<input_title_t*> titles; // matroska editions
1372 size_t i_current_title;
1374 std::vector<matroska_stream_c*> streams;
1375 std::vector<attachment_c*> stored_attachments;
1376 std::vector<matroska_segment_c*> opened_segments;
1377 std::vector<virtual_segment_c*> used_segments;
1378 virtual_segment_c *p_current_segment;
1380 dvd_command_interpretor_c dvd_interpretor;
1382 /* duration of the stream */
1385 matroska_segment_c *FindSegment( const EbmlBinary & uid ) const;
1386 chapter_item_c *BrowseCodecPrivate( unsigned int codec_id,
1387 bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ),
1388 const void *p_cookie,
1389 size_t i_cookie_size,
1390 virtual_segment_c * & p_segment_found );
1391 chapter_item_c *FindChapter( int64_t i_find_uid, virtual_segment_c * & p_segment_found );
1393 void PreloadFamily( const matroska_segment_c & of_segment );
1394 void PreloadLinked( matroska_segment_c *p_segment );
1395 bool PreparePlayback( virtual_segment_c *p_new_segment );
1396 matroska_stream_c *AnalyseAllSegmentsFound( demux_t *p_demux, EbmlStream *p_estream, bool b_initial = false );
1397 void JumpTo( virtual_segment_c & p_segment, chapter_item_c * p_chapter );
1399 void StartUiThread();
1400 void StopUiThread();
1402 inline void SwapButtons();
1404 /* for spu variables */
1405 input_thread_t *p_input;
1407 bool b_pci_packet_set;
1408 uint8_t palette[4][4];
1409 vlc_mutex_t lock_demuxer;
1412 event_thread_t *p_ev;
1413 static int EventThread( vlc_object_t *p_this );
1414 static int EventMouse( vlc_object_t *p_this, char const *psz_var,
1415 vlc_value_t oldval, vlc_value_t newval, void *p_data );
1416 static int EventKey( vlc_object_t *p_this, char const *psz_var,
1417 vlc_value_t oldval, vlc_value_t newval, void *p_data );
1422 virtual_segment_c *VirtualFromSegments( matroska_segment_c *p_segment ) const;
1423 bool IsUsedSegment( matroska_segment_c &p_segment ) const;
1426 static int Demux ( demux_t * );
1427 static int Control( demux_t *, int, va_list );
1428 static void Seek ( demux_t *, mtime_t i_date, double f_percent, chapter_item_c *psz_chapter );
1430 #define MKV_IS_ID( el, C ) ( EbmlId( (*el) ) == C::ClassInfos.GlobalId )
1432 static inline char * ToUTF8( const UTFstring &u )
1434 return strdup( u.GetUTF8().c_str() );
1437 /*****************************************************************************
1438 * Open: initializes matroska demux structures
1439 *****************************************************************************/
1440 static int Open( vlc_object_t * p_this )
1442 demux_t *p_demux = (demux_t*)p_this;
1444 matroska_stream_c *p_stream;
1445 matroska_segment_c *p_segment;
1446 const uint8_t *p_peek;
1447 std::string s_path, s_filename;
1448 vlc_stream_io_callback *p_io_callback;
1449 EbmlStream *p_io_stream;
1451 /* peek the begining */
1452 if( stream_Peek( p_demux->s, &p_peek, 4 ) < 4 ) return VLC_EGENERIC;
1454 /* is a valid file */
1455 if( p_peek[0] != 0x1a || p_peek[1] != 0x45 ||
1456 p_peek[2] != 0xdf || p_peek[3] != 0xa3 ) return VLC_EGENERIC;
1458 /* Set the demux function */
1459 p_demux->pf_demux = Demux;
1460 p_demux->pf_control = Control;
1461 p_demux->p_sys = p_sys = new demux_sys_t( *p_demux );
1463 p_io_callback = new vlc_stream_io_callback( p_demux->s, VLC_FALSE );
1464 p_io_stream = new EbmlStream( *p_io_callback );
1466 if( p_io_stream == NULL )
1468 msg_Err( p_demux, "failed to create EbmlStream" );
1469 delete p_io_callback;
1471 return VLC_EGENERIC;
1474 p_stream = p_sys->AnalyseAllSegmentsFound( p_demux, p_io_stream, true );
1475 if( p_stream == NULL )
1477 msg_Err( p_demux, "cannot find KaxSegment" );
1480 p_sys->streams.push_back( p_stream );
1482 p_stream->p_in = p_io_callback;
1483 p_stream->p_es = p_io_stream;
1485 for (size_t i=0; i<p_stream->segments.size(); i++)
1487 p_stream->segments[i]->Preload();
1490 p_segment = p_stream->segments[0];
1491 if( p_segment->cluster != NULL )
1493 msg_Warn( p_demux, "cannot find any cluster, damaged file ?" );
1495 // reset the stream reading to the first cluster of the segment used
1496 p_stream->p_in->setFilePointer( p_segment->cluster->GetElementPosition() );
1499 if (config_GetInt( p_demux, "mkv-preload-local-dir" ))
1501 /* get the files from the same dir from the same family (based on p_demux->psz_path) */
1502 if (p_demux->psz_path[0] != '\0' && !strcmp(p_demux->psz_access, ""))
1504 // assume it's a regular file
1505 // get the directory path
1506 s_path = p_demux->psz_path;
1507 if (s_path.at(s_path.length() - 1) == DIRECTORY_SEPARATOR)
1509 s_path = s_path.substr(0,s_path.length()-1);
1513 if (s_path.find_last_of(DIRECTORY_SEPARATOR) > 0)
1515 s_path = s_path.substr(0,s_path.find_last_of(DIRECTORY_SEPARATOR));
1519 DIR *p_src_dir = utf8_opendir(s_path.c_str());
1521 if (p_src_dir != NULL)
1524 while ((psz_file = utf8_readdir(p_src_dir)) != NULL)
1526 if (strlen(psz_file) > 4)
1528 s_filename = s_path + DIRECTORY_SEPARATOR + psz_file;
1531 if (!strcasecmp(s_filename.c_str(), p_demux->psz_path))
1533 if (!s_filename.compare(p_demux->psz_path))
1537 continue; // don't reuse the original opened file
1540 #if defined(__GNUC__) && (__GNUC__ < 3)
1541 if (!s_filename.compare("mkv", s_filename.length() - 3, 3) ||
1542 !s_filename.compare("mka", s_filename.length() - 3, 3))
1544 if (!s_filename.compare(s_filename.length() - 3, 3, "mkv") ||
1545 !s_filename.compare(s_filename.length() - 3, 3, "mka"))
1548 // test wether this file belongs to our family
1549 const uint8_t *p_peek;
1550 bool file_ok = false;
1551 stream_t *p_file_stream = stream_UrlNew(
1553 s_filename.c_str());
1554 /* peek the begining */
1555 if( p_file_stream &&
1556 stream_Peek( p_file_stream, &p_peek, 4 ) >= 4
1557 && p_peek[0] == 0x1a && p_peek[1] == 0x45 &&
1558 p_peek[2] == 0xdf && p_peek[3] == 0xa3 ) file_ok = true;
1562 vlc_stream_io_callback *p_file_io = new vlc_stream_io_callback( p_file_stream, VLC_TRUE );
1563 EbmlStream *p_estream = new EbmlStream(*p_file_io);
1565 p_stream = p_sys->AnalyseAllSegmentsFound( p_demux, p_estream );
1567 if ( p_stream == NULL )
1569 msg_Dbg( p_demux, "the file '%s' will not be used", s_filename.c_str() );
1575 p_stream->p_in = p_file_io;
1576 p_stream->p_es = p_estream;
1577 p_sys->streams.push_back( p_stream );
1582 if( p_file_stream ) {
1583 stream_Delete( p_file_stream );
1585 msg_Dbg( p_demux, "the file '%s' cannot be opened", s_filename.c_str() );
1591 closedir( p_src_dir );
1595 p_sys->PreloadFamily( *p_segment );
1598 p_sys->PreloadLinked( p_segment );
1600 if ( !p_sys->PreparePlayback( NULL ) )
1602 msg_Err( p_demux, "cannot use the segment" );
1606 p_sys->StartUiThread();
1612 return VLC_EGENERIC;
1615 /*****************************************************************************
1616 * Close: frees unused data
1617 *****************************************************************************/
1618 static void Close( vlc_object_t *p_this )
1620 demux_t *p_demux = (demux_t*)p_this;
1621 demux_sys_t *p_sys = p_demux->p_sys;
1626 /*****************************************************************************
1628 *****************************************************************************/
1629 static int Control( demux_t *p_demux, int i_query, va_list args )
1631 demux_sys_t *p_sys = p_demux->p_sys;
1638 input_attachment_t ***ppp_attach;
1644 case DEMUX_GET_ATTACHMENTS:
1645 ppp_attach = (input_attachment_t***)va_arg( args, input_attachment_t*** );
1646 pi_int = (int*)va_arg( args, int * );
1648 if( p_sys->stored_attachments.size() <= 0 )
1649 return VLC_EGENERIC;
1651 *pi_int = p_sys->stored_attachments.size();
1652 *ppp_attach = (input_attachment_t**)malloc( sizeof(input_attachment_t**) *
1653 p_sys->stored_attachments.size() );
1654 if( !(*ppp_attach) )
1656 for( i = 0; i < p_sys->stored_attachments.size(); i++ )
1658 attachment_c *a = p_sys->stored_attachments[i];
1659 (*ppp_attach)[i] = vlc_input_attachment_New( a->psz_file_name.c_str(), a->psz_mime_type.c_str(), NULL,
1660 a->p_data, a->i_size );
1664 case DEMUX_GET_META:
1665 p_meta = (vlc_meta_t*)va_arg( args, vlc_meta_t* );
1666 vlc_meta_Merge( p_meta, p_sys->meta );
1669 case DEMUX_GET_LENGTH:
1670 pi64 = (int64_t*)va_arg( args, int64_t * );
1671 if( p_sys->f_duration > 0.0 )
1673 *pi64 = (int64_t)(p_sys->f_duration * 1000);
1676 return VLC_EGENERIC;
1678 case DEMUX_GET_POSITION:
1679 pf = (double*)va_arg( args, double * );
1680 if ( p_sys->f_duration > 0.0 )
1681 *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);
1684 case DEMUX_SET_POSITION:
1685 f = (double)va_arg( args, double );
1686 Seek( p_demux, -1, f, NULL );
1689 case DEMUX_GET_TIME:
1690 pi64 = (int64_t*)va_arg( args, int64_t * );
1691 *pi64 = p_sys->i_pts;
1694 case DEMUX_GET_TITLE_INFO:
1695 if( p_sys->titles.size() )
1697 input_title_t ***ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
1698 int *pi_int = (int*)va_arg( args, int* );
1700 *pi_int = p_sys->titles.size();
1701 *ppp_title = (input_title_t**)malloc( sizeof( input_title_t**) * p_sys->titles.size() );
1703 for( size_t i = 0; i < p_sys->titles.size(); i++ )
1705 (*ppp_title)[i] = vlc_input_title_Duplicate( p_sys->titles[i] );
1710 return VLC_EGENERIC;
1712 case DEMUX_SET_TITLE:
1713 /* TODO handle editions as titles */
1714 i_idx = (int)va_arg( args, int );
1715 if( i_idx < p_sys->used_segments.size() )
1717 p_sys->JumpTo( *p_sys->used_segments[i_idx], NULL );
1720 return VLC_EGENERIC;
1722 case DEMUX_SET_SEEKPOINT:
1723 i_skp = (int)va_arg( args, int );
1725 // TODO change the way it works with the << & >> buttons on the UI (+1/-1 instead of a number)
1726 if( p_sys->titles.size() && i_skp < p_sys->titles[p_sys->i_current_title]->i_seekpoint)
1728 Seek( p_demux, (int64_t)p_sys->titles[p_sys->i_current_title]->seekpoint[i_skp]->i_time_offset, -1, NULL);
1729 p_demux->info.i_seekpoint |= INPUT_UPDATE_SEEKPOINT;
1730 p_demux->info.i_seekpoint = i_skp;
1733 return VLC_EGENERIC;
1735 case DEMUX_SET_TIME:
1738 return VLC_EGENERIC;
1742 #if LIBMATROSKA_VERSION >= 0x000800
1743 int matroska_segment_c::BlockGet( KaxBlock * & pp_block, KaxSimpleBlock * & pp_simpleblock, int64_t *pi_ref1, int64_t *pi_ref2, int64_t *pi_duration )
1745 int matroska_segment_c::BlockGet( KaxBlock * & pp_block, int64_t *pi_ref1, int64_t *pi_ref2, int64_t *pi_duration )
1748 #if LIBMATROSKA_VERSION >= 0x000800
1749 pp_simpleblock = NULL;
1757 EbmlElement *el = NULL;
1761 return VLC_EGENERIC;
1763 #if LIBMATROSKA_VERSION >= 0x000800
1764 if( pp_simpleblock != NULL || ((el = ep->Get()) == NULL && pp_block != NULL) )
1766 if( (el = ep->Get()) == NULL && pp_block != NULL )
1769 /* update the index */
1770 #define idx p_indexes[i_index - 1]
1771 if( i_index > 0 && idx.i_time == -1 )
1773 #if LIBMATROSKA_VERSION >= 0x000800
1774 if ( pp_simpleblock != NULL )
1775 idx.i_time = pp_simpleblock->GlobalTimecode() / (mtime_t)1000;
1778 idx.i_time = (*pp_block).GlobalTimecode() / (mtime_t)1000;
1779 idx.b_key = *pi_ref1 == 0 ? VLC_TRUE : VLC_FALSE;
1785 i_level = ep->GetLevel();
1794 msg_Warn( &sys.demuxer, "EOF" );
1795 return VLC_EGENERIC;
1802 if( MKV_IS_ID( el, KaxCluster ) )
1804 cluster = (KaxCluster*)el;
1805 i_cluster_pos = cluster->GetElementPosition();
1807 /* add it to the index */
1809 ( i_index > 0 && p_indexes[i_index - 1].i_position < (int64_t)cluster->GetElementPosition() ) )
1811 IndexAppendCluster( cluster );
1814 // reset silent tracks
1815 for (size_t i=0; i<tracks.size(); i++)
1817 tracks[i]->b_silent = VLC_FALSE;
1822 else if( MKV_IS_ID( el, KaxCues ) )
1824 msg_Warn( &sys.demuxer, "find KaxCues FIXME" );
1825 return VLC_EGENERIC;
1829 msg_Dbg( &sys.demuxer, "unknown (%s)", typeid( el ).name() );
1833 if( MKV_IS_ID( el, KaxClusterTimecode ) )
1835 KaxClusterTimecode &ctc = *(KaxClusterTimecode*)el;
1837 ctc.ReadData( es.I_O(), SCOPE_ALL_DATA );
1838 cluster->InitTimecode( uint64( ctc ), i_timescale );
1840 else if( MKV_IS_ID( el, KaxClusterSilentTracks ) )
1844 else if( MKV_IS_ID( el, KaxBlockGroup ) )
1846 i_block_pos = el->GetElementPosition();
1849 #if LIBMATROSKA_VERSION >= 0x000800
1850 else if( MKV_IS_ID( el, KaxSimpleBlock ) )
1852 pp_simpleblock = (KaxSimpleBlock*)el;
1854 pp_simpleblock->ReadData( es.I_O() );
1855 pp_simpleblock->SetParent( *cluster );
1860 if( MKV_IS_ID( el, KaxBlock ) )
1862 pp_block = (KaxBlock*)el;
1864 pp_block->ReadData( es.I_O() );
1865 pp_block->SetParent( *cluster );
1869 else if( MKV_IS_ID( el, KaxBlockDuration ) )
1871 KaxBlockDuration &dur = *(KaxBlockDuration*)el;
1873 dur.ReadData( es.I_O() );
1874 *pi_duration = uint64( dur );
1876 else if( MKV_IS_ID( el, KaxReferenceBlock ) )
1878 KaxReferenceBlock &ref = *(KaxReferenceBlock*)el;
1880 ref.ReadData( es.I_O() );
1883 *pi_ref1 = int64( ref ) * cluster->GlobalTimecodeScale();
1885 else if( *pi_ref2 == 0 )
1887 *pi_ref2 = int64( ref ) * cluster->GlobalTimecodeScale();
1890 else if( MKV_IS_ID( el, KaxClusterSilentTrackNumber ) )
1892 KaxClusterSilentTrackNumber &track_num = *(KaxClusterSilentTrackNumber*)el;
1893 track_num.ReadData( es.I_O() );
1895 for (size_t i=0; i<tracks.size(); i++)
1897 if ( tracks[i]->i_number == uint32(track_num))
1899 tracks[i]->b_silent = VLC_TRUE;
1906 msg_Err( &sys.demuxer, "invalid level = %d", i_level );
1907 return VLC_EGENERIC;
1912 static block_t *MemToBlock( demux_t *p_demux, uint8_t *p_mem, int i_mem, size_t offset)
1915 if( !(p_block = block_New( p_demux, i_mem + offset ) ) ) return NULL;
1916 memcpy( p_block->p_buffer + offset, p_mem, i_mem );
1917 //p_block->i_rate = p_input->stream.control.i_rate;
1921 #if LIBMATROSKA_VERSION >= 0x000800
1922 static void BlockDecode( demux_t *p_demux, KaxBlock *block, KaxSimpleBlock *simpleblock,
1923 mtime_t i_pts, mtime_t i_duration, bool f_mandatory )
1925 static void BlockDecode( demux_t *p_demux, KaxBlock *block, mtime_t i_pts,
1926 mtime_t i_duration, bool f_mandatory )
1929 demux_sys_t *p_sys = p_demux->p_sys;
1930 matroska_segment_c *p_segment = p_sys->p_current_segment->Segment();
1936 #define tk p_segment->tracks[i_track]
1937 for( i_track = 0; i_track < p_segment->tracks.size(); i_track++ )
1939 #if LIBMATROSKA_VERSION >= 0x000800
1940 if( (block != NULL && tk->i_number == block->TrackNum()) ||
1941 (simpleblock != NULL && tk->i_number == simpleblock->TrackNum()))
1943 if( tk->i_number == block->TrackNum() )
1950 if( i_track >= p_segment->tracks.size() )
1952 msg_Err( p_demux, "invalid track number" );
1955 if( tk->fmt.i_cat != NAV_ES && tk->p_es == NULL )
1957 msg_Err( p_demux, "unknown track number" );
1960 if( i_pts + i_duration < p_sys->i_start_pts && tk->fmt.i_cat == AUDIO_ES )
1962 return; /* discard audio packets that shouldn't be rendered */
1965 if ( tk->fmt.i_cat != NAV_ES )
1967 es_out_Control( p_demux->out, ES_OUT_GET_ES_STATE, tk->p_es, &b );
1971 tk->b_inited = VLC_FALSE;
1977 /* First send init data */
1978 if( !tk->b_inited && tk->i_data_init > 0 )
1982 msg_Dbg( p_demux, "sending header (%d bytes)", tk->i_data_init );
1983 p_init = MemToBlock( p_demux, tk->p_data_init, tk->i_data_init, 0 );
1984 if( p_init ) es_out_Send( p_demux->out, tk->p_es, p_init );
1986 tk->b_inited = VLC_TRUE;
1989 #if LIBMATROSKA_VERSION >= 0x000800
1991 (block != NULL && i < block->NumberFrames()) || (simpleblock != NULL && i < simpleblock->NumberFrames());
1994 for( i = 0; i < block->NumberFrames(); i++ )
1999 #if LIBMATROSKA_VERSION >= 0x000800
2000 if ( simpleblock != NULL )
2002 data = &simpleblock->GetBuffer(i);
2003 // condition when the DTS is correct (keyframe or B frame == NOT P frame)
2004 f_mandatory = simpleblock->IsDiscardable() || simpleblock->IsKeyframe();
2008 data = &block->GetBuffer(i);
2010 if( tk->i_compression_type == MATROSKA_COMPRESSION_HEADER && tk->p_compression_data != NULL )
2011 p_block = MemToBlock( p_demux, data->Buffer(), data->Size(), tk->p_compression_data->GetSize() );
2013 p_block = MemToBlock( p_demux, data->Buffer(), data->Size(), 0 );
2015 if( p_block == NULL )
2020 #if defined(HAVE_ZLIB_H)
2021 if( tk->i_compression_type == MATROSKA_COMPRESSION_ZLIB )
2023 p_block = block_zlib_decompress( VLC_OBJECT(p_demux), p_block );
2027 if( tk->i_compression_type == MATROSKA_COMPRESSION_HEADER )
2029 memcpy( p_block->p_buffer, tk->p_compression_data->GetBuffer(), tk->p_compression_data->GetSize() );
2032 if ( tk->fmt.i_cat == NAV_ES )
2034 // TODO handle the start/stop times of this packet
2035 if ( p_sys->b_ui_hooked )
2037 vlc_mutex_lock( &p_sys->p_ev->lock );
2038 memcpy( &p_sys->pci_packet, &p_block->p_buffer[1], sizeof(pci_t) );
2039 p_sys->SwapButtons();
2040 p_sys->b_pci_packet_set = true;
2041 vlc_mutex_unlock( &p_sys->p_ev->lock );
2042 block_Release( p_block );
2046 // correct timestamping when B frames are used
2047 if( tk->fmt.i_cat != VIDEO_ES )
2049 p_block->i_dts = p_block->i_pts = i_pts;
2053 if( !strcmp( tk->psz_codec, "V_MS/VFW/FOURCC" ) )
2055 // in VFW we have no idea about B frames
2057 p_block->i_dts = i_pts;
2061 p_block->i_pts = i_pts;
2063 p_block->i_dts = p_block->i_pts;
2065 p_block->i_dts = min( i_pts, tk->i_last_dts + (mtime_t)(tk->i_default_duration >> 10));
2066 p_sys->i_pts = p_block->i_dts;
2069 tk->i_last_dts = p_block->i_dts;
2072 msg_Dbg( p_demux, "block i_dts: "I64Fd" / i_pts: "I64Fd, p_block->i_dts, p_block->i_pts);
2074 if( strcmp( tk->psz_codec, "S_VOBSUB" ) )
2076 p_block->i_length = i_duration * 1000;
2079 es_out_Send( p_demux->out, tk->p_es, p_block );
2081 /* use time stamp only for first block */
2088 matroska_stream_c *demux_sys_t::AnalyseAllSegmentsFound( demux_t *p_demux, EbmlStream *p_estream, bool b_initial )
2090 int i_upper_lvl = 0;
2092 EbmlElement *p_l0, *p_l1, *p_l2;
2093 bool b_keep_stream = false, b_keep_segment;
2095 // verify the EBML Header
2096 p_l0 = p_estream->FindNextID(EbmlHead::ClassInfos, 0xFFFFFFFFL);
2099 msg_Err( p_demux, "No EBML header found" );
2103 // verify we can read this Segment, we only support Matroska version 1 for now
2104 p_l0->Read(*p_estream, EbmlHead::ClassInfos.Context, i_upper_lvl, p_l0, true);
2106 EDocType doc_type = GetChild<EDocType>(*static_cast<EbmlHead*>(p_l0));
2107 if (std::string(doc_type) != "matroska")
2109 msg_Err( p_demux, "Not a Matroska file : DocType = %s ", std::string(doc_type).c_str());
2113 EDocTypeReadVersion doc_read_version = GetChild<EDocTypeReadVersion>(*static_cast<EbmlHead*>(p_l0));
2114 #if LIBMATROSKA_VERSION >= 0x000800
2115 if (uint64(doc_read_version) > 2)
2117 msg_Err( p_demux, "This matroska file is needs version "I64Fd" and this VLC only supports version 1 & 2", uint64(doc_read_version));
2121 if (uint64(doc_read_version) != 1)
2123 msg_Err( p_demux, "This matroska file is needs version "I64Fd" and this VLC only supports version 1", uint64(doc_read_version));
2131 // find all segments in this file
2132 p_l0 = p_estream->FindNextID(KaxSegment::ClassInfos, 0xFFFFFFFFFLL);
2138 matroska_stream_c *p_stream1 = new matroska_stream_c( *this );
2142 if (EbmlId(*p_l0) == KaxSegment::ClassInfos.GlobalId)
2145 matroska_segment_c *p_segment1 = new matroska_segment_c( *this, *p_estream );
2146 b_keep_segment = b_initial;
2148 ep = new EbmlParser(p_estream, p_l0, &demuxer );
2149 p_segment1->ep = ep;
2150 p_segment1->segment = (KaxSegment*)p_l0;
2152 while ((p_l1 = ep->Get()))
2154 if (MKV_IS_ID(p_l1, KaxInfo))
2156 // find the families of this segment
2157 KaxInfo *p_info = static_cast<KaxInfo*>(p_l1);
2159 p_info->Read(*p_estream, KaxInfo::ClassInfos.Context, i_upper_lvl, p_l2, true);
2160 for( i = 0; i < p_info->ListSize(); i++ )
2162 EbmlElement *l = (*p_info)[i];
2164 if( MKV_IS_ID( l, KaxSegmentUID ) )
2166 KaxSegmentUID *p_uid = static_cast<KaxSegmentUID*>(l);
2167 b_keep_segment = (FindSegment( *p_uid ) == NULL);
2168 if ( !b_keep_segment )
2169 break; // this segment is already known
2170 opened_segments.push_back( p_segment1 );
2171 delete p_segment1->p_segment_uid;
2172 p_segment1->p_segment_uid = new KaxSegmentUID(*p_uid);
2174 else if( MKV_IS_ID( l, KaxPrevUID ) )
2176 p_segment1->p_prev_segment_uid = new KaxPrevUID( *static_cast<KaxPrevUID*>(l) );
2178 else if( MKV_IS_ID( l, KaxNextUID ) )
2180 p_segment1->p_next_segment_uid = new KaxNextUID( *static_cast<KaxNextUID*>(l) );
2182 else if( MKV_IS_ID( l, KaxSegmentFamily ) )
2184 KaxSegmentFamily *p_fam = new KaxSegmentFamily( *static_cast<KaxSegmentFamily*>(l) );
2185 p_segment1->families.push_back( p_fam );
2191 if ( b_keep_segment )
2193 b_keep_stream = true;
2194 p_stream1->segments.push_back( p_segment1 );
2198 p_segment1->segment = NULL;
2202 if (p_l0->IsFiniteSize() )
2204 p_l0->SkipData(*p_estream, KaxMatroska_Context);
2205 p_l0 = p_estream->FindNextID(KaxSegment::ClassInfos, 0xFFFFFFFFL);
2208 p_l0 = p_l0->SkipData(*p_estream, KaxSegment_Context);
2211 if ( !b_keep_stream )
2220 bool matroska_segment_c::Select( mtime_t i_start_time )
2225 msg_Dbg( &sys.demuxer, "found %d es", (int)tracks.size() );
2226 sys.b_pci_packet_set = false;
2228 for( i_track = 0; i_track < tracks.size(); i_track++ )
2230 if( tracks[i_track]->fmt.i_cat == UNKNOWN_ES )
2232 msg_Warn( &sys.demuxer, "invalid track[%d, n=%d]", (int)i_track, tracks[i_track]->i_number );
2233 tracks[i_track]->p_es = NULL;
2237 if( !strcmp( tracks[i_track]->psz_codec, "V_MS/VFW/FOURCC" ) )
2239 if( tracks[i_track]->i_extra_data < (int)sizeof( BITMAPINFOHEADER ) )
2241 msg_Err( &sys.demuxer, "missing/invalid BITMAPINFOHEADER" );
2242 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
2246 BITMAPINFOHEADER *p_bih = (BITMAPINFOHEADER*)tracks[i_track]->p_extra_data;
2248 tracks[i_track]->fmt.video.i_width = GetDWLE( &p_bih->biWidth );
2249 tracks[i_track]->fmt.video.i_height= GetDWLE( &p_bih->biHeight );
2250 tracks[i_track]->fmt.i_codec = GetFOURCC( &p_bih->biCompression );
2252 tracks[i_track]->fmt.i_extra = GetDWLE( &p_bih->biSize ) - sizeof( BITMAPINFOHEADER );
2253 if( tracks[i_track]->fmt.i_extra > 0 )
2255 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra );
2256 memcpy( tracks[i_track]->fmt.p_extra, &p_bih[1], tracks[i_track]->fmt.i_extra );
2260 else if( !strcmp( tracks[i_track]->psz_codec, "V_MPEG1" ) ||
2261 !strcmp( tracks[i_track]->psz_codec, "V_MPEG2" ) )
2263 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'm', 'p', 'g', 'v' );
2265 else if( !strncmp( tracks[i_track]->psz_codec, "V_THEORA", 8 ) )
2267 uint8_t *p_data = tracks[i_track]->p_extra_data;
2268 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 't', 'h', 'e', 'o' );
2269 if( tracks[i_track]->i_extra_data >= 4 ) {
2270 if( p_data[0] == 2 ) {
2272 int i_size1 = 0, i_size2 = 0;
2274 /* read size of first header packet */
2275 while( *p_data == 0xFF &&
2276 i < tracks[i_track]->i_extra_data )
2285 msg_Dbg( &sys.demuxer, "first theora header size %d", i_size1 );
2286 /* read size of second header packet */
2287 while( *p_data == 0xFF &&
2288 i < tracks[i_track]->i_extra_data )
2297 int i_size3 = tracks[i_track]->i_extra_data - i - i_size1
2299 msg_Dbg( &sys.demuxer, "second theora header size %d", i_size2 );
2300 msg_Dbg( &sys.demuxer, "third theora header size %d", i_size3 );
2301 tracks[i_track]->fmt.i_extra = i_size1 + i_size2 + i_size3
2303 if( i_size1 > 0 && i_size2 > 0 && i_size3 > 0 ) {
2304 tracks[i_track]->fmt.p_extra =
2305 malloc( tracks[i_track]->fmt.i_extra );
2306 uint8_t *p_out = (uint8_t*)tracks[i_track]->fmt.p_extra;
2307 *p_out++ = (i_size1>>8) & 0xFF;
2308 *p_out++ = i_size1 & 0xFF;
2309 memcpy( p_out, p_data, i_size1 );
2313 *p_out++ = (i_size2>>8) & 0xFF;
2314 *p_out++ = i_size2 & 0xFF;
2315 memcpy( p_out, p_data, i_size2 );
2319 *p_out++ = (i_size3>>8) & 0xFF;
2320 *p_out++ = i_size3 & 0xFF;
2321 memcpy( p_out, p_data, i_size3 );
2327 msg_Err( &sys.demuxer, "inconsistant theora extradata" );
2331 msg_Err( &sys.demuxer, "Wrong number of ogg packets with theora headers (%d)", p_data[0] + 1 );
2335 else if( !strncmp( tracks[i_track]->psz_codec, "V_MPEG4", 7 ) )
2337 if( !strcmp( tracks[i_track]->psz_codec, "V_MPEG4/MS/V3" ) )
2339 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'D', 'I', 'V', '3' );
2341 else if( !strncmp( tracks[i_track]->psz_codec, "V_MPEG4/ISO", 11 ) )
2343 /* A MPEG 4 codec, SP, ASP, AP or AVC */
2344 if( !strcmp( tracks[i_track]->psz_codec, "V_MPEG4/ISO/AVC" ) )
2345 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'a', 'v', 'c', '1' );
2347 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'm', 'p', '4', 'v' );
2348 tracks[i_track]->fmt.i_extra = tracks[i_track]->i_extra_data;
2349 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->i_extra_data );
2350 memcpy( tracks[i_track]->fmt.p_extra,tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data );
2353 else if( !strcmp( tracks[i_track]->psz_codec, "V_QUICKTIME" ) )
2355 MP4_Box_t *p_box = (MP4_Box_t*)malloc( sizeof( MP4_Box_t ) );
2356 stream_t *p_mp4_stream = stream_MemoryNew( VLC_OBJECT(&sys.demuxer),
2357 tracks[i_track]->p_extra_data,
2358 tracks[i_track]->i_extra_data,
2360 MP4_ReadBoxCommon( p_mp4_stream, p_box );
2361 MP4_ReadBox_sample_vide( p_mp4_stream, p_box );
2362 tracks[i_track]->fmt.i_codec = p_box->i_type;
2363 tracks[i_track]->fmt.video.i_width = p_box->data.p_sample_vide->i_width;
2364 tracks[i_track]->fmt.video.i_height = p_box->data.p_sample_vide->i_height;
2365 tracks[i_track]->fmt.i_extra = p_box->data.p_sample_vide->i_qt_image_description;
2366 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra );
2367 memcpy( tracks[i_track]->fmt.p_extra, p_box->data.p_sample_vide->p_qt_image_description, tracks[i_track]->fmt.i_extra );
2368 MP4_FreeBox_sample_vide( p_box );
2369 stream_Delete( p_mp4_stream );
2371 else if( !strcmp( tracks[i_track]->psz_codec, "A_MS/ACM" ) )
2373 if( tracks[i_track]->i_extra_data < (int)sizeof( WAVEFORMATEX ) )
2375 msg_Err( &sys.demuxer, "missing/invalid WAVEFORMATEX" );
2376 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
2380 WAVEFORMATEX *p_wf = (WAVEFORMATEX*)tracks[i_track]->p_extra_data;
2382 wf_tag_to_fourcc( GetWLE( &p_wf->wFormatTag ), &tracks[i_track]->fmt.i_codec, NULL );
2384 tracks[i_track]->fmt.audio.i_channels = GetWLE( &p_wf->nChannels );
2385 tracks[i_track]->fmt.audio.i_rate = GetDWLE( &p_wf->nSamplesPerSec );
2386 tracks[i_track]->fmt.i_bitrate = GetDWLE( &p_wf->nAvgBytesPerSec ) * 8;
2387 tracks[i_track]->fmt.audio.i_blockalign = GetWLE( &p_wf->nBlockAlign );;
2388 tracks[i_track]->fmt.audio.i_bitspersample = GetWLE( &p_wf->wBitsPerSample );
2390 tracks[i_track]->fmt.i_extra = GetWLE( &p_wf->cbSize );
2391 if( tracks[i_track]->fmt.i_extra > 0 )
2393 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra );
2394 memcpy( tracks[i_track]->fmt.p_extra, &p_wf[1], tracks[i_track]->fmt.i_extra );
2398 else if( !strcmp( tracks[i_track]->psz_codec, "A_MPEG/L3" ) ||
2399 !strcmp( tracks[i_track]->psz_codec, "A_MPEG/L2" ) ||
2400 !strcmp( tracks[i_track]->psz_codec, "A_MPEG/L1" ) )
2402 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'm', 'p', 'g', 'a' );
2404 else if( !strcmp( tracks[i_track]->psz_codec, "A_AC3" ) )
2406 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'a', '5', '2', ' ' );
2408 else if( !strcmp( tracks[i_track]->psz_codec, "A_DTS" ) )
2410 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'd', 't', 's', ' ' );
2412 else if( !strcmp( tracks[i_track]->psz_codec, "A_FLAC" ) )
2414 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'f', 'l', 'a', 'c' );
2415 tracks[i_track]->fmt.i_extra = tracks[i_track]->i_extra_data;
2416 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->i_extra_data );
2417 memcpy( tracks[i_track]->fmt.p_extra,tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data );
2419 else if( !strcmp( tracks[i_track]->psz_codec, "A_VORBIS" ) )
2421 int i, i_offset = 1, i_size[3], i_extra;
2424 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'v', 'o', 'r', 'b' );
2426 /* Split the 3 headers */
2427 if( tracks[i_track]->p_extra_data[0] != 0x02 )
2428 msg_Err( &sys.demuxer, "invalid vorbis header" );
2430 for( i = 0; i < 2; i++ )
2433 while( i_offset < tracks[i_track]->i_extra_data )
2435 i_size[i] += tracks[i_track]->p_extra_data[i_offset];
2436 if( tracks[i_track]->p_extra_data[i_offset++] != 0xff ) break;
2440 i_size[0] = __MIN(i_size[0], tracks[i_track]->i_extra_data - i_offset);
2441 i_size[1] = __MIN(i_size[1], tracks[i_track]->i_extra_data -i_offset -i_size[0]);
2442 i_size[2] = tracks[i_track]->i_extra_data - i_offset - i_size[0] - i_size[1];
2444 tracks[i_track]->fmt.i_extra = 3 * 2 + i_size[0] + i_size[1] + i_size[2];
2445 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra );
2446 p_extra = (uint8_t *)tracks[i_track]->fmt.p_extra; i_extra = 0;
2447 for( i = 0; i < 3; i++ )
2449 *(p_extra++) = i_size[i] >> 8;
2450 *(p_extra++) = i_size[i] & 0xFF;
2451 memcpy( p_extra, tracks[i_track]->p_extra_data + i_offset + i_extra,
2453 p_extra += i_size[i];
2454 i_extra += i_size[i];
2457 else if( !strncmp( tracks[i_track]->psz_codec, "A_AAC/MPEG2/", strlen( "A_AAC/MPEG2/" ) ) ||
2458 !strncmp( tracks[i_track]->psz_codec, "A_AAC/MPEG4/", strlen( "A_AAC/MPEG4/" ) ) )
2460 int i_profile, i_srate, sbr = 0;
2461 static unsigned int i_sample_rates[] =
2463 96000, 88200, 64000, 48000, 44100, 32000, 24000, 22050,
2464 16000, 12000, 11025, 8000, 7350, 0, 0, 0
2467 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'm', 'p', '4', 'a' );
2468 /* create data for faad (MP4DecSpecificDescrTag)*/
2470 if( !strcmp( &tracks[i_track]->psz_codec[12], "MAIN" ) )
2474 else if( !strcmp( &tracks[i_track]->psz_codec[12], "LC" ) )
2478 else if( !strcmp( &tracks[i_track]->psz_codec[12], "SSR" ) )
2482 else if( !strcmp( &tracks[i_track]->psz_codec[12], "LC/SBR" ) )
2492 for( i_srate = 0; i_srate < 13; i_srate++ )
2494 if( i_sample_rates[i_srate] == tracks[i_track]->i_original_rate )
2499 msg_Dbg( &sys.demuxer, "profile=%d srate=%d", i_profile, i_srate );
2501 tracks[i_track]->fmt.i_extra = sbr ? 5 : 2;
2502 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra );
2503 ((uint8_t*)tracks[i_track]->fmt.p_extra)[0] = ((i_profile + 1) << 3) | ((i_srate&0xe) >> 1);
2504 ((uint8_t*)tracks[i_track]->fmt.p_extra)[1] = ((i_srate & 0x1) << 7) | (tracks[i_track]->fmt.audio.i_channels << 3);
2507 int syncExtensionType = 0x2B7;
2509 for (iDSRI=0; iDSRI<13; iDSRI++)
2510 if( i_sample_rates[iDSRI] == tracks[i_track]->fmt.audio.i_rate )
2512 ((uint8_t*)tracks[i_track]->fmt.p_extra)[2] = (syncExtensionType >> 3) & 0xFF;
2513 ((uint8_t*)tracks[i_track]->fmt.p_extra)[3] = ((syncExtensionType & 0x7) << 5) | 5;
2514 ((uint8_t*)tracks[i_track]->fmt.p_extra)[4] = ((1 & 0x1) << 7) | (iDSRI << 3);
2517 else if( !strcmp( tracks[i_track]->psz_codec, "A_AAC" ) )
2519 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'm', 'p', '4', 'a' );
2520 tracks[i_track]->fmt.i_extra = tracks[i_track]->i_extra_data;
2521 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->i_extra_data );
2522 memcpy( tracks[i_track]->fmt.p_extra, tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data );
2524 else if( !strcmp( tracks[i_track]->psz_codec, "A_WAVPACK4" ) )
2526 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'W', 'V', 'P', 'K' );
2527 tracks[i_track]->fmt.i_extra = tracks[i_track]->i_extra_data;
2528 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->i_extra_data );
2529 memcpy( tracks[i_track]->fmt.p_extra, tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data );
2531 else if( !strcmp( tracks[i_track]->psz_codec, "A_TTA1" ) )
2533 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'T', 'T', 'A', '1' );
2534 tracks[i_track]->fmt.i_extra = tracks[i_track]->i_extra_data;
2535 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->i_extra_data );
2536 memcpy( tracks[i_track]->fmt.p_extra, tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data );
2538 else if( !strcmp( tracks[i_track]->psz_codec, "A_PCM/INT/BIG" ) ||
2539 !strcmp( tracks[i_track]->psz_codec, "A_PCM/INT/LIT" ) ||
2540 !strcmp( tracks[i_track]->psz_codec, "A_PCM/FLOAT/IEEE" ) )
2542 if( !strcmp( tracks[i_track]->psz_codec, "A_PCM/INT/BIG" ) )
2544 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 't', 'w', 'o', 's' );
2548 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'a', 'r', 'a', 'w' );
2550 tracks[i_track]->fmt.audio.i_blockalign = ( tracks[i_track]->fmt.audio.i_bitspersample + 7 ) / 8 * tracks[i_track]->fmt.audio.i_channels;
2552 else if( !strcmp( tracks[i_track]->psz_codec, "S_TEXT/UTF8" ) )
2554 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 's', 'u', 'b', 't' );
2555 tracks[i_track]->fmt.subs.psz_encoding = strdup( "UTF-8" );
2557 else if( !strcmp( tracks[i_track]->psz_codec, "S_TEXT/USF" ) )
2559 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'u', 's', 'f', ' ' );
2560 tracks[i_track]->fmt.subs.psz_encoding = strdup( "UTF-8" );
2561 if( tracks[i_track]->i_extra_data )
2563 tracks[i_track]->fmt.i_extra = tracks[i_track]->i_extra_data;
2564 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->i_extra_data );
2565 memcpy( tracks[i_track]->fmt.p_extra, tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data );
2568 else if( !strcmp( tracks[i_track]->psz_codec, "S_TEXT/SSA" ) ||
2569 !strcmp( tracks[i_track]->psz_codec, "S_TEXT/ASS" ) ||
2570 !strcmp( tracks[i_track]->psz_codec, "S_SSA" ) ||
2571 !strcmp( tracks[i_track]->psz_codec, "S_ASS" ))
2573 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 's', 's', 'a', ' ' );
2574 tracks[i_track]->fmt.subs.psz_encoding = strdup( "UTF-8" );
2575 if( tracks[i_track]->i_extra_data )
2577 tracks[i_track]->fmt.i_extra = tracks[i_track]->i_extra_data;
2578 tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->i_extra_data );
2579 memcpy( tracks[i_track]->fmt.p_extra, tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data );
2582 else if( !strcmp( tracks[i_track]->psz_codec, "S_VOBSUB" ) )
2584 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 's','p','u',' ' );
2585 if( tracks[i_track]->i_extra_data )
2588 char *p_buf = (char *)malloc( tracks[i_track]->i_extra_data + 1);
2589 memcpy( p_buf, tracks[i_track]->p_extra_data , tracks[i_track]->i_extra_data );
2590 p_buf[tracks[i_track]->i_extra_data] = '\0';
2592 p_start = strstr( p_buf, "size:" );
2593 if( sscanf( p_start, "size: %dx%d",
2594 &tracks[i_track]->fmt.subs.spu.i_original_frame_width, &tracks[i_track]->fmt.subs.spu.i_original_frame_height ) == 2 )
2596 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 );
2600 msg_Warn( &sys.demuxer, "reading original frame size for vobsub failed" );
2605 else if( !strcmp( tracks[i_track]->psz_codec, "B_VOBBTN" ) )
2607 tracks[i_track]->fmt.i_cat = NAV_ES;
2612 msg_Err( &sys.demuxer, "unknow codec id=`%s'", tracks[i_track]->psz_codec );
2613 tracks[i_track]->fmt.i_codec = VLC_FOURCC( 'u', 'n', 'd', 'f' );
2615 if( tracks[i_track]->b_default )
2617 tracks[i_track]->fmt.i_priority = 1000;
2620 tracks[i_track]->p_es = es_out_Add( sys.demuxer.out, &tracks[i_track]->fmt );
2622 /* Turn on a subtitles track if it has been flagged as default -
2623 * but only do this if no subtitles track has already been engaged,
2624 * either by an earlier 'default track' (??) or by default
2625 * language choice behaviour.
2627 if( tracks[i_track]->b_default )
2629 es_out_Control( sys.demuxer.out,
2631 tracks[i_track]->p_es );
2634 es_out_Control( sys.demuxer.out, ES_OUT_SET_NEXT_DISPLAY_TIME, tracks[i_track]->p_es, i_start_time );
2637 sys.i_start_pts = i_start_time;
2638 // reset the stream reading to the first cluster of the segment used
2639 es.I_O().setFilePointer( i_start_pos );
2642 ep = new EbmlParser( &es, segment, &sys.demuxer );
2647 void demux_sys_t::StartUiThread()
2651 msg_Dbg( &demuxer, "Starting the UI Hook" );
2653 /* FIXME hack hack hack hack FIXME */
2654 /* Get p_input and create variable */
2655 p_input = (input_thread_t *) vlc_object_find( &demuxer, VLC_OBJECT_INPUT, FIND_PARENT );
2656 var_Create( p_input, "x-start", VLC_VAR_INTEGER );
2657 var_Create( p_input, "y-start", VLC_VAR_INTEGER );
2658 var_Create( p_input, "x-end", VLC_VAR_INTEGER );
2659 var_Create( p_input, "y-end", VLC_VAR_INTEGER );
2660 var_Create( p_input, "color", VLC_VAR_ADDRESS );
2661 var_Create( p_input, "menu-palette", VLC_VAR_ADDRESS );
2662 var_Create( p_input, "highlight", VLC_VAR_BOOL );
2663 var_Create( p_input, "highlight-mutex", VLC_VAR_MUTEX );
2665 /* Now create our event thread catcher */
2666 p_ev = (event_thread_t *) vlc_object_create( &demuxer, sizeof( event_thread_t ) );
2667 p_ev->p_demux = &demuxer;
2668 p_ev->b_die = VLC_FALSE;
2669 vlc_mutex_init( p_ev, &p_ev->lock );
2670 vlc_thread_create( p_ev, "mkv event thread handler", EventThread,
2671 VLC_THREAD_PRIORITY_LOW, VLC_FALSE );
2675 void demux_sys_t::StopUiThread()
2679 vlc_object_kill( p_ev );
2680 vlc_thread_join( p_ev );
2681 vlc_object_destroy( p_ev );
2685 var_Destroy( p_input, "highlight-mutex" );
2686 var_Destroy( p_input, "highlight" );
2687 var_Destroy( p_input, "x-start" );
2688 var_Destroy( p_input, "x-end" );
2689 var_Destroy( p_input, "y-start" );
2690 var_Destroy( p_input, "y-end" );
2691 var_Destroy( p_input, "color" );
2692 var_Destroy( p_input, "menu-palette" );
2694 vlc_object_release( p_input );
2696 msg_Dbg( &demuxer, "Stopping the UI Hook" );
2698 b_ui_hooked = false;
2701 int demux_sys_t::EventMouse( vlc_object_t *p_this, char const *psz_var,
2702 vlc_value_t oldval, vlc_value_t newval, void *p_data )
2704 event_thread_t *p_ev = (event_thread_t *) p_data;
2705 vlc_mutex_lock( &p_ev->lock );
2706 if( psz_var[6] == 'c' )
2708 p_ev->b_clicked = VLC_TRUE;
2709 msg_Dbg( p_this, "Event Mouse: clicked");
2711 else if( psz_var[6] == 'm' )
2712 p_ev->b_moved = VLC_TRUE;
2713 vlc_mutex_unlock( &p_ev->lock );
2718 int demux_sys_t::EventKey( vlc_object_t *p_this, char const *psz_var,
2719 vlc_value_t oldval, vlc_value_t newval, void *p_data )
2721 event_thread_t *p_ev = (event_thread_t *) p_data;
2722 vlc_mutex_lock( &p_ev->lock );
2723 p_ev->b_key = VLC_TRUE;
2724 vlc_mutex_unlock( &p_ev->lock );
2725 msg_Dbg( p_this, "Event Key");
2730 int demux_sys_t::EventThread( vlc_object_t *p_this )
2732 event_thread_t *p_ev = (event_thread_t*)p_this;
2733 demux_sys_t *p_sys = p_ev->p_demux->p_sys;
2734 vlc_object_t *p_vout = NULL;
2736 p_ev->b_moved = VLC_FALSE;
2737 p_ev->b_clicked = VLC_FALSE;
2738 p_ev->b_key = VLC_FALSE;
2740 /* catch all key event */
2741 var_AddCallback( p_ev->p_libvlc, "key-pressed", EventKey, p_ev );
2744 while( !p_ev->b_die )
2746 if ( !p_sys->b_pci_packet_set )
2753 vlc_bool_t b_activated = VLC_FALSE;
2759 struct libvlc_int_t::hotkey *p_hotkeys = p_ev->p_libvlc->p_hotkeys;
2760 int i, i_action = -1;
2762 msg_Dbg( p_ev->p_demux, "Handle Key Event");
2764 vlc_mutex_lock( &p_ev->lock );
2766 pci_t *pci = (pci_t *) &p_sys->pci_packet;
2768 var_Get( p_ev->p_libvlc, "key-pressed", &valk );
2769 for( i = 0; p_hotkeys[i].psz_action != NULL; i++ )
2771 if( p_hotkeys[i].i_key == valk.i_int )
2773 i_action = p_hotkeys[i].i_action;
2777 uint16 i_curr_button = p_sys->dvd_interpretor.GetSPRM( 0x88 );
2781 case ACTIONID_NAV_LEFT:
2782 if ( i_curr_button > 0 && i_curr_button <= pci->hli.hl_gi.btn_ns )
2784 btni_t *p_button_ptr = &(pci->hli.btnit[i_curr_button-1]);
2785 if ( p_button_ptr->left > 0 && p_button_ptr->left <= pci->hli.hl_gi.btn_ns )
2787 i_curr_button = p_button_ptr->left;
2788 p_sys->dvd_interpretor.SetSPRM( 0x88, i_curr_button );
2789 btni_t button_ptr = pci->hli.btnit[i_curr_button-1];
2790 if ( button_ptr.auto_action_mode )
2792 vlc_mutex_unlock( &p_ev->lock );
2793 vlc_mutex_lock( &p_sys->lock_demuxer );
2795 // process the button action
2796 p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 );
2798 vlc_mutex_unlock( &p_sys->lock_demuxer );
2799 vlc_mutex_lock( &p_ev->lock );
2804 case ACTIONID_NAV_RIGHT:
2805 if ( i_curr_button > 0 && i_curr_button <= pci->hli.hl_gi.btn_ns )
2807 btni_t *p_button_ptr = &(pci->hli.btnit[i_curr_button-1]);
2808 if ( p_button_ptr->right > 0 && p_button_ptr->right <= pci->hli.hl_gi.btn_ns )
2810 i_curr_button = p_button_ptr->right;
2811 p_sys->dvd_interpretor.SetSPRM( 0x88, i_curr_button );
2812 btni_t button_ptr = pci->hli.btnit[i_curr_button-1];
2813 if ( button_ptr.auto_action_mode )
2815 vlc_mutex_unlock( &p_ev->lock );
2816 vlc_mutex_lock( &p_sys->lock_demuxer );
2818 // process the button action
2819 p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 );
2821 vlc_mutex_unlock( &p_sys->lock_demuxer );
2822 vlc_mutex_lock( &p_ev->lock );
2827 case ACTIONID_NAV_UP:
2828 if ( i_curr_button > 0 && i_curr_button <= pci->hli.hl_gi.btn_ns )
2830 btni_t *p_button_ptr = &(pci->hli.btnit[i_curr_button-1]);
2831 if ( p_button_ptr->up > 0 && p_button_ptr->up <= pci->hli.hl_gi.btn_ns )
2833 i_curr_button = p_button_ptr->up;
2834 p_sys->dvd_interpretor.SetSPRM( 0x88, i_curr_button );
2835 btni_t button_ptr = pci->hli.btnit[i_curr_button-1];
2836 if ( button_ptr.auto_action_mode )
2838 vlc_mutex_unlock( &p_ev->lock );
2839 vlc_mutex_lock( &p_sys->lock_demuxer );
2841 // process the button action
2842 p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 );
2844 vlc_mutex_unlock( &p_sys->lock_demuxer );
2845 vlc_mutex_lock( &p_ev->lock );
2850 case ACTIONID_NAV_DOWN:
2851 if ( i_curr_button > 0 && i_curr_button <= pci->hli.hl_gi.btn_ns )
2853 btni_t *p_button_ptr = &(pci->hli.btnit[i_curr_button-1]);
2854 if ( p_button_ptr->down > 0 && p_button_ptr->down <= pci->hli.hl_gi.btn_ns )
2856 i_curr_button = p_button_ptr->down;
2857 p_sys->dvd_interpretor.SetSPRM( 0x88, i_curr_button );
2858 btni_t button_ptr = pci->hli.btnit[i_curr_button-1];
2859 if ( button_ptr.auto_action_mode )
2861 vlc_mutex_unlock( &p_ev->lock );
2862 vlc_mutex_lock( &p_sys->lock_demuxer );
2864 // process the button action
2865 p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 );
2867 vlc_mutex_unlock( &p_sys->lock_demuxer );
2868 vlc_mutex_lock( &p_ev->lock );
2873 case ACTIONID_NAV_ACTIVATE:
2874 b_activated = VLC_TRUE;
2876 if ( i_curr_button > 0 && i_curr_button <= pci->hli.hl_gi.btn_ns )
2878 btni_t button_ptr = pci->hli.btnit[i_curr_button-1];
2880 vlc_mutex_unlock( &p_ev->lock );
2881 vlc_mutex_lock( &p_sys->lock_demuxer );
2883 // process the button action
2884 p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 );
2886 vlc_mutex_unlock( &p_sys->lock_demuxer );
2887 vlc_mutex_lock( &p_ev->lock );
2893 p_ev->b_key = VLC_FALSE;
2894 vlc_mutex_unlock( &p_ev->lock );
2898 if( p_vout && ( p_ev->b_moved || p_ev->b_clicked ) )
2900 vlc_value_t valx, valy;
2902 vlc_mutex_lock( &p_ev->lock );
2903 pci_t *pci = (pci_t *) &p_sys->pci_packet;
2904 var_Get( p_vout, "mouse-x", &valx );
2905 var_Get( p_vout, "mouse-y", &valy );
2907 if( p_ev->b_clicked )
2910 int32_t best,dist,d;
2911 int32_t mx,my,dx,dy;
2913 msg_Dbg( p_ev->p_demux, "Handle Mouse Event: Mouse clicked x(%d)*y(%d)", (unsigned)valx.i_int, (unsigned)valy.i_int);
2915 b_activated = VLC_TRUE;
2916 // get current button
2918 dist = 0x08000000; /* >> than (720*720)+(567*567); */
2919 for(button = 1; button <= pci->hli.hl_gi.btn_ns; button++)
2921 btni_t *button_ptr = &(pci->hli.btnit[button-1]);
2923 if(((unsigned)valx.i_int >= button_ptr->x_start)
2924 && ((unsigned)valx.i_int <= button_ptr->x_end)
2925 && ((unsigned)valy.i_int >= button_ptr->y_start)
2926 && ((unsigned)valy.i_int <= button_ptr->y_end))
2928 mx = (button_ptr->x_start + button_ptr->x_end)/2;
2929 my = (button_ptr->y_start + button_ptr->y_end)/2;
2930 dx = mx - valx.i_int;
2931 dy = my - valy.i_int;
2932 d = (dx*dx) + (dy*dy);
2933 /* If the mouse is within the button and the mouse is closer
2934 * to the center of this button then it is the best choice. */
2944 btni_t button_ptr = pci->hli.btnit[best-1];
2945 uint16 i_curr_button = p_sys->dvd_interpretor.GetSPRM( 0x88 );
2947 msg_Dbg( &p_sys->demuxer, "Clicked button %d", best );
2948 vlc_mutex_unlock( &p_ev->lock );
2949 vlc_mutex_lock( &p_sys->lock_demuxer );
2951 // process the button action
2952 p_sys->dvd_interpretor.SetSPRM( 0x88, best );
2953 p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 );
2955 msg_Dbg( &p_sys->demuxer, "Processed button %d", best );
2957 // select new button
2958 if ( best != i_curr_button )
2962 if( var_Get( p_sys->p_input, "highlight-mutex", &val ) == VLC_SUCCESS )
2964 vlc_mutex_t *p_mutex = (vlc_mutex_t *) val.p_address;
2967 if(button_ptr.btn_coln != 0) {
2968 i_palette = pci->hli.btn_colit.btn_coli[button_ptr.btn_coln-1][1];
2973 for( int i = 0; i < 4; i++ )
2975 uint32_t i_yuv = 0xFF;//p_sys->clut[(hl.palette>>(16+i*4))&0x0f];
2976 uint8_t i_alpha = (i_palette>>(i*4))&0x0f;
2977 i_alpha = i_alpha == 0xf ? 0xff : i_alpha << 4;
2979 p_sys->palette[i][0] = (i_yuv >> 16) & 0xff;
2980 p_sys->palette[i][1] = (i_yuv >> 0) & 0xff;
2981 p_sys->palette[i][2] = (i_yuv >> 8) & 0xff;
2982 p_sys->palette[i][3] = i_alpha;
2985 vlc_mutex_lock( p_mutex );
2986 val.i_int = button_ptr.x_start; var_Set( p_sys->p_input, "x-start", val );
2987 val.i_int = button_ptr.x_end; var_Set( p_sys->p_input, "x-end", val );
2988 val.i_int = button_ptr.y_start; var_Set( p_sys->p_input, "y-start", val );
2989 val.i_int = button_ptr.y_end; var_Set( p_sys->p_input, "y-end", val );
2991 val.p_address = (void *)p_sys->palette;
2992 var_Set( p_sys->p_input, "menu-palette", val );
2994 val.b_bool = VLC_TRUE; var_Set( p_sys->p_input, "highlight", val );
2995 vlc_mutex_unlock( p_mutex );
2998 vlc_mutex_unlock( &p_sys->lock_demuxer );
2999 vlc_mutex_lock( &p_ev->lock );
3002 else if( p_ev->b_moved )
3004 // dvdnav_mouse_select( NULL, pci, valx.i_int, valy.i_int );
3007 p_ev->b_moved = VLC_FALSE;
3008 p_ev->b_clicked = VLC_FALSE;
3009 vlc_mutex_unlock( &p_ev->lock );
3013 if( p_vout && p_vout->b_die )
3015 var_DelCallback( p_vout, "mouse-moved", EventMouse, p_ev );
3016 var_DelCallback( p_vout, "mouse-clicked", EventMouse, p_ev );
3017 vlc_object_release( p_vout );
3021 else if( p_vout == NULL )
3023 p_vout = (vlc_object_t*) vlc_object_find( p_sys->p_input, VLC_OBJECT_VOUT,
3027 var_AddCallback( p_vout, "mouse-moved", EventMouse, p_ev );
3028 var_AddCallback( p_vout, "mouse-clicked", EventMouse, p_ev );
3032 /* Wait a bit, 10ms */
3036 /* Release callback */
3039 var_DelCallback( p_vout, "mouse-moved", EventMouse, p_ev );
3040 var_DelCallback( p_vout, "mouse-clicked", EventMouse, p_ev );
3041 vlc_object_release( p_vout );
3043 var_DelCallback( p_ev->p_libvlc, "key-pressed", EventKey, p_ev );
3045 vlc_mutex_destroy( &p_ev->lock );
3050 void matroska_segment_c::UnSelect( )
3054 for( i_track = 0; i_track < tracks.size(); i_track++ )
3056 if ( tracks[i_track]->p_es != NULL )
3058 // es_format_Clean( &tracks[i_track]->fmt );
3059 es_out_Del( sys.demuxer.out, tracks[i_track]->p_es );
3060 tracks[i_track]->p_es = NULL;
3067 void virtual_segment_c::PrepareChapters( )
3069 if ( linked_segments.size() == 0 )
3072 // !!! should be called only once !!!
3073 matroska_segment_c *p_segment;
3076 // copy editions from the first segment
3077 p_segment = linked_segments[0];
3078 p_editions = &p_segment->stored_editions;
3080 for ( i=1 ; i<linked_segments.size(); i++ )
3082 p_segment = linked_segments[i];
3083 // FIXME assume we have the same editions in all segments
3084 for (j=0; j<p_segment->stored_editions.size(); j++)
3085 (*p_editions)[j]->Append( *p_segment->stored_editions[j] );
3089 std::string chapter_edition_c::GetMainName() const
3091 if ( sub_chapters.size() )
3093 return sub_chapters[0]->GetCodecName( true );
3098 int chapter_item_c::PublishChapters( input_title_t & title, int & i_user_chapters, int i_level )
3100 // add support for meta-elements from codec like DVD Titles
3101 if ( !b_display_seekpoint || psz_name == "" )
3103 psz_name = GetCodecName();
3104 if ( psz_name != "" )
3105 b_display_seekpoint = true;
3108 if (b_display_seekpoint)
3110 seekpoint_t *sk = vlc_seekpoint_New();
3112 sk->i_level = i_level;
3113 sk->i_time_offset = i_start_time;
3114 sk->psz_name = strdup( psz_name.c_str() );
3116 // A start time of '0' is ok. A missing ChapterTime element is ok, too, because '0' is its default value.
3117 title.i_seekpoint++;
3118 title.seekpoint = (seekpoint_t**)realloc( title.seekpoint, title.i_seekpoint * sizeof( seekpoint_t* ) );
3119 title.seekpoint[title.i_seekpoint-1] = sk;
3121 if ( b_user_display )
3125 for ( size_t i=0; i<sub_chapters.size() ; i++)
3127 sub_chapters[i]->PublishChapters( title, i_user_chapters, i_level+1 );
3130 i_seekpoint_num = i_user_chapters;
3132 return i_user_chapters;
3135 bool virtual_segment_c::UpdateCurrentToChapter( demux_t & demux )
3137 demux_sys_t & sys = *demux.p_sys;
3138 chapter_item_c *psz_curr_chapter;
3139 bool b_has_seeked = false;
3141 /* update current chapter/seekpoint */
3142 if ( p_editions->size() )
3144 /* 1st, we need to know in which chapter we are */
3145 psz_curr_chapter = (*p_editions)[i_current_edition]->FindTimecode( sys.i_pts, psz_current_chapter );
3147 /* we have moved to a new chapter */
3148 if (psz_curr_chapter != NULL && psz_current_chapter != psz_curr_chapter)
3150 if ( (*p_editions)[i_current_edition]->b_ordered )
3152 // Leave/Enter up to the link point
3153 b_has_seeked = psz_curr_chapter->EnterAndLeave( psz_current_chapter );
3154 if ( !b_has_seeked )
3156 // only physically seek if necessary
3157 if ( psz_current_chapter == NULL || (psz_current_chapter->i_end_time != psz_curr_chapter->i_start_time) )
3158 Seek( demux, sys.i_pts, 0, psz_curr_chapter );
3162 if ( !b_has_seeked )
3164 psz_current_chapter = psz_curr_chapter;
3165 if ( psz_curr_chapter->i_seekpoint_num > 0 )
3167 demux.info.i_update |= INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT;
3168 demux.info.i_title = sys.i_current_title = i_sys_title;
3169 demux.info.i_seekpoint = psz_curr_chapter->i_seekpoint_num - 1;
3175 else if (psz_curr_chapter == NULL)
3177 // out of the scope of the data described by chapters, leave the edition
3178 if ( (*p_editions)[i_current_edition]->b_ordered && psz_current_chapter != NULL )
3180 if ( !(*p_editions)[i_current_edition]->EnterAndLeave( psz_current_chapter, false ) )
3181 psz_current_chapter = NULL;
3190 chapter_item_c *virtual_segment_c::BrowseCodecPrivate( unsigned int codec_id,
3191 bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ),
3192 const void *p_cookie,
3193 size_t i_cookie_size )
3195 // FIXME don't assume it is the first edition
3196 std::vector<chapter_edition_c*>::iterator index = p_editions->begin();
3197 if ( index != p_editions->end() )
3199 chapter_item_c *p_result = (*index)->BrowseCodecPrivate( codec_id, match, p_cookie, i_cookie_size );
3200 if ( p_result != NULL )
3206 chapter_item_c *virtual_segment_c::FindChapter( int64_t i_find_uid )
3208 // FIXME don't assume it is the first edition
3209 std::vector<chapter_edition_c*>::iterator index = p_editions->begin();
3210 if ( index != p_editions->end() )
3212 chapter_item_c *p_result = (*index)->FindChapter( i_find_uid );
3213 if ( p_result != NULL )
3219 chapter_item_c *chapter_item_c::BrowseCodecPrivate( unsigned int codec_id,
3220 bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ),
3221 const void *p_cookie,
3222 size_t i_cookie_size )
3225 std::vector<chapter_codec_cmds_c*>::const_iterator index = codecs.begin();
3226 while ( index != codecs.end() )
3228 if ( match( **index ,p_cookie, i_cookie_size ) )
3234 chapter_item_c *p_result = NULL;
3235 std::vector<chapter_item_c*>::const_iterator index2 = sub_chapters.begin();
3236 while ( index2 != sub_chapters.end() )
3238 p_result = (*index2)->BrowseCodecPrivate( codec_id, match, p_cookie, i_cookie_size );
3239 if ( p_result != NULL )
3247 void chapter_item_c::Append( const chapter_item_c & chapter )
3249 // we are appending content for the same chapter UID
3251 chapter_item_c *p_chapter;
3253 for ( i=0; i<chapter.sub_chapters.size(); i++ )
3255 p_chapter = FindChapter( chapter.sub_chapters[i]->i_uid );
3256 if ( p_chapter != NULL )
3258 p_chapter->Append( *chapter.sub_chapters[i] );
3262 sub_chapters.push_back( chapter.sub_chapters[i] );
3266 i_user_start_time = min( i_user_start_time, chapter.i_user_start_time );
3267 i_user_end_time = max( i_user_end_time, chapter.i_user_end_time );
3270 chapter_item_c * chapter_item_c::FindChapter( int64_t i_find_uid )
3273 chapter_item_c *p_result = NULL;
3275 if ( i_uid == i_find_uid )
3278 for ( i=0; i<sub_chapters.size(); i++)
3280 p_result = sub_chapters[i]->FindChapter( i_find_uid );
3281 if ( p_result != NULL )
3287 std::string chapter_item_c::GetCodecName( bool f_for_title ) const
3291 std::vector<chapter_codec_cmds_c*>::const_iterator index = codecs.begin();
3292 while ( index != codecs.end() )
3294 result = (*index)->GetCodecName( f_for_title );
3303 std::string dvd_chapter_codec_c::GetCodecName( bool f_for_title ) const
3306 if ( p_private_data->GetSize() >= 3)
3308 const binary* p_data = p_private_data->GetBuffer();
3309 /* if ( p_data[0] == MATROSKA_DVD_LEVEL_TT )
3311 uint16_t i_title = (p_data[1] << 8) + p_data[2];
3313 sprintf( psz_str, " %d ---", i_title );
3314 result = N_("--- DVD Title");
3317 else */ if ( p_data[0] == MATROSKA_DVD_LEVEL_LU )
3320 sprintf( psz_str, " (%c%c) ---", p_data[1], p_data[2] );
3321 result = N_("--- DVD Menu");
3324 else if ( p_data[0] == MATROSKA_DVD_LEVEL_SS && f_for_title )
3326 if ( p_data[1] == 0x00 )
3327 result = N_("First Played");
3328 else if ( p_data[1] == 0xC0 )
3329 result = N_("Video Manager");
3330 else if ( p_data[1] == 0x80 )
3332 uint16_t i_title = (p_data[2] << 8) + p_data[3];
3334 sprintf( psz_str, " %d -----", i_title );
3335 result = N_("----- Title");
3344 int16 chapter_item_c::GetTitleNumber( ) const
3348 std::vector<chapter_codec_cmds_c*>::const_iterator index = codecs.begin();
3349 while ( index != codecs.end() )
3351 result = (*index)->GetTitleNumber( );
3360 int16 dvd_chapter_codec_c::GetTitleNumber()
3362 if ( p_private_data->GetSize() >= 3)
3364 const binary* p_data = p_private_data->GetBuffer();
3365 if ( p_data[0] == MATROSKA_DVD_LEVEL_SS )
3367 return int16( (p_data[2] << 8) + p_data[3] );
3373 static void Seek( demux_t *p_demux, mtime_t i_date, double f_percent, chapter_item_c *psz_chapter )
3375 demux_sys_t *p_sys = p_demux->p_sys;
3376 virtual_segment_c *p_vsegment = p_sys->p_current_segment;
3377 matroska_segment_c *p_segment = p_vsegment->Segment();
3378 mtime_t i_time_offset = 0;
3382 msg_Dbg( p_demux, "seek request to "I64Fd" (%f%%)", i_date, f_percent );
3383 if( i_date < 0 && f_percent < 0 )
3385 msg_Warn( p_demux, "cannot seek nowhere !" );
3388 if( f_percent > 1.0 )
3390 msg_Warn( p_demux, "cannot seek so far !" );
3394 /* seek without index or without date */
3395 if( f_percent >= 0 && (config_GetInt( p_demux, "mkv-seek-percent" ) || !p_segment->b_cues || i_date < 0 ))
3397 if (p_sys->f_duration >= 0)
3399 i_date = int64_t( f_percent * p_sys->f_duration * 1000.0 );
3403 int64_t i_pos = int64_t( f_percent * stream_Size( p_demux->s ) );
3405 msg_Dbg( p_demux, "inacurate way of seeking" );
3406 for( i_index = 0; i_index < p_segment->i_index; i_index++ )
3408 if( p_segment->p_indexes[i_index].i_position >= i_pos)
3413 if( i_index == p_segment->i_index )
3418 i_date = p_segment->p_indexes[i_index].i_time;
3421 if( p_segment->p_indexes[i_index].i_position < i_pos )
3425 msg_Warn( p_demux, "searching for cluster, could take some time" );
3427 /* search a cluster */
3428 while( ( el = p_sys->ep->Get() ) != NULL )
3430 if( MKV_IS_ID( el, KaxCluster ) )
3432 KaxCluster *cluster = (KaxCluster*)el;
3434 /* add it to the index */
3435 p_segment->IndexAppendCluster( cluster );
3437 if( (int64_t)cluster->GetElementPosition() >= i_pos )
3439 p_sys->cluster = cluster;
3450 p_vsegment->Seek( *p_demux, i_date, i_time_offset, psz_chapter );
3453 /*****************************************************************************
3454 * Demux: reads and demuxes data packets
3455 *****************************************************************************
3456 * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
3457 *****************************************************************************/
3458 static int Demux( demux_t *p_demux)
3460 demux_sys_t *p_sys = p_demux->p_sys;
3462 vlc_mutex_lock( &p_sys->lock_demuxer );
3464 virtual_segment_c *p_vsegment = p_sys->p_current_segment;
3465 matroska_segment_c *p_segment = p_vsegment->Segment();
3466 if ( p_segment == NULL ) return 0;
3467 int i_block_count = 0;
3472 if ( p_sys->demuxer.b_die )
3475 if( p_sys->i_pts >= p_sys->i_start_pts )
3476 if ( p_vsegment->UpdateCurrentToChapter( *p_demux ) )
3482 if ( p_vsegment->Edition() && p_vsegment->Edition()->b_ordered && p_vsegment->CurrentChapter() == NULL )
3484 /* nothing left to read in this ordered edition */
3485 if ( !p_vsegment->SelectNext() )
3487 p_segment->UnSelect( );
3489 es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
3491 /* switch to the next segment */
3492 p_segment = p_vsegment->Segment();
3493 if ( !p_segment->Select( 0 ) )
3495 msg_Err( p_demux, "Failed to select new segment" );
3502 int64_t i_block_duration = 0;
3503 int64_t i_block_ref1;
3504 int64_t i_block_ref2;
3506 #if LIBMATROSKA_VERSION >= 0x000800
3507 KaxSimpleBlock *simpleblock;
3509 if( p_segment->BlockGet( block, simpleblock, &i_block_ref1, &i_block_ref2, &i_block_duration ) )
3511 if( p_segment->BlockGet( block, &i_block_ref1, &i_block_ref2, &i_block_duration ) )
3514 if ( p_vsegment->Edition() && p_vsegment->Edition()->b_ordered )
3516 const chapter_item_c *p_chap = p_vsegment->CurrentChapter();
3517 // check if there are more chapters to read
3518 if ( p_chap != NULL )
3520 /* TODO handle successive chapters with the same user_start_time/user_end_time
3521 if ( p_chap->i_user_start_time == p_chap->i_user_start_time )
3522 p_vsegment->SelectNext();
3524 p_sys->i_pts = p_chap->i_user_end_time;
3525 p_sys->i_pts++; // trick to avoid staying on segments with no duration and no content
3534 msg_Warn( p_demux, "cannot get block EOF?" );
3535 p_segment->UnSelect( );
3537 es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
3539 /* switch to the next segment */
3540 if ( !p_vsegment->SelectNext() )
3541 // no more segments in this stream
3543 p_segment = p_vsegment->Segment();
3544 if ( !p_segment->Select( 0 ) )
3546 msg_Err( p_demux, "Failed to select new segment" );
3554 #if LIBMATROSKA_VERSION >= 0x000800
3555 if ( simpleblock != NULL )
3556 p_sys->i_pts = (p_sys->i_chapter_time + simpleblock->GlobalTimecode()) / (mtime_t) 1000;
3559 p_sys->i_pts = (p_sys->i_chapter_time + block->GlobalTimecode()) / (mtime_t) 1000;
3561 if( p_sys->i_pts >= p_sys->i_start_pts )
3563 es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_pts );
3565 if ( p_vsegment->UpdateCurrentToChapter( *p_demux ) )
3573 if ( p_vsegment->Edition() && p_vsegment->Edition()->b_ordered && p_vsegment->CurrentChapter() == NULL )
3575 /* nothing left to read in this ordered edition */
3576 if ( !p_vsegment->SelectNext() )
3581 p_segment->UnSelect( );
3583 es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
3585 /* switch to the next segment */
3586 p_segment = p_vsegment->Segment();
3587 if ( !p_segment->Select( 0 ) )
3589 msg_Err( p_demux, "Failed to select new segment" );
3597 #if LIBMATROSKA_VERSION >= 0x000800
3598 BlockDecode( p_demux, block, simpleblock, p_sys->i_pts, i_block_duration, i_block_ref1 >= 0 || i_block_ref2 > 0 );
3600 BlockDecode( p_demux, block, p_sys->i_pts, i_block_duration, i_block_ref1 >= 0 || i_block_ref2 > 0 );
3606 // TODO optimize when there is need to leave or when seeking has been called
3607 if( i_block_count > 5 )
3614 vlc_mutex_unlock( &p_sys->lock_demuxer );
3621 /*****************************************************************************
3623 *****************************************************************************/
3624 vlc_stream_io_callback::vlc_stream_io_callback( stream_t *s_, vlc_bool_t b_owner_ )
3631 uint32 vlc_stream_io_callback::read( void *p_buffer, size_t i_size )
3633 if( i_size <= 0 || mb_eof )
3638 return stream_Read( s, p_buffer, i_size );
3640 void vlc_stream_io_callback::setFilePointer(int64_t i_offset, seek_mode mode )
3646 case seek_beginning:
3650 i_pos = stream_Size( s ) - i_offset;
3653 i_pos= stream_Tell( s ) + i_offset;
3657 if( i_pos < 0 || i_pos >= stream_Size( s ) )
3664 if( stream_Seek( s, i_pos ) )
3670 size_t vlc_stream_io_callback::write( const void *p_buffer, size_t i_size )
3674 uint64 vlc_stream_io_callback::getFilePointer( void )
3678 return stream_Tell( s );
3680 void vlc_stream_io_callback::close( void )
3686 /*****************************************************************************
3687 * Ebml Stream parser
3688 *****************************************************************************/
3689 EbmlParser::EbmlParser( EbmlStream *es, EbmlElement *el_start, demux_t *p_demux )
3696 mi_remain_size[0] = el_start->GetSize();
3698 for( i = 1; i < 6; i++ )
3704 mb_keep = VLC_FALSE;
3705 mb_dummy = config_GetInt( p_demux, "mkv-use-dummy" );
3708 EbmlParser::~EbmlParser( void )
3712 for( i = 1; i < mi_level; i++ )
3718 mb_keep = VLC_FALSE;
3722 EbmlElement* EbmlParser::UnGet( uint64 i_block_pos, uint64 i_cluster_pos )
3724 if ( mi_user_level > mi_level )
3726 while ( mi_user_level != mi_level )
3728 delete m_el[mi_user_level];
3729 m_el[mi_user_level] = NULL;
3734 mb_keep = VLC_FALSE;
3735 if ( m_el[1]->GetElementPosition() == i_cluster_pos )
3737 m_es->I_O().setFilePointer( i_block_pos, seek_beginning );
3738 return (EbmlMaster*) m_el[1];
3742 // seek to the previous Cluster
3743 m_es->I_O().setFilePointer( i_cluster_pos, seek_beginning );
3746 delete m_el[mi_level];
3747 m_el[mi_level] = NULL;
3752 void EbmlParser::Up( void )
3754 if( mi_user_level == mi_level )
3756 fprintf( stderr," arrrrrrrrrrrrrg Up cannot escape itself\n" );
3762 void EbmlParser::Down( void )
3768 void EbmlParser::Keep( void )
3773 int EbmlParser::GetLevel( void )
3775 return mi_user_level;
3778 void EbmlParser::Reset( demux_t *p_demux )
3780 while ( mi_level > 0)
3782 delete m_el[mi_level];
3783 m_el[mi_level] = NULL;
3786 mi_user_level = mi_level = 1;
3787 #if LIBEBML_VERSION >= 0x000704
3788 // a little faster and cleaner
3789 m_es->I_O().setFilePointer( static_cast<KaxSegment*>(m_el[0])->GetGlobalPosition(0) );
3791 m_es->I_O().setFilePointer( m_el[0]->GetElementPosition() + m_el[0]->ElementSize(true) - m_el[0]->GetSize() );
3793 mb_dummy = config_GetInt( p_demux, "mkv-use-dummy" );
3796 EbmlElement *EbmlParser::Get( void )
3800 if( mi_user_level != mi_level )
3806 EbmlElement *ret = m_got;
3812 if( m_el[mi_level] )
3814 m_el[mi_level]->SkipData( *m_es, m_el[mi_level]->Generic().Context );
3817 delete m_el[mi_level];
3819 mb_keep = VLC_FALSE;
3822 m_el[mi_level] = m_es->FindNextElement( m_el[mi_level - 1]->Generic().Context, i_ulev, 0xFFFFFFFFL, mb_dummy != 0, 1 );
3823 // mi_remain_size[mi_level] = m_el[mi_level]->GetSize();
3834 delete m_el[mi_level - 1];
3835 m_got = m_el[mi_level -1] = m_el[mi_level];
3836 m_el[mi_level] = NULL;
3843 else if( m_el[mi_level] == NULL )
3845 fprintf( stderr," m_el[mi_level] == NULL\n" );
3848 return m_el[mi_level];
3852 /*****************************************************************************
3854 * * LoadCues : load the cues element and update index
3856 * * LoadTags : load ... the tags element
3858 * * InformationCreate : create all information, load tags if present
3860 *****************************************************************************/
3861 void matroska_segment_c::LoadCues( )
3863 int64_t i_sav_position = es.I_O().getFilePointer();
3865 EbmlElement *el, *cues;
3867 /* *** Load the cue if found *** */
3868 if( i_cues_position < 0 )
3870 msg_Warn( &sys.demuxer, "no cues/empty cues found->seek won't be precise" );
3872 // IndexAppendCluster( cluster );
3875 vlc_bool_t b_seekable;
3877 stream_Control( sys.demuxer.s, STREAM_CAN_FASTSEEK, &b_seekable );
3881 msg_Dbg( &sys.demuxer, "loading cues" );
3882 es.I_O().setFilePointer( i_cues_position, seek_beginning );
3883 cues = es.FindNextID( KaxCues::ClassInfos, 0xFFFFFFFFL);
3887 msg_Err( &sys.demuxer, "cannot load cues (broken seekhead or file)" );
3888 es.I_O().setFilePointer( i_sav_position, seek_beginning );
3892 ep = new EbmlParser( &es, cues, &sys.demuxer );
3893 while( ( el = ep->Get() ) != NULL )
3895 if( MKV_IS_ID( el, KaxCuePoint ) )
3897 #define idx p_indexes[i_index]
3900 idx.i_block_number= -1;
3901 idx.i_position = -1;
3903 idx.b_key = VLC_TRUE;
3906 while( ( el = ep->Get() ) != NULL )
3908 if( MKV_IS_ID( el, KaxCueTime ) )
3910 KaxCueTime &ctime = *(KaxCueTime*)el;
3912 ctime.ReadData( es.I_O() );
3914 idx.i_time = uint64( ctime ) * i_timescale / (mtime_t)1000;
3916 else if( MKV_IS_ID( el, KaxCueTrackPositions ) )
3919 while( ( el = ep->Get() ) != NULL )
3921 if( MKV_IS_ID( el, KaxCueTrack ) )
3923 KaxCueTrack &ctrack = *(KaxCueTrack*)el;
3925 ctrack.ReadData( es.I_O() );
3926 idx.i_track = uint16( ctrack );
3928 else if( MKV_IS_ID( el, KaxCueClusterPosition ) )
3930 KaxCueClusterPosition &ccpos = *(KaxCueClusterPosition*)el;
3932 ccpos.ReadData( es.I_O() );
3933 idx.i_position = segment->GetGlobalPosition( uint64( ccpos ) );
3935 else if( MKV_IS_ID( el, KaxCueBlockNumber ) )
3937 KaxCueBlockNumber &cbnum = *(KaxCueBlockNumber*)el;
3939 cbnum.ReadData( es.I_O() );
3940 idx.i_block_number = uint32( cbnum );
3944 msg_Dbg( &sys.demuxer, " * Unknown (%s)", typeid(*el).name() );
3951 msg_Dbg( &sys.demuxer, " * Unknown (%s)", typeid(*el).name() );
3957 msg_Dbg( &sys.demuxer, " * added time="I64Fd" pos="I64Fd
3958 " track=%d bnum=%d", idx.i_time, idx.i_position,
3959 idx.i_track, idx.i_block_number );
3963 if( i_index >= i_index_max )
3965 i_index_max += 1024;
3966 p_indexes = (mkv_index_t*)realloc( p_indexes, sizeof( mkv_index_t ) * i_index_max );
3972 msg_Dbg( &sys.demuxer, " * Unknown (%s)", typeid(*el).name() );
3980 msg_Dbg( &sys.demuxer, "loading cues done." );
3981 es.I_O().setFilePointer( i_sav_position, seek_beginning );
3984 void matroska_segment_c::LoadTags( )
3986 int64_t i_sav_position = es.I_O().getFilePointer();
3988 EbmlElement *el, *tags;
3990 msg_Dbg( &sys.demuxer, "loading tags" );
3991 es.I_O().setFilePointer( i_tags_position, seek_beginning );
3992 tags = es.FindNextID( KaxTags::ClassInfos, 0xFFFFFFFFL);
3996 msg_Err( &sys.demuxer, "cannot load tags (broken seekhead or file)" );
3997 es.I_O().setFilePointer( i_sav_position, seek_beginning );
4001 msg_Dbg( &sys.demuxer, "Tags" );
4002 ep = new EbmlParser( &es, tags, &sys.demuxer );
4003 while( ( el = ep->Get() ) != NULL )
4005 if( MKV_IS_ID( el, KaxTag ) )
4007 msg_Dbg( &sys.demuxer, "+ Tag" );
4009 while( ( el = ep->Get() ) != NULL )
4011 if( MKV_IS_ID( el, KaxTagTargets ) )
4013 msg_Dbg( &sys.demuxer, "| + Targets" );
4015 while( ( el = ep->Get() ) != NULL )
4017 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid( *el ).name() );
4021 else if( MKV_IS_ID( el, KaxTagGeneral ) )
4023 msg_Dbg( &sys.demuxer, "| + General" );
4025 while( ( el = ep->Get() ) != NULL )
4027 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid( *el ).name() );
4031 else if( MKV_IS_ID( el, KaxTagGenres ) )
4033 msg_Dbg( &sys.demuxer, "| + Genres" );
4035 while( ( el = ep->Get() ) != NULL )
4037 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid( *el ).name() );
4041 else if( MKV_IS_ID( el, KaxTagAudioSpecific ) )
4043 msg_Dbg( &sys.demuxer, "| + Audio Specific" );
4045 while( ( el = ep->Get() ) != NULL )
4047 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid( *el ).name() );
4051 else if( MKV_IS_ID( el, KaxTagImageSpecific ) )
4053 msg_Dbg( &sys.demuxer, "| + Images Specific" );
4055 while( ( el = ep->Get() ) != NULL )
4057 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid( *el ).name() );
4061 else if( MKV_IS_ID( el, KaxTagMultiComment ) )
4063 msg_Dbg( &sys.demuxer, "| + Multi Comment" );
4065 else if( MKV_IS_ID( el, KaxTagMultiCommercial ) )
4067 msg_Dbg( &sys.demuxer, "| + Multi Commercial" );
4069 else if( MKV_IS_ID( el, KaxTagMultiDate ) )
4071 msg_Dbg( &sys.demuxer, "| + Multi Date" );
4073 else if( MKV_IS_ID( el, KaxTagMultiEntity ) )
4075 msg_Dbg( &sys.demuxer, "| + Multi Entity" );
4077 else if( MKV_IS_ID( el, KaxTagMultiIdentifier ) )
4079 msg_Dbg( &sys.demuxer, "| + Multi Identifier" );
4081 else if( MKV_IS_ID( el, KaxTagMultiLegal ) )
4083 msg_Dbg( &sys.demuxer, "| + Multi Legal" );
4085 else if( MKV_IS_ID( el, KaxTagMultiTitle ) )
4087 msg_Dbg( &sys.demuxer, "| + Multi Title" );
4091 msg_Dbg( &sys.demuxer, "| + Unknown (%s)", typeid( *el ).name() );
4098 msg_Dbg( &sys.demuxer, "+ Unknown (%s)", typeid( *el ).name() );
4104 msg_Dbg( &sys.demuxer, "loading tags done." );
4105 es.I_O().setFilePointer( i_sav_position, seek_beginning );
4108 /*****************************************************************************
4110 *****************************************************************************/
4111 void matroska_segment_c::ParseSeekHead( KaxSeekHead *seekhead )
4115 int i_upper_level = 0;
4117 msg_Dbg( &sys.demuxer, "| + Seek head" );
4119 /* Master elements */
4120 seekhead->Read( es, seekhead->Generic().Context, i_upper_level, el, true );
4122 for( i = 0; i < seekhead->ListSize(); i++ )
4124 EbmlElement *l = (*seekhead)[i];
4126 if( MKV_IS_ID( l, KaxSeek ) )
4128 EbmlMaster *sk = static_cast<EbmlMaster *>(l);
4129 EbmlId id = EbmlVoid::ClassInfos.GlobalId;
4132 for( j = 0; j < sk->ListSize(); j++ )
4134 EbmlElement *l = (*sk)[j];
4136 if( MKV_IS_ID( l, KaxSeekID ) )
4138 KaxSeekID &sid = *(KaxSeekID*)l;
4139 id = EbmlId( sid.GetBuffer(), sid.GetSize() );
4141 else if( MKV_IS_ID( l, KaxSeekPosition ) )
4143 KaxSeekPosition &spos = *(KaxSeekPosition*)l;
4144 i_pos = uint64( spos );
4148 msg_Dbg( &sys.demuxer, "| | | + Unknown (%s)", typeid(*l).name() );
4154 if( id == KaxCues::ClassInfos.GlobalId )
4156 msg_Dbg( &sys.demuxer, "| | | = cues at "I64Fd, i_pos );
4157 i_cues_position = segment->GetGlobalPosition( i_pos );
4159 else if( id == KaxChapters::ClassInfos.GlobalId )
4161 msg_Dbg( &sys.demuxer, "| | | = chapters at "I64Fd, i_pos );
4162 i_chapters_position = segment->GetGlobalPosition( i_pos );
4164 else if( id == KaxTags::ClassInfos.GlobalId )
4166 msg_Dbg( &sys.demuxer, "| | | = tags at "I64Fd, i_pos );
4167 i_tags_position = segment->GetGlobalPosition( i_pos );
4173 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid(*l).name() );
4178 /*****************************************************************************
4180 *****************************************************************************/
4181 void matroska_segment_c::ParseTrackEntry( KaxTrackEntry *m )
4184 bool bSupported = true;
4188 msg_Dbg( &sys.demuxer, "| | + Track Entry" );
4190 tk = new mkv_track_t();
4192 /* Init the track */
4193 memset( tk, 0, sizeof( mkv_track_t ) );
4195 es_format_Init( &tk->fmt, UNKNOWN_ES, 0 );
4196 tk->fmt.psz_language = strdup("English");
4197 tk->fmt.psz_description = NULL;
4199 tk->b_default = VLC_TRUE;
4200 tk->b_enabled = VLC_TRUE;
4201 tk->b_silent = VLC_FALSE;
4202 tk->i_number = tracks.size() - 1;
4203 tk->i_extra_data = 0;
4204 tk->p_extra_data = NULL;
4205 tk->psz_codec = NULL;
4206 tk->i_default_duration = 0;
4207 tk->f_timecodescale = 1.0;
4209 tk->b_inited = VLC_FALSE;
4210 tk->i_data_init = 0;
4211 tk->p_data_init = NULL;
4213 tk->psz_codec_name = NULL;
4214 tk->psz_codec_settings = NULL;
4215 tk->psz_codec_info_url = NULL;
4216 tk->psz_codec_download_url = NULL;
4218 tk->i_compression_type = MATROSKA_COMPRESSION_NONE;
4219 tk->p_compression_data = NULL;
4221 for( i = 0; i < m->ListSize(); i++ )
4223 EbmlElement *l = (*m)[i];
4225 if( MKV_IS_ID( l, KaxTrackNumber ) )
4227 KaxTrackNumber &tnum = *(KaxTrackNumber*)l;
4229 tk->i_number = uint32( tnum );
4230 msg_Dbg( &sys.demuxer, "| | | + Track Number=%u", uint32( tnum ) );
4232 else if( MKV_IS_ID( l, KaxTrackUID ) )
4234 KaxTrackUID &tuid = *(KaxTrackUID*)l;
4236 msg_Dbg( &sys.demuxer, "| | | + Track UID=%u", uint32( tuid ) );
4238 else if( MKV_IS_ID( l, KaxTrackType ) )
4240 const char *psz_type;
4241 KaxTrackType &ttype = *(KaxTrackType*)l;
4243 switch( uint8(ttype) )
4247 tk->fmt.i_cat = AUDIO_ES;
4251 tk->fmt.i_cat = VIDEO_ES;
4253 case track_subtitle:
4254 psz_type = "subtitle";
4255 tk->fmt.i_cat = SPU_ES;
4258 psz_type = "buttons";
4259 tk->fmt.i_cat = SPU_ES;
4262 psz_type = "unknown";
4263 tk->fmt.i_cat = UNKNOWN_ES;
4267 msg_Dbg( &sys.demuxer, "| | | + Track Type=%s", psz_type );
4269 // else if( EbmlId( *l ) == KaxTrackFlagEnabled::ClassInfos.GlobalId )
4271 // KaxTrackFlagEnabled &fenb = *(KaxTrackFlagEnabled*)l;
4273 // tk->b_enabled = uint32( fenb );
4274 // msg_Dbg( &sys.demuxer, "| | | + Track Enabled=%u",
4275 // uint32( fenb ) );
4277 else if( MKV_IS_ID( l, KaxTrackFlagDefault ) )
4279 KaxTrackFlagDefault &fdef = *(KaxTrackFlagDefault*)l;
4281 tk->b_default = uint32( fdef );
4282 msg_Dbg( &sys.demuxer, "| | | + Track Default=%u", uint32( fdef ) );
4284 else if( MKV_IS_ID( l, KaxTrackFlagLacing ) )
4286 KaxTrackFlagLacing &lac = *(KaxTrackFlagLacing*)l;
4288 msg_Dbg( &sys.demuxer, "| | | + Track Lacing=%d", uint32( lac ) );
4290 else if( MKV_IS_ID( l, KaxTrackMinCache ) )
4292 KaxTrackMinCache &cmin = *(KaxTrackMinCache*)l;
4294 msg_Dbg( &sys.demuxer, "| | | + Track MinCache=%d", uint32( cmin ) );
4296 else if( MKV_IS_ID( l, KaxTrackMaxCache ) )
4298 KaxTrackMaxCache &cmax = *(KaxTrackMaxCache*)l;
4300 msg_Dbg( &sys.demuxer, "| | | + Track MaxCache=%d", uint32( cmax ) );
4302 else if( MKV_IS_ID( l, KaxTrackDefaultDuration ) )
4304 KaxTrackDefaultDuration &defd = *(KaxTrackDefaultDuration*)l;
4306 tk->i_default_duration = uint64(defd);
4307 msg_Dbg( &sys.demuxer, "| | | + Track Default Duration="I64Fd, uint64(defd) );
4309 else if( MKV_IS_ID( l, KaxTrackTimecodeScale ) )
4311 KaxTrackTimecodeScale &ttcs = *(KaxTrackTimecodeScale*)l;
4313 tk->f_timecodescale = float( ttcs );
4314 msg_Dbg( &sys.demuxer, "| | | + Track TimeCodeScale=%f", tk->f_timecodescale );
4316 else if( MKV_IS_ID( l, KaxTrackName ) )
4318 KaxTrackName &tname = *(KaxTrackName*)l;
4320 tk->fmt.psz_description = ToUTF8( UTFstring( tname ) );
4321 msg_Dbg( &sys.demuxer, "| | | + Track Name=%s", tk->fmt.psz_description );
4323 else if( MKV_IS_ID( l, KaxTrackLanguage ) )
4325 KaxTrackLanguage &lang = *(KaxTrackLanguage*)l;
4327 if ( tk->fmt.psz_language != NULL )
4328 free( tk->fmt.psz_language );
4329 tk->fmt.psz_language = strdup( string( lang ).c_str() );
4330 msg_Dbg( &sys.demuxer,
4331 "| | | + Track Language=`%s'", tk->fmt.psz_language );
4333 else if( MKV_IS_ID( l, KaxCodecID ) )
4335 KaxCodecID &codecid = *(KaxCodecID*)l;
4337 tk->psz_codec = strdup( string( codecid ).c_str() );
4338 msg_Dbg( &sys.demuxer, "| | | + Track CodecId=%s", string( codecid ).c_str() );
4340 else if( MKV_IS_ID( l, KaxCodecPrivate ) )
4342 KaxCodecPrivate &cpriv = *(KaxCodecPrivate*)l;
4344 tk->i_extra_data = cpriv.GetSize();
4345 if( tk->i_extra_data > 0 )
4347 tk->p_extra_data = (uint8_t*)malloc( tk->i_extra_data );
4348 memcpy( tk->p_extra_data, cpriv.GetBuffer(), tk->i_extra_data );
4350 msg_Dbg( &sys.demuxer, "| | | + Track CodecPrivate size="I64Fd, cpriv.GetSize() );
4352 else if( MKV_IS_ID( l, KaxCodecName ) )
4354 KaxCodecName &cname = *(KaxCodecName*)l;
4356 tk->psz_codec_name = ToUTF8( UTFstring( cname ) );
4357 msg_Dbg( &sys.demuxer, "| | | + Track Codec Name=%s", tk->psz_codec_name );
4359 else if( MKV_IS_ID( l, KaxContentEncodings ) )
4361 EbmlMaster *cencs = static_cast<EbmlMaster*>(l);
4362 MkvTree( sys.demuxer, 3, "Content Encodings" );
4363 if ( cencs->ListSize() > 1 )
4365 msg_Err( &sys.demuxer, "Multiple Compression method not supported" );
4368 for( j = 0; j < cencs->ListSize(); j++ )
4370 EbmlElement *l2 = (*cencs)[j];
4371 if( MKV_IS_ID( l2, KaxContentEncoding ) )
4373 MkvTree( sys.demuxer, 4, "Content Encoding" );
4374 EbmlMaster *cenc = static_cast<EbmlMaster*>(l2);
4375 for( k = 0; k < cenc->ListSize(); k++ )
4377 EbmlElement *l3 = (*cenc)[k];
4378 if( MKV_IS_ID( l3, KaxContentEncodingOrder ) )
4380 KaxContentEncodingOrder &encord = *(KaxContentEncodingOrder*)l3;
4381 MkvTree( sys.demuxer, 5, "Order: %i", uint32( encord ) );
4383 else if( MKV_IS_ID( l3, KaxContentEncodingScope ) )
4385 KaxContentEncodingScope &encscope = *(KaxContentEncodingScope*)l3;
4386 MkvTree( sys.demuxer, 5, "Scope: %i", uint32( encscope ) );
4388 else if( MKV_IS_ID( l3, KaxContentEncodingType ) )
4390 KaxContentEncodingType &enctype = *(KaxContentEncodingType*)l3;
4391 MkvTree( sys.demuxer, 5, "Type: %i", uint32( enctype ) );
4393 else if( MKV_IS_ID( l3, KaxContentCompression ) )
4395 EbmlMaster *compr = static_cast<EbmlMaster*>(l3);
4396 MkvTree( sys.demuxer, 5, "Content Compression" );
4397 for( n = 0; n < compr->ListSize(); n++ )
4399 EbmlElement *l4 = (*compr)[n];
4400 if( MKV_IS_ID( l4, KaxContentCompAlgo ) )
4402 KaxContentCompAlgo &compalg = *(KaxContentCompAlgo*)l4;
4403 MkvTree( sys.demuxer, 6, "Compression Algorithm: %i", uint32(compalg) );
4404 tk->i_compression_type = uint32( compalg );
4405 if ( ( tk->i_compression_type != MATROSKA_COMPRESSION_ZLIB ) &&
4406 ( tk->i_compression_type != MATROSKA_COMPRESSION_HEADER ) )
4408 msg_Err( &sys.demuxer, "Track Compression method %d not supported", tk->i_compression_type );
4412 else if( MKV_IS_ID( l4, KaxContentCompSettings ) )
4414 tk->p_compression_data = new KaxContentCompSettings( *(KaxContentCompSettings*)l4 );
4418 MkvTree( sys.demuxer, 6, "Unknown (%s)", typeid(*l4).name() );
4424 MkvTree( sys.demuxer, 5, "Unknown (%s)", typeid(*l3).name() );
4430 MkvTree( sys.demuxer, 4, "Unknown (%s)", typeid(*l2).name() );
4434 // else if( EbmlId( *l ) == KaxCodecSettings::ClassInfos.GlobalId )
4436 // KaxCodecSettings &cset = *(KaxCodecSettings*)l;
4438 // tk->psz_codec_settings = ToUTF8( UTFstring( cset ) );
4439 // msg_Dbg( &sys.demuxer, "| | | + Track Codec Settings=%s", tk->psz_codec_settings );
4441 // else if( EbmlId( *l ) == KaxCodecInfoURL::ClassInfos.GlobalId )
4443 // KaxCodecInfoURL &ciurl = *(KaxCodecInfoURL*)l;
4445 // tk->psz_codec_info_url = strdup( string( ciurl ).c_str() );
4446 // msg_Dbg( &sys.demuxer, "| | | + Track Codec Info URL=%s", tk->psz_codec_info_url );
4448 // else if( EbmlId( *l ) == KaxCodecDownloadURL::ClassInfos.GlobalId )
4450 // KaxCodecDownloadURL &cdurl = *(KaxCodecDownloadURL*)l;
4452 // tk->psz_codec_download_url = strdup( string( cdurl ).c_str() );
4453 // msg_Dbg( &sys.demuxer, "| | | + Track Codec Info URL=%s", tk->psz_codec_download_url );
4455 // else if( EbmlId( *l ) == KaxCodecDecodeAll::ClassInfos.GlobalId )
4457 // KaxCodecDecodeAll &cdall = *(KaxCodecDecodeAll*)l;
4459 // msg_Dbg( &sys.demuxer, "| | | + Track Codec Decode All=%u <== UNUSED", uint8( cdall ) );
4461 // else if( EbmlId( *l ) == KaxTrackOverlay::ClassInfos.GlobalId )
4463 // KaxTrackOverlay &tovr = *(KaxTrackOverlay*)l;
4465 // msg_Dbg( &sys.demuxer, "| | | + Track Overlay=%u <== UNUSED", uint32( tovr ) );
4467 else if( MKV_IS_ID( l, KaxTrackVideo ) )
4469 EbmlMaster *tkv = static_cast<EbmlMaster*>(l);
4471 unsigned int i_crop_right = 0, i_crop_left = 0, i_crop_top = 0, i_crop_bottom = 0;
4472 unsigned int i_display_unit = 0, i_display_width = 0, i_display_height = 0;
4474 msg_Dbg( &sys.demuxer, "| | | + Track Video" );
4477 tk->fmt.video.i_frame_rate_base = (unsigned int)(tk->i_default_duration / 1000);
4478 tk->fmt.video.i_frame_rate = 1000000;
4480 for( j = 0; j < tkv->ListSize(); j++ )
4482 EbmlElement *l = (*tkv)[j];
4483 // if( EbmlId( *el4 ) == KaxVideoFlagInterlaced::ClassInfos.GlobalId )
4485 // KaxVideoFlagInterlaced &fint = *(KaxVideoFlagInterlaced*)el4;
4487 // msg_Dbg( &sys.demuxer, "| | | | + Track Video Interlaced=%u", uint8( fint ) );
4489 // else if( EbmlId( *el4 ) == KaxVideoStereoMode::ClassInfos.GlobalId )
4491 // KaxVideoStereoMode &stereo = *(KaxVideoStereoMode*)el4;
4493 // msg_Dbg( &sys.demuxer, "| | | | + Track Video Stereo Mode=%u", uint8( stereo ) );
4496 if( MKV_IS_ID( l, KaxVideoPixelWidth ) )
4498 KaxVideoPixelWidth &vwidth = *(KaxVideoPixelWidth*)l;
4500 tk->fmt.video.i_width += uint16( vwidth );
4501 msg_Dbg( &sys.demuxer, "| | | | + width=%d", uint16( vwidth ) );
4503 else if( MKV_IS_ID( l, KaxVideoPixelHeight ) )
4505 KaxVideoPixelWidth &vheight = *(KaxVideoPixelWidth*)l;
4507 tk->fmt.video.i_height += uint16( vheight );
4508 msg_Dbg( &sys.demuxer, "| | | | + height=%d", uint16( vheight ) );
4510 else if( MKV_IS_ID( l, KaxVideoDisplayWidth ) )
4512 KaxVideoDisplayWidth &vwidth = *(KaxVideoDisplayWidth*)l;
4514 i_display_width = uint16( vwidth );
4515 msg_Dbg( &sys.demuxer, "| | | | + display width=%d", uint16( vwidth ) );
4517 else if( MKV_IS_ID( l, KaxVideoDisplayHeight ) )
4519 KaxVideoDisplayWidth &vheight = *(KaxVideoDisplayWidth*)l;
4521 i_display_height = uint16( vheight );
4522 msg_Dbg( &sys.demuxer, "| | | | + display height=%d", uint16( vheight ) );
4524 else if( MKV_IS_ID( l, KaxVideoPixelCropBottom ) )
4526 KaxVideoPixelCropBottom &cropval = *(KaxVideoPixelCropBottom*)l;
4528 i_crop_bottom = uint16( cropval );
4529 msg_Dbg( &sys.demuxer, "| | | | + crop pixel bottom=%d", uint16( cropval ) );
4531 else if( MKV_IS_ID( l, KaxVideoPixelCropTop ) )
4533 KaxVideoPixelCropTop &cropval = *(KaxVideoPixelCropTop*)l;
4535 i_crop_top = uint16( cropval );
4536 msg_Dbg( &sys.demuxer, "| | | | + crop pixel top=%d", uint16( cropval ) );
4538 else if( MKV_IS_ID( l, KaxVideoPixelCropRight ) )
4540 KaxVideoPixelCropRight &cropval = *(KaxVideoPixelCropRight*)l;
4542 i_crop_right = uint16( cropval );
4543 msg_Dbg( &sys.demuxer, "| | | | + crop pixel right=%d", uint16( cropval ) );
4545 else if( MKV_IS_ID( l, KaxVideoPixelCropLeft ) )
4547 KaxVideoPixelCropLeft &cropval = *(KaxVideoPixelCropLeft*)l;
4549 i_crop_left = uint16( cropval );
4550 msg_Dbg( &sys.demuxer, "| | | | + crop pixel left=%d", uint16( cropval ) );
4552 else if( MKV_IS_ID( l, KaxVideoFrameRate ) )
4554 KaxVideoFrameRate &vfps = *(KaxVideoFrameRate*)l;
4556 tk->f_fps = float( vfps );
4557 msg_Dbg( &sys.demuxer, " | | | + fps=%f", float( vfps ) );
4559 else if( EbmlId( *l ) == KaxVideoDisplayUnit::ClassInfos.GlobalId )
4561 KaxVideoDisplayUnit &vdmode = *(KaxVideoDisplayUnit*)l;
4563 i_display_unit = uint8( vdmode );
4564 msg_Dbg( &sys.demuxer, "| | | | + Track Video Display Unit=%s",
4565 uint8( vdmode ) == 0 ? "pixels" : ( uint8( vdmode ) == 1 ? "centimeters": "inches" ) );
4567 // else if( EbmlId( *l ) == KaxVideoAspectRatio::ClassInfos.GlobalId )
4569 // KaxVideoAspectRatio &ratio = *(KaxVideoAspectRatio*)l;
4571 // msg_Dbg( &sys.demuxer, " | | | + Track Video Aspect Ratio Type=%u", uint8( ratio ) );
4573 // else if( EbmlId( *l ) == KaxVideoGamma::ClassInfos.GlobalId )
4575 // KaxVideoGamma &gamma = *(KaxVideoGamma*)l;
4577 // msg_Dbg( &sys.demuxer, " | | | + gamma=%f", float( gamma ) );
4581 msg_Dbg( &sys.demuxer, "| | | | + Unknown (%s)", typeid(*l).name() );
4584 if( i_display_height && i_display_width )
4585 tk->fmt.video.i_aspect = VOUT_ASPECT_FACTOR * i_display_width / i_display_height;
4586 if( i_crop_left || i_crop_right || i_crop_top || i_crop_bottom )
4588 tk->fmt.video.i_visible_width = tk->fmt.video.i_width;
4589 tk->fmt.video.i_visible_height = tk->fmt.video.i_height;
4590 tk->fmt.video.i_x_offset = i_crop_left;
4591 tk->fmt.video.i_y_offset = i_crop_top;
4592 tk->fmt.video.i_visible_width -= i_crop_left + i_crop_right;
4593 tk->fmt.video.i_visible_height -= i_crop_top + i_crop_bottom;
4595 /* FIXME: i_display_* allows you to not only set DAR, but also a zoom factor.
4596 we do not support this atm */
4598 else if( MKV_IS_ID( l, KaxTrackAudio ) )
4600 EbmlMaster *tka = static_cast<EbmlMaster*>(l);
4603 msg_Dbg( &sys.demuxer, "| | | + Track Audio" );
4605 for( j = 0; j < tka->ListSize(); j++ )
4607 EbmlElement *l = (*tka)[j];
4609 if( MKV_IS_ID( l, KaxAudioSamplingFreq ) )
4611 KaxAudioSamplingFreq &afreq = *(KaxAudioSamplingFreq*)l;
4613 tk->i_original_rate = tk->fmt.audio.i_rate = (int)float( afreq );
4614 msg_Dbg( &sys.demuxer, "| | | | + afreq=%d", tk->fmt.audio.i_rate );
4616 else if( MKV_IS_ID( l, KaxAudioOutputSamplingFreq ) )
4618 KaxAudioOutputSamplingFreq &afreq = *(KaxAudioOutputSamplingFreq*)l;
4620 tk->fmt.audio.i_rate = (int)float( afreq );
4621 msg_Dbg( &sys.demuxer, "| | | | + aoutfreq=%d", tk->fmt.audio.i_rate );
4623 else if( MKV_IS_ID( l, KaxAudioChannels ) )
4625 KaxAudioChannels &achan = *(KaxAudioChannels*)l;
4627 tk->fmt.audio.i_channels = uint8( achan );
4628 msg_Dbg( &sys.demuxer, "| | | | + achan=%u", uint8( achan ) );
4630 else if( MKV_IS_ID( l, KaxAudioBitDepth ) )
4632 KaxAudioBitDepth &abits = *(KaxAudioBitDepth*)l;
4634 tk->fmt.audio.i_bitspersample = uint8( abits );
4635 msg_Dbg( &sys.demuxer, "| | | | + abits=%u", uint8( abits ) );
4639 msg_Dbg( &sys.demuxer, "| | | | + Unknown (%s)", typeid(*l).name() );
4645 msg_Dbg( &sys.demuxer, "| | | + Unknown (%s)",
4646 typeid(*l).name() );
4652 tracks.push_back( tk );
4656 msg_Err( &sys.demuxer, "Track Entry %d not supported", tk->i_number );
4661 /*****************************************************************************
4663 *****************************************************************************/
4664 void matroska_segment_c::ParseTracks( KaxTracks *tracks )
4668 int i_upper_level = 0;
4670 msg_Dbg( &sys.demuxer, "| + Tracks" );
4672 /* Master elements */
4673 tracks->Read( es, tracks->Generic().Context, i_upper_level, el, true );
4675 for( i = 0; i < tracks->ListSize(); i++ )
4677 EbmlElement *l = (*tracks)[i];
4679 if( MKV_IS_ID( l, KaxTrackEntry ) )
4681 ParseTrackEntry( static_cast<KaxTrackEntry *>(l) );
4685 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid(*l).name() );
4690 /*****************************************************************************
4692 *****************************************************************************/
4693 void matroska_segment_c::ParseInfo( KaxInfo *info )
4698 int i_upper_level = 0;
4700 msg_Dbg( &sys.demuxer, "| + Information" );
4702 /* Master elements */
4703 m = static_cast<EbmlMaster *>(info);
4704 m->Read( es, info->Generic().Context, i_upper_level, el, true );
4706 for( i = 0; i < m->ListSize(); i++ )
4708 EbmlElement *l = (*m)[i];
4710 if( MKV_IS_ID( l, KaxSegmentUID ) )
4712 if ( p_segment_uid == NULL )
4713 p_segment_uid = new KaxSegmentUID(*static_cast<KaxSegmentUID*>(l));
4715 msg_Dbg( &sys.demuxer, "| | + UID=%d", *(uint32*)p_segment_uid->GetBuffer() );
4717 else if( MKV_IS_ID( l, KaxPrevUID ) )
4719 if ( p_prev_segment_uid == NULL )
4720 p_prev_segment_uid = new KaxPrevUID(*static_cast<KaxPrevUID*>(l));
4722 msg_Dbg( &sys.demuxer, "| | + PrevUID=%d", *(uint32*)p_prev_segment_uid->GetBuffer() );
4724 else if( MKV_IS_ID( l, KaxNextUID ) )
4726 if ( p_next_segment_uid == NULL )
4727 p_next_segment_uid = new KaxNextUID(*static_cast<KaxNextUID*>(l));
4729 msg_Dbg( &sys.demuxer, "| | + NextUID=%d", *(uint32*)p_next_segment_uid->GetBuffer() );
4731 else if( MKV_IS_ID( l, KaxTimecodeScale ) )
4733 KaxTimecodeScale &tcs = *(KaxTimecodeScale*)l;
4735 i_timescale = uint64(tcs);
4737 msg_Dbg( &sys.demuxer, "| | + TimecodeScale="I64Fd,
4740 else if( MKV_IS_ID( l, KaxDuration ) )
4742 KaxDuration &dur = *(KaxDuration*)l;
4744 i_duration = mtime_t( double( dur ) );
4746 msg_Dbg( &sys.demuxer, "| | + Duration="I64Fd,
4749 else if( MKV_IS_ID( l, KaxMuxingApp ) )
4751 KaxMuxingApp &mapp = *(KaxMuxingApp*)l;
4753 psz_muxing_application = ToUTF8( UTFstring( mapp ) );
4755 msg_Dbg( &sys.demuxer, "| | + Muxing Application=%s",
4756 psz_muxing_application );
4758 else if( MKV_IS_ID( l, KaxWritingApp ) )
4760 KaxWritingApp &wapp = *(KaxWritingApp*)l;
4762 psz_writing_application = ToUTF8( UTFstring( wapp ) );
4764 msg_Dbg( &sys.demuxer, "| | + Writing Application=%s",
4765 psz_writing_application );
4767 else if( MKV_IS_ID( l, KaxSegmentFilename ) )
4769 KaxSegmentFilename &sfn = *(KaxSegmentFilename*)l;
4771 psz_segment_filename = ToUTF8( UTFstring( sfn ) );
4773 msg_Dbg( &sys.demuxer, "| | + Segment Filename=%s",
4774 psz_segment_filename );
4776 else if( MKV_IS_ID( l, KaxTitle ) )
4778 KaxTitle &title = *(KaxTitle*)l;
4780 psz_title = ToUTF8( UTFstring( title ) );
4782 msg_Dbg( &sys.demuxer, "| | + Title=%s", psz_title );
4784 else if( MKV_IS_ID( l, KaxSegmentFamily ) )
4786 KaxSegmentFamily *uid = static_cast<KaxSegmentFamily*>(l);
4788 families.push_back( new KaxSegmentFamily(*uid) );
4790 msg_Dbg( &sys.demuxer, "| | + family=%d", *(uint32*)uid->GetBuffer() );
4792 #if defined( HAVE_GMTIME_R ) && !defined( __APPLE__ )
4793 else if( MKV_IS_ID( l, KaxDateUTC ) )
4795 KaxDateUTC &date = *(KaxDateUTC*)l;
4800 i_date = date.GetEpochDate();
4801 memset( buffer, 0, 256 );
4802 if( gmtime_r( &i_date, &tmres ) &&
4803 asctime_r( &tmres, buffer ) )
4805 buffer[strlen( buffer)-1]= '\0';
4806 psz_date_utc = strdup( buffer );
4807 msg_Dbg( &sys.demuxer, "| | + Date=%s", psz_date_utc );
4811 #if LIBMATROSKA_VERSION >= 0x000704
4812 else if( MKV_IS_ID( l, KaxChapterTranslate ) )
4814 KaxChapterTranslate *p_trans = static_cast<KaxChapterTranslate*>( l );
4815 chapter_translation_c *p_translate = new chapter_translation_c();
4817 p_trans->Read( es, p_trans->Generic().Context, i_upper_level, el, true );
4818 for( j = 0; j < p_trans->ListSize(); j++ )
4820 EbmlElement *l = (*p_trans)[j];
4822 if( MKV_IS_ID( l, KaxChapterTranslateEditionUID ) )
4824 p_translate->editions.push_back( uint64( *static_cast<KaxChapterTranslateEditionUID*>( l ) ) );
4826 else if( MKV_IS_ID( l, KaxChapterTranslateCodec ) )
4828 p_translate->codec_id = uint32( *static_cast<KaxChapterTranslateCodec*>( l ) );
4830 else if( MKV_IS_ID( l, KaxChapterTranslateID ) )
4832 p_translate->p_translated = new KaxChapterTranslateID( *static_cast<KaxChapterTranslateID*>( l ) );
4836 translations.push_back( p_translate );
4841 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid(*l).name() );
4845 double f_dur = double(i_duration) * double(i_timescale) / 1000000.0;
4846 i_duration = mtime_t(f_dur);
4850 /*****************************************************************************
4852 *****************************************************************************/
4853 void matroska_segment_c::ParseChapterAtom( int i_level, KaxChapterAtom *ca, chapter_item_c & chapters )
4857 msg_Dbg( &sys.demuxer, "| | | + ChapterAtom (level=%d)", i_level );
4858 for( i = 0; i < ca->ListSize(); i++ )
4860 EbmlElement *l = (*ca)[i];
4862 if( MKV_IS_ID( l, KaxChapterUID ) )
4864 chapters.i_uid = uint64_t(*(KaxChapterUID*)l);
4865 msg_Dbg( &sys.demuxer, "| | | | + ChapterUID: %lld", chapters.i_uid );
4867 else if( MKV_IS_ID( l, KaxChapterFlagHidden ) )
4869 KaxChapterFlagHidden &flag =*(KaxChapterFlagHidden*)l;
4870 chapters.b_display_seekpoint = uint8( flag ) == 0;
4872 msg_Dbg( &sys.demuxer, "| | | | + ChapterFlagHidden: %s", chapters.b_display_seekpoint ? "no":"yes" );
4874 else if( MKV_IS_ID( l, KaxChapterTimeStart ) )
4876 KaxChapterTimeStart &start =*(KaxChapterTimeStart*)l;
4877 chapters.i_start_time = uint64( start ) / I64C(1000);
4879 msg_Dbg( &sys.demuxer, "| | | | + ChapterTimeStart: %lld", chapters.i_start_time );
4881 else if( MKV_IS_ID( l, KaxChapterTimeEnd ) )
4883 KaxChapterTimeEnd &end =*(KaxChapterTimeEnd*)l;
4884 chapters.i_end_time = uint64( end ) / I64C(1000);
4886 msg_Dbg( &sys.demuxer, "| | | | + ChapterTimeEnd: %lld", chapters.i_end_time );
4888 else if( MKV_IS_ID( l, KaxChapterDisplay ) )
4890 EbmlMaster *cd = static_cast<EbmlMaster *>(l);
4892 msg_Dbg( &sys.demuxer, "| | | | + ChapterDisplay" );
4893 for( j = 0; j < cd->ListSize(); j++ )
4895 EbmlElement *l= (*cd)[j];
4897 if( MKV_IS_ID( l, KaxChapterString ) )
4901 KaxChapterString &name =*(KaxChapterString*)l;
4902 for (k = 0; k < i_level; k++)
4903 chapters.psz_name += '+';
4904 chapters.psz_name += ' ';
4905 char *psz_tmp_utf8 = ToUTF8( UTFstring( name ) );
4906 chapters.psz_name += psz_tmp_utf8;
4907 chapters.b_user_display = true;
4909 msg_Dbg( &sys.demuxer, "| | | | | + ChapterString '%s'", psz_tmp_utf8 );
4910 free( psz_tmp_utf8 );
4912 else if( MKV_IS_ID( l, KaxChapterLanguage ) )
4914 KaxChapterLanguage &lang =*(KaxChapterLanguage*)l;
4915 const char *psz = string( lang ).c_str();
4917 msg_Dbg( &sys.demuxer, "| | | | | + ChapterLanguage '%s'", psz );
4919 else if( MKV_IS_ID( l, KaxChapterCountry ) )
4921 KaxChapterCountry &ct =*(KaxChapterCountry*)l;
4922 const char *psz = string( ct ).c_str();
4924 msg_Dbg( &sys.demuxer, "| | | | | + ChapterCountry '%s'", psz );
4928 else if( MKV_IS_ID( l, KaxChapterProcess ) )
4930 msg_Dbg( &sys.demuxer, "| | | | + ChapterProcess" );
4932 KaxChapterProcess *cp = static_cast<KaxChapterProcess *>(l);
4933 chapter_codec_cmds_c *p_ccodec = NULL;
4935 for( j = 0; j < cp->ListSize(); j++ )
4937 EbmlElement *k= (*cp)[j];
4939 if( MKV_IS_ID( k, KaxChapterProcessCodecID ) )
4941 KaxChapterProcessCodecID *p_codec_id = static_cast<KaxChapterProcessCodecID*>( k );
4942 if ( uint32(*p_codec_id) == 0 )
4943 p_ccodec = new matroska_script_codec_c( sys );
4944 else if ( uint32(*p_codec_id) == 1 )
4945 p_ccodec = new dvd_chapter_codec_c( sys );
4950 if ( p_ccodec != NULL )
4952 for( j = 0; j < cp->ListSize(); j++ )
4954 EbmlElement *k= (*cp)[j];
4956 if( MKV_IS_ID( k, KaxChapterProcessPrivate ) )
4958 KaxChapterProcessPrivate * p_private = static_cast<KaxChapterProcessPrivate*>( k );
4959 p_ccodec->SetPrivate( *p_private );
4961 else if( MKV_IS_ID( k, KaxChapterProcessCommand ) )
4963 p_ccodec->AddCommand( *static_cast<KaxChapterProcessCommand*>( k ) );
4966 chapters.codecs.push_back( p_ccodec );
4969 else if( MKV_IS_ID( l, KaxChapterAtom ) )
4971 chapter_item_c *new_sub_chapter = new chapter_item_c();
4972 ParseChapterAtom( i_level+1, static_cast<KaxChapterAtom *>(l), *new_sub_chapter );
4973 new_sub_chapter->psz_parent = &chapters;
4974 chapters.sub_chapters.push_back( new_sub_chapter );
4979 /*****************************************************************************
4981 *****************************************************************************/
4982 void matroska_segment_c::ParseAttachments( KaxAttachments *attachments )
4985 int i_upper_level = 0;
4987 attachments->Read( es, attachments->Generic().Context, i_upper_level, el, true );
4989 KaxAttached *attachedFile = FindChild<KaxAttached>( *attachments );
4991 while( attachedFile && ( attachedFile->GetSize() > 0 ) )
4993 std::string psz_mime_type = GetChild<KaxMimeType>( *attachedFile );
4994 KaxFileName &file_name = GetChild<KaxFileName>( *attachedFile );
4995 KaxFileData &img_data = GetChild<KaxFileData>( *attachedFile );
4997 attachment_c *new_attachment = new attachment_c();
4999 if( new_attachment )
5001 new_attachment->psz_file_name = ToUTF8( UTFstring( file_name ) );
5002 new_attachment->psz_mime_type = psz_mime_type;
5003 new_attachment->i_size = img_data.GetSize();
5004 new_attachment->p_data = malloc( img_data.GetSize() );
5006 if( new_attachment->p_data )
5008 memcpy( new_attachment->p_data, img_data.GetBuffer(), img_data.GetSize() );
5009 sys.stored_attachments.push_back( new_attachment );
5013 delete new_attachment;
5017 attachedFile = &GetNextChild<KaxAttached>( *attachments, *attachedFile );
5021 /*****************************************************************************
5023 *****************************************************************************/
5024 void matroska_segment_c::ParseChapters( KaxChapters *chapters )
5028 int i_upper_level = 0;
5031 /* Master elements */
5032 chapters->Read( es, chapters->Generic().Context, i_upper_level, el, true );
5034 for( i = 0; i < chapters->ListSize(); i++ )
5036 EbmlElement *l = (*chapters)[i];
5038 if( MKV_IS_ID( l, KaxEditionEntry ) )
5040 chapter_edition_c *p_edition = new chapter_edition_c();
5042 EbmlMaster *E = static_cast<EbmlMaster *>(l );
5044 msg_Dbg( &sys.demuxer, "| | + EditionEntry" );
5045 for( j = 0; j < E->ListSize(); j++ )
5047 EbmlElement *l = (*E)[j];
5049 if( MKV_IS_ID( l, KaxChapterAtom ) )
5051 chapter_item_c *new_sub_chapter = new chapter_item_c();
5052 ParseChapterAtom( 0, static_cast<KaxChapterAtom *>(l), *new_sub_chapter );
5053 p_edition->sub_chapters.push_back( new_sub_chapter );
5055 else if( MKV_IS_ID( l, KaxEditionUID ) )
5057 p_edition->i_uid = uint64(*static_cast<KaxEditionUID *>( l ));
5059 else if( MKV_IS_ID( l, KaxEditionFlagOrdered ) )
5061 p_edition->b_ordered = config_GetInt( &sys.demuxer, "mkv-use-ordered-chapters" ) ? (uint8(*static_cast<KaxEditionFlagOrdered *>( l )) != 0) : 0;
5063 else if( MKV_IS_ID( l, KaxEditionFlagDefault ) )
5065 if (uint8(*static_cast<KaxEditionFlagDefault *>( l )) != 0)
5066 i_default_edition = stored_editions.size();
5070 msg_Dbg( &sys.demuxer, "| | | + Unknown (%s)", typeid(*l).name() );
5073 stored_editions.push_back( p_edition );
5077 msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid(*l).name() );
5081 for( i = 0; i < stored_editions.size(); i++ )
5083 stored_editions[i]->RefreshChapters( );
5086 if ( stored_editions.size() != 0 && stored_editions[i_default_edition]->b_ordered )
5088 /* update the duration of the segment according to the sum of all sub chapters */
5089 i_dur = stored_editions[i_default_edition]->Duration() / I64C(1000);
5095 void matroska_segment_c::ParseCluster( )
5100 int i_upper_level = 0;
5102 /* Master elements */
5103 m = static_cast<EbmlMaster *>( cluster );
5104 m->Read( es, cluster->Generic().Context, i_upper_level, el, true );
5106 for( i = 0; i < m->ListSize(); i++ )
5108 EbmlElement *l = (*m)[i];
5110 if( MKV_IS_ID( l, KaxClusterTimecode ) )
5112 KaxClusterTimecode &ctc = *(KaxClusterTimecode*)l;
5114 cluster->InitTimecode( uint64( ctc ), i_timescale );
5119 i_start_time = cluster->GlobalTimecode() / 1000;
5122 /*****************************************************************************
5123 * InformationCreate:
5124 *****************************************************************************/
5125 void matroska_segment_c::InformationCreate( )
5127 sys.meta = vlc_meta_New();
5131 vlc_meta_SetTitle( sys.meta, psz_title );
5135 vlc_meta_SetDate( sys.meta, psz_date_utc );
5138 if( psz_segment_filename )
5140 fprintf( stderr, "***** WARNING: Unhandled meta - Use custom\n" );
5142 if( psz_muxing_application )
5144 fprintf( stderr, "***** WARNING: Unhandled meta - Use custom\n" );
5146 if( psz_writing_application )
5148 fprintf( stderr, "***** WARNING: Unhandled meta - Use custom\n" );
5151 for( size_t i_track = 0; i_track < tracks.size(); i_track++ )
5153 // mkv_track_t *tk = tracks[i_track];
5154 // vlc_meta_t *mtk = vlc_meta_New();
5155 fprintf( stderr, "***** WARNING: Unhandled child meta\n");
5159 if( i_tags_position >= 0 )
5161 vlc_bool_t b_seekable;
5163 stream_Control( sys.demuxer.s, STREAM_CAN_FASTSEEK, &b_seekable );
5172 /*****************************************************************************
5174 *****************************************************************************/
5176 void matroska_segment_c::IndexAppendCluster( KaxCluster *cluster )
5178 #define idx p_indexes[i_index]
5180 idx.i_block_number= -1;
5181 idx.i_position = cluster->GetElementPosition();
5183 idx.b_key = VLC_TRUE;
5186 if( i_index >= i_index_max )
5188 i_index_max += 1024;
5189 p_indexes = (mkv_index_t*)realloc( p_indexes, sizeof( mkv_index_t ) * i_index_max );
5194 void chapter_edition_c::RefreshChapters( )
5196 chapter_item_c::RefreshChapters( b_ordered, -1 );
5197 b_display_seekpoint = false;
5200 int64_t chapter_item_c::RefreshChapters( bool b_ordered, int64_t i_prev_user_time )
5202 int64_t i_user_time = i_prev_user_time;
5204 // first the sub-chapters, and then ourself
5205 std::vector<chapter_item_c*>::iterator index = sub_chapters.begin();
5206 while ( index != sub_chapters.end() )
5208 i_user_time = (*index)->RefreshChapters( b_ordered, i_user_time );
5214 // the ordered chapters always start at zero
5215 if ( i_prev_user_time == -1 )
5217 if ( i_user_time == -1 )
5219 i_prev_user_time = 0;
5222 i_user_start_time = i_prev_user_time;
5223 if ( i_end_time != -1 && i_user_time == i_prev_user_time )
5225 i_user_end_time = i_user_start_time - i_start_time + i_end_time;
5229 i_user_end_time = i_user_time;
5234 if ( sub_chapters.begin() != sub_chapters.end() )
5235 std::sort( sub_chapters.begin(), sub_chapters.end(), chapter_item_c::CompareTimecode );
5236 i_user_start_time = i_start_time;
5237 if ( i_end_time != -1 )
5238 i_user_end_time = i_end_time;
5239 else if ( i_user_time != -1 )
5240 i_user_end_time = i_user_time;
5242 i_user_end_time = i_user_start_time;
5245 return i_user_end_time;
5248 mtime_t chapter_edition_c::Duration() const
5250 mtime_t i_result = 0;
5252 if ( sub_chapters.size() )
5254 std::vector<chapter_item_c*>::const_iterator index = sub_chapters.end();
5256 i_result = (*index)->i_user_end_time;
5262 chapter_item_c * chapter_edition_c::FindTimecode( mtime_t i_timecode, const chapter_item_c * p_current )
5266 bool b_found_current = false;
5267 return chapter_item_c::FindTimecode( i_timecode, p_current, b_found_current );
5270 chapter_item_c *chapter_item_c::FindTimecode( mtime_t i_user_timecode, const chapter_item_c * p_current, bool & b_found )
5272 chapter_item_c *psz_result = NULL;
5274 if ( p_current == this )
5277 if ( i_user_timecode >= i_user_start_time &&
5278 ( i_user_timecode < i_user_end_time ||
5279 ( i_user_start_time == i_user_end_time && i_user_timecode == i_user_end_time )))
5281 std::vector<chapter_item_c*>::iterator index = sub_chapters.begin();
5282 while ( index != sub_chapters.end() && ((p_current == NULL && psz_result == NULL) || (p_current != NULL && (!b_found || psz_result == NULL))))
5284 psz_result = (*index)->FindTimecode( i_user_timecode, p_current, b_found );
5288 if ( psz_result == NULL )
5295 bool chapter_item_c::ParentOf( const chapter_item_c & item ) const
5297 if ( &item == this )
5300 std::vector<chapter_item_c*>::const_iterator index = sub_chapters.begin();
5301 while ( index != sub_chapters.end() )
5303 if ( (*index)->ParentOf( item ) )
5311 void demux_sys_t::PreloadFamily( const matroska_segment_c & of_segment )
5313 for (size_t i=0; i<opened_segments.size(); i++)
5315 opened_segments[i]->PreloadFamily( of_segment );
5318 bool matroska_segment_c::PreloadFamily( const matroska_segment_c & of_segment )
5323 for (size_t i=0; i<families.size(); i++)
5325 for (size_t j=0; j<of_segment.families.size(); j++)
5327 if ( *(families[i]) == *(of_segment.families[j]) )
5335 // preload all the linked segments for all preloaded segments
5336 void demux_sys_t::PreloadLinked( matroska_segment_c *p_segment )
5338 size_t i_preloaded, i, j;
5339 virtual_segment_c *p_seg;
5341 p_current_segment = VirtualFromSegments( p_segment );
5343 used_segments.push_back( p_current_segment );
5345 // create all the other virtual segments of the family
5348 for ( i=0; i< opened_segments.size(); i++ )
5350 if ( opened_segments[i]->b_preloaded && !IsUsedSegment( *opened_segments[i] ) )
5352 p_seg = VirtualFromSegments( opened_segments[i] );
5353 used_segments.push_back( p_seg );
5357 } while ( i_preloaded ); // worst case: will stop when all segments are found as family related
5359 // publish all editions of all usable segment
5360 for ( i=0; i< used_segments.size(); i++ )
5362 p_seg = used_segments[i];
5363 if ( p_seg->p_editions != NULL )
5365 std::string sz_name;
5366 input_title_t *p_title = vlc_input_title_New();
5367 p_seg->i_sys_title = i;
5370 // TODO use a name for each edition, let the TITLE deal with a codec name
5371 for ( j=0; j<p_seg->p_editions->size(); j++ )
5373 if ( p_title->psz_name == NULL )
5375 sz_name = (*p_seg->p_editions)[j]->GetMainName();
5376 if ( sz_name != "" )
5377 p_title->psz_name = strdup( sz_name.c_str() );
5380 chapter_edition_c *p_edition = (*p_seg->p_editions)[j];
5383 p_edition->PublishChapters( *p_title, i_chapters, 0 );
5386 // create a name if there is none
5387 if ( p_title->psz_name == NULL )
5389 sz_name = N_("Segment");
5391 sprintf( psz_str, " %d", (int)i );
5393 p_title->psz_name = strdup( sz_name.c_str() );
5396 titles.push_back( p_title );
5400 // TODO decide which segment should be first used (VMG for DVD)
5403 bool demux_sys_t::IsUsedSegment( matroska_segment_c &segment ) const
5405 for ( size_t i=0; i< used_segments.size(); i++ )
5407 if ( used_segments[i]->FindUID( *segment.p_segment_uid ) )
5413 virtual_segment_c *demux_sys_t::VirtualFromSegments( matroska_segment_c *p_segment ) const
5415 size_t i_preloaded, i;
5417 virtual_segment_c *p_result = new virtual_segment_c( p_segment );
5419 // fill our current virtual segment with all hard linked segments
5422 for ( i=0; i< opened_segments.size(); i++ )
5424 i_preloaded += p_result->AddSegment( opened_segments[i] );
5426 } while ( i_preloaded ); // worst case: will stop when all segments are found as linked
5430 p_result->PreloadLinked( );
5432 p_result->PrepareChapters( );
5437 bool demux_sys_t::PreparePlayback( virtual_segment_c *p_new_segment )
5439 if ( p_new_segment != NULL && p_new_segment != p_current_segment )
5441 if ( p_current_segment != NULL && p_current_segment->Segment() != NULL )
5442 p_current_segment->Segment()->UnSelect();
5444 p_current_segment = p_new_segment;
5445 i_current_title = p_new_segment->i_sys_title;
5448 p_current_segment->LoadCues();
5449 f_duration = p_current_segment->Duration();
5451 /* add information */
5452 p_current_segment->Segment()->InformationCreate( );
5454 p_current_segment->Segment()->Select( 0 );
5459 void demux_sys_t::JumpTo( virtual_segment_c & vsegment, chapter_item_c * p_chapter )
5461 // if the segment is not part of the current segment, select the new one
5462 if ( &vsegment != p_current_segment )
5464 PreparePlayback( &vsegment );
5467 if ( p_chapter != NULL )
5469 if ( !p_chapter->Enter( true ) )
5471 // jump to the location in the found segment
5472 vsegment.Seek( demuxer, p_chapter->i_user_start_time, -1, p_chapter );
5478 bool matroska_segment_c::CompareSegmentUIDs( const matroska_segment_c * p_item_a, const matroska_segment_c * p_item_b )
5482 if ( p_item_a == NULL || p_item_b == NULL )
5485 p_tmp = (EbmlBinary *)p_item_a->p_segment_uid;
5486 if ( p_item_b->p_prev_segment_uid != NULL
5487 && *p_tmp == *p_item_b->p_prev_segment_uid )
5490 p_tmp = (EbmlBinary *)p_item_a->p_next_segment_uid;
5494 if ( p_item_b->p_segment_uid != NULL
5495 && *p_tmp == *p_item_b->p_segment_uid )
5498 if ( p_item_b->p_prev_segment_uid != NULL
5499 && *p_tmp == *p_item_b->p_prev_segment_uid )
5505 bool matroska_segment_c::Preload( )
5510 EbmlElement *el = NULL;
5512 ep->Reset( &sys.demuxer );
5514 while( ( el = ep->Get() ) != NULL )
5516 if( MKV_IS_ID( el, KaxInfo ) )
5518 ParseInfo( static_cast<KaxInfo*>( el ) );
5520 else if( MKV_IS_ID( el, KaxTracks ) )
5522 ParseTracks( static_cast<KaxTracks*>( el ) );
5523 if ( tracks.size() == 0 )
5525 msg_Err( &sys.demuxer, "No tracks supported" );
5529 else if( MKV_IS_ID( el, KaxSeekHead ) )
5531 ParseSeekHead( static_cast<KaxSeekHead*>( el ) );
5533 else if( MKV_IS_ID( el, KaxCues ) )
5535 msg_Dbg( &sys.demuxer, "| + Cues" );
5537 else if( MKV_IS_ID( el, KaxCluster ) )
5539 msg_Dbg( &sys.demuxer, "| + Cluster" );
5541 cluster = (KaxCluster*)el;
5543 i_cluster_pos = i_start_pos = cluster->GetElementPosition();
5547 /* stop parsing the stream */
5550 else if( MKV_IS_ID( el, KaxAttachments ) )
5552 msg_Dbg( &sys.demuxer, "| + Attachments" );
5553 ParseAttachments( static_cast<KaxAttachments*>( el ) );
5555 else if( MKV_IS_ID( el, KaxChapters ) )
5557 msg_Dbg( &sys.demuxer, "| + Chapters" );
5558 ParseChapters( static_cast<KaxChapters*>( el ) );
5560 else if( MKV_IS_ID( el, KaxTag ) )
5562 msg_Dbg( &sys.demuxer, "| + Tags FIXME TODO" );
5566 msg_Dbg( &sys.demuxer, "| + Unknown (%s)", typeid(*el).name() );
5575 matroska_segment_c *demux_sys_t::FindSegment( const EbmlBinary & uid ) const
5577 for (size_t i=0; i<opened_segments.size(); i++)
5579 if ( *opened_segments[i]->p_segment_uid == uid )
5580 return opened_segments[i];
5585 chapter_item_c *demux_sys_t::BrowseCodecPrivate( unsigned int codec_id,
5586 bool (*match)(const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ),
5587 const void *p_cookie,
5588 size_t i_cookie_size,
5589 virtual_segment_c * &p_segment_found )
5591 chapter_item_c *p_result = NULL;
5592 for (size_t i=0; i<used_segments.size(); i++)
5594 p_result = used_segments[i]->BrowseCodecPrivate( codec_id, match, p_cookie, i_cookie_size );
5595 if ( p_result != NULL )
5597 p_segment_found = used_segments[i];
5604 chapter_item_c *demux_sys_t::FindChapter( int64_t i_find_uid, virtual_segment_c * & p_segment_found )
5606 chapter_item_c *p_result = NULL;
5607 for (size_t i=0; i<used_segments.size(); i++)
5609 p_result = used_segments[i]->FindChapter( i_find_uid );
5610 if ( p_result != NULL )
5612 p_segment_found = used_segments[i];
5619 void virtual_segment_c::Sort()
5621 // keep the current segment index
5622 matroska_segment_c *p_segment = linked_segments[i_current_segment];
5624 std::sort( linked_segments.begin(), linked_segments.end(), matroska_segment_c::CompareSegmentUIDs );
5626 for ( i_current_segment=0; i_current_segment<linked_segments.size(); i_current_segment++)
5627 if ( linked_segments[i_current_segment] == p_segment )
5631 size_t virtual_segment_c::AddSegment( matroska_segment_c *p_segment )
5634 // check if it's not already in here
5635 for ( i=0; i<linked_segments.size(); i++ )
5637 if ( linked_segments[i]->p_segment_uid != NULL
5638 && p_segment->p_segment_uid != NULL
5639 && *p_segment->p_segment_uid == *linked_segments[i]->p_segment_uid )
5643 // find possible mates
5644 for ( i=0; i<linked_uids.size(); i++ )
5646 if ( (p_segment->p_segment_uid != NULL && *p_segment->p_segment_uid == linked_uids[i])
5647 || (p_segment->p_prev_segment_uid != NULL && *p_segment->p_prev_segment_uid == linked_uids[i])
5648 || (p_segment->p_next_segment_uid !=NULL && *p_segment->p_next_segment_uid == linked_uids[i]) )
5650 linked_segments.push_back( p_segment );
5652 AppendUID( p_segment->p_prev_segment_uid );
5653 AppendUID( p_segment->p_next_segment_uid );
5661 void virtual_segment_c::PreloadLinked( )
5663 for ( size_t i=0; i<linked_segments.size(); i++ )
5665 linked_segments[i]->Preload( );
5667 i_current_edition = linked_segments[0]->i_default_edition;
5670 mtime_t virtual_segment_c::Duration() const
5673 if ( linked_segments.size() == 0 )
5676 matroska_segment_c *p_last_segment = linked_segments[linked_segments.size()-1];
5677 // p_last_segment->ParseCluster( );
5679 i_duration = p_last_segment->i_start_time / 1000 + p_last_segment->i_duration;
5684 void virtual_segment_c::LoadCues( )
5686 for ( size_t i=0; i<linked_segments.size(); i++ )
5688 linked_segments[i]->LoadCues();
5692 void virtual_segment_c::AppendUID( const EbmlBinary * p_UID )
5694 if ( p_UID == NULL )
5696 if ( p_UID->GetBuffer() == NULL )
5699 for (size_t i=0; i<linked_uids.size(); i++)
5701 if ( *p_UID == linked_uids[i] )
5704 linked_uids.push_back( *(KaxSegmentUID*)(p_UID) );
5707 void matroska_segment_c::Seek( mtime_t i_date, mtime_t i_time_offset )
5710 #if LIBMATROSKA_VERSION >= 0x000800
5711 KaxSimpleBlock *simpleblock;
5713 int i_track_skipping;
5714 int64_t i_block_duration;
5715 int64_t i_block_ref1;
5716 int64_t i_block_ref2;
5718 int64_t i_seek_position = i_start_pos;
5719 int64_t i_seek_time = i_start_time;
5725 for( ; i_idx < i_index; i_idx++ )
5727 if( p_indexes[i_idx].i_time + i_time_offset > i_date )
5738 i_seek_position = p_indexes[i_idx].i_position;
5739 i_seek_time = p_indexes[i_idx].i_time;
5742 msg_Dbg( &sys.demuxer, "seek got "I64Fd" (%d%%)",
5743 i_seek_time, (int)( 100 * i_seek_position / stream_Size( sys.demuxer.s ) ) );
5745 es.I_O().setFilePointer( i_seek_position, seek_beginning );
5748 ep = new EbmlParser( &es, segment, &sys.demuxer );
5751 sys.i_start_pts = i_date;
5753 es_out_Control( sys.demuxer.out, ES_OUT_RESET_PCR );
5755 /* now parse until key frame */
5756 i_track_skipping = 0;
5757 for( i_track = 0; i_track < tracks.size(); i_track++ )
5759 if( tracks[i_track]->fmt.i_cat == VIDEO_ES )
5761 tracks[i_track]->b_search_keyframe = VLC_TRUE;
5764 es_out_Control( sys.demuxer.out, ES_OUT_SET_NEXT_DISPLAY_TIME, tracks[i_track]->p_es, i_date );
5768 while( i_track_skipping > 0 )
5770 #if LIBMATROSKA_VERSION >= 0x000800
5771 if( BlockGet( block, simpleblock, &i_block_ref1, &i_block_ref2, &i_block_duration ) )
5773 if( BlockGet( block, &i_block_ref1, &i_block_ref2, &i_block_duration ) )
5776 msg_Warn( &sys.demuxer, "cannot get block EOF?" );
5782 for( i_track = 0; i_track < tracks.size(); i_track++ )
5784 #if LIBMATROSKA_VERSION >= 0x000800
5785 if( (simpleblock && tracks[i_track]->i_number == simpleblock->TrackNum()) ||
5786 (block && tracks[i_track]->i_number == block->TrackNum()) )
5788 if( tracks[i_track]->i_number == block->TrackNum() )
5795 #if LIBMATROSKA_VERSION >= 0x000800
5797 sys.i_pts = (sys.i_chapter_time + simpleblock->GlobalTimecode()) / (mtime_t) 1000;
5800 sys.i_pts = (sys.i_chapter_time + block->GlobalTimecode()) / (mtime_t) 1000;
5802 if( i_track < tracks.size() )
5804 if( sys.i_pts >= sys.i_start_pts )
5806 cluster = static_cast<KaxCluster*>(ep->UnGet( i_block_pos, i_cluster_pos ));
5807 i_track_skipping = 0;
5809 else if( tracks[i_track]->fmt.i_cat == VIDEO_ES )
5811 if( i_block_ref1 == 0 && tracks[i_track]->b_search_keyframe )
5813 tracks[i_track]->b_search_keyframe = VLC_FALSE;
5816 if( !tracks[i_track]->b_search_keyframe )
5818 #if LIBMATROSKA_VERSION >= 0x000800
5819 BlockDecode( &sys.demuxer, block, simpleblock, sys.i_pts, 0, i_block_ref1 >= 0 || i_block_ref2 > 0 );
5821 BlockDecode( &sys.demuxer, block, sys.i_pts, 0, i_block_ref1 >= 0 || i_block_ref2 > 0 );
5831 void virtual_segment_c::Seek( demux_t & demuxer, mtime_t i_date, mtime_t i_time_offset, chapter_item_c *psz_chapter )
5833 demux_sys_t *p_sys = demuxer.p_sys;
5836 // find the actual time for an ordered edition
5837 if ( psz_chapter == NULL )
5839 if ( Edition() && Edition()->b_ordered )
5841 /* 1st, we need to know in which chapter we are */
5842 psz_chapter = (*p_editions)[i_current_edition]->FindTimecode( i_date, psz_current_chapter );
5846 if ( psz_chapter != NULL )
5848 psz_current_chapter = psz_chapter;
5849 p_sys->i_chapter_time = i_time_offset = psz_chapter->i_user_start_time - psz_chapter->i_start_time;
5850 if ( psz_chapter->i_seekpoint_num > 0 )
5852 demuxer.info.i_update |= INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT;
5853 demuxer.info.i_title = p_sys->i_current_title = i_sys_title;
5854 demuxer.info.i_seekpoint = psz_chapter->i_seekpoint_num - 1;
5858 // find the best matching segment
5859 for ( i=0; i<linked_segments.size(); i++ )
5861 if ( i_date < linked_segments[i]->i_start_time )
5868 if ( i_current_segment != i )
5870 linked_segments[i_current_segment]->UnSelect();
5871 linked_segments[i]->Select( i_date );
5872 i_current_segment = i;
5875 linked_segments[i]->Seek( i_date, i_time_offset );
5878 void chapter_codec_cmds_c::AddCommand( const KaxChapterProcessCommand & command )
5882 uint32 codec_time = uint32(-1);
5883 for( i = 0; i < command.ListSize(); i++ )
5885 const EbmlElement *k = command[i];
5887 if( MKV_IS_ID( k, KaxChapterProcessTime ) )
5889 codec_time = uint32( *static_cast<const KaxChapterProcessTime*>( k ) );
5894 for( i = 0; i < command.ListSize(); i++ )
5896 const EbmlElement *k = command[i];
5898 if( MKV_IS_ID( k, KaxChapterProcessData ) )
5900 KaxChapterProcessData *p_data = new KaxChapterProcessData( *static_cast<const KaxChapterProcessData*>( k ) );
5901 switch ( codec_time )
5904 during_cmds.push_back( p_data );
5907 enter_cmds.push_back( p_data );
5910 leave_cmds.push_back( p_data );
5919 bool chapter_item_c::Enter( bool b_do_subs )
5921 bool f_result = false;
5922 std::vector<chapter_codec_cmds_c*>::iterator index = codecs.begin();
5923 while ( index != codecs.end() )
5925 f_result |= (*index)->Enter();
5932 std::vector<chapter_item_c*>::iterator index_ = sub_chapters.begin();
5933 while ( index_ != sub_chapters.end() )
5935 f_result |= (*index_)->Enter( true );
5942 bool chapter_item_c::Leave( bool b_do_subs )
5944 bool f_result = false;
5945 b_is_leaving = true;
5946 std::vector<chapter_codec_cmds_c*>::iterator index = codecs.begin();
5947 while ( index != codecs.end() )
5949 f_result |= (*index)->Leave();
5956 std::vector<chapter_item_c*>::iterator index_ = sub_chapters.begin();
5957 while ( index_ != sub_chapters.end() )
5959 f_result |= (*index_)->Leave( true );
5963 b_is_leaving = false;
5967 bool chapter_item_c::EnterAndLeave( chapter_item_c *p_item, bool b_final_enter )
5969 chapter_item_c *p_common_parent = p_item;
5971 // leave, up to a common parent
5972 while ( p_common_parent != NULL && !p_common_parent->ParentOf( *this ) )
5974 if ( !p_common_parent->b_is_leaving && p_common_parent->Leave( false ) )
5976 p_common_parent = p_common_parent->psz_parent;
5979 // enter from the parent to <this>
5980 if ( p_common_parent != NULL )
5984 if ( p_common_parent == this )
5985 return Enter( true );
5987 for ( size_t i = 0; i<p_common_parent->sub_chapters.size(); i++ )
5989 if ( p_common_parent->sub_chapters[i]->ParentOf( *this ) )
5991 p_common_parent = p_common_parent->sub_chapters[i];
5992 if ( p_common_parent != this )
5993 if ( p_common_parent->Enter( false ) )
6002 if ( b_final_enter )
6003 return Enter( true );
6008 bool dvd_chapter_codec_c::Enter()
6010 bool f_result = false;
6011 std::vector<KaxChapterProcessData*>::iterator index = enter_cmds.begin();
6012 while ( index != enter_cmds.end() )
6014 if ( (*index)->GetSize() )
6016 binary *p_data = (*index)->GetBuffer();
6017 size_t i_size = *p_data++;
6018 // avoid reading too much from the buffer
6019 i_size = min( i_size, ((*index)->GetSize() - 1) >> 3 );
6020 for ( ; i_size > 0; i_size--, p_data += 8 )
6022 msg_Dbg( &sys.demuxer, "Matroska DVD enter command" );
6023 f_result |= sys.dvd_interpretor.Interpret( p_data );
6031 bool dvd_chapter_codec_c::Leave()
6033 bool f_result = false;
6034 std::vector<KaxChapterProcessData*>::iterator index = leave_cmds.begin();
6035 while ( index != leave_cmds.end() )
6037 if ( (*index)->GetSize() )
6039 binary *p_data = (*index)->GetBuffer();
6040 size_t i_size = *p_data++;
6041 // avoid reading too much from the buffer
6042 i_size = min( i_size, ((*index)->GetSize() - 1) >> 3 );
6043 for ( ; i_size > 0; i_size--, p_data += 8 )
6045 msg_Dbg( &sys.demuxer, "Matroska DVD leave command" );
6046 f_result |= sys.dvd_interpretor.Interpret( p_data );
6054 // see http://www.dvd-replica.com/DVD/vmcmdset.php for a description of DVD commands
6055 bool dvd_command_interpretor_c::Interpret( const binary * p_command, size_t i_size )
6060 virtual_segment_c *p_segment = NULL;
6061 chapter_item_c *p_chapter = NULL;
6062 bool f_result = false;
6063 uint16 i_command = ( p_command[0] << 8 ) + p_command[1];
6065 // handle register tests if there are some
6066 if ( (i_command & 0xF0) != 0 )
6068 bool b_test_positive = true;//(i_command & CMD_DVD_IF_NOT) == 0;
6069 bool b_test_value = (i_command & CMD_DVD_TEST_VALUE) != 0;
6070 uint8 i_test = i_command & 0x70;
6073 // see http://dvd.sourceforge.net/dvdinfo/vmi.html
6076 switch ( i_command >> 12 )
6079 i_cr1 = p_command[3];
6080 i_cr2 = (p_command[4] << 8) + p_command[5];
6085 i_cr1 = p_command[6];
6086 i_cr2 = p_command[7];
6087 b_test_value = false;
6091 if ( ((p_command[1] >> 4) & 0x7) == 0)
6093 i_cr1 = p_command[2];
6094 i_cr2 = (p_command[6] << 8) + p_command[7];
6098 i_cr1 = p_command[2];
6099 i_cr2 = (p_command[6] << 8) + p_command[7];
6107 i_value = GetPRM( i_cr2 );
6111 case CMD_DVD_IF_GPREG_EQUAL:
6113 msg_Dbg( &sys.demuxer, "IF %s EQUALS %s", GetRegTypeName( false, i_cr1 ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
6114 if (!( GetPRM( i_cr1 ) == i_value ))
6116 b_test_positive = false;
6119 case CMD_DVD_IF_GPREG_NOT_EQUAL:
6121 msg_Dbg( &sys.demuxer, "IF %s NOT EQUALS %s", GetRegTypeName( false, i_cr1 ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
6122 if (!( GetPRM( i_cr1 ) != i_value ))
6124 b_test_positive = false;
6127 case CMD_DVD_IF_GPREG_INF:
6129 msg_Dbg( &sys.demuxer, "IF %s < %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
6130 if (!( GetPRM( i_cr1 ) < i_value ))
6132 b_test_positive = false;
6135 case CMD_DVD_IF_GPREG_INF_EQUAL:
6136 // if inferior or equal
6137 msg_Dbg( &sys.demuxer, "IF %s < %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
6138 if (!( GetPRM( i_cr1 ) <= i_value ))
6140 b_test_positive = false;
6143 case CMD_DVD_IF_GPREG_AND:
6145 msg_Dbg( &sys.demuxer, "IF %s & %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
6146 if (!( GetPRM( i_cr1 ) & i_value ))
6148 b_test_positive = false;
6151 case CMD_DVD_IF_GPREG_SUP:
6153 msg_Dbg( &sys.demuxer, "IF %s >= %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
6154 if (!( GetPRM( i_cr1 ) > i_value ))
6156 b_test_positive = false;
6159 case CMD_DVD_IF_GPREG_SUP_EQUAL:
6160 // if superior or equal
6161 msg_Dbg( &sys.demuxer, "IF %s >= %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() );
6162 if (!( GetPRM( i_cr1 ) >= i_value ))
6164 b_test_positive = false;
6169 if ( !b_test_positive )
6173 // strip the test command
6174 i_command &= 0xFF0F;
6176 switch ( i_command )
6181 msg_Dbg( &sys.demuxer, "NOP" );
6186 msg_Dbg( &sys.demuxer, "Break" );
6190 case CMD_DVD_JUMP_TT:
6192 uint8 i_title = p_command[5];
6193 msg_Dbg( &sys.demuxer, "JumpTT %d", i_title );
6195 // find in the ChapProcessPrivate matching this Title level
6196 p_chapter = sys.BrowseCodecPrivate( 1, MatchTitleNumber, &i_title, sizeof(i_title), p_segment );
6197 if ( p_segment != NULL )
6199 sys.JumpTo( *p_segment, p_chapter );
6205 case CMD_DVD_CALLSS_VTSM1:
6207 msg_Dbg( &sys.demuxer, "CallSS" );
6209 switch( (p_command[6] & 0xC0) >> 6 ) {
6211 p_type = p_command[5] & 0x0F;
6215 msg_Dbg( &sys.demuxer, "CallSS PGC (rsm_cell %x)", p_command[4]);
6218 msg_Dbg( &sys.demuxer, "CallSS Title Entry (rsm_cell %x)", p_command[4]);
6221 msg_Dbg( &sys.demuxer, "CallSS Root Menu (rsm_cell %x)", p_command[4]);
6224 msg_Dbg( &sys.demuxer, "CallSS Subpicture Menu (rsm_cell %x)", p_command[4]);
6227 msg_Dbg( &sys.demuxer, "CallSS Audio Menu (rsm_cell %x)", p_command[4]);
6230 msg_Dbg( &sys.demuxer, "CallSS Angle Menu (rsm_cell %x)", p_command[4]);
6233 msg_Dbg( &sys.demuxer, "CallSS Chapter Menu (rsm_cell %x)", p_command[4]);
6236 msg_Dbg( &sys.demuxer, "CallSS <unknown> (rsm_cell %x)", p_command[4]);
6239 p_chapter = sys.BrowseCodecPrivate( 1, MatchPgcType, &p_type, 1, p_segment );
6240 if ( p_segment != NULL )
6242 sys.JumpTo( *p_segment, p_chapter );
6247 msg_Dbg( &sys.demuxer, "CallSS VMGM (menu %d, rsm_cell %x)", p_command[5] & 0x0F, p_command[4]);
6250 msg_Dbg( &sys.demuxer, "CallSS VTSM (menu %d, rsm_cell %x)", p_command[5] & 0x0F, p_command[4]);
6253 msg_Dbg( &sys.demuxer, "CallSS VMGM (pgc %d, rsm_cell %x)", (p_command[2] << 8) + p_command[3], p_command[4]);
6258 case CMD_DVD_JUMP_SS:
6260 msg_Dbg( &sys.demuxer, "JumpSS");
6262 switch( (p_command[5] & 0xC0) >> 6 ) {
6264 msg_Dbg( &sys.demuxer, "JumpSS FP");
6267 p_type = p_command[5] & 0x0F;
6271 msg_Dbg( &sys.demuxer, "JumpSS VMGM Title Entry");
6274 msg_Dbg( &sys.demuxer, "JumpSS VMGM Root Menu");
6277 msg_Dbg( &sys.demuxer, "JumpSS VMGM Subpicture Menu");
6280 msg_Dbg( &sys.demuxer, "JumpSS VMGM Audio Menu");
6283 msg_Dbg( &sys.demuxer, "JumpSS VMGM Angle Menu");
6286 msg_Dbg( &sys.demuxer, "JumpSS VMGM Chapter Menu");
6289 msg_Dbg( &sys.demuxer, "JumpSS <unknown>");
6293 p_chapter = sys.BrowseCodecPrivate( 1, MatchIsVMG, NULL, 0, p_segment );
6294 if ( p_segment != NULL )
6296 p_chapter = p_segment->BrowseCodecPrivate( 1, MatchPgcType, &p_type, 1 );
6297 if ( p_chapter != NULL )
6299 sys.JumpTo( *p_segment, p_chapter );
6305 p_type = p_command[5] & 0x0F;
6309 msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Title Entry", p_command[4], p_command[3]);
6312 msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Root Menu", p_command[4], p_command[3]);
6315 msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Subpicture Menu", p_command[4], p_command[3]);
6318 msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Audio Menu", p_command[4], p_command[3]);
6321 msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Angle Menu", p_command[4], p_command[3]);
6324 msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Chapter Menu", p_command[4], p_command[3]);
6327 msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) <unknown>", p_command[4], p_command[3]);
6331 p_chapter = sys.BrowseCodecPrivate( 1, MatchVTSMNumber, &p_command[4], 1, p_segment );
6333 if ( p_segment != NULL && p_chapter != NULL )
6335 // find the title in the VTS
6336 p_chapter = p_chapter->BrowseCodecPrivate( 1, MatchTitleNumber, &p_command[3], 1 );
6337 if ( p_chapter != NULL )
6339 // find the specified menu in the VTSM
6340 p_chapter = p_segment->BrowseCodecPrivate( 1, MatchPgcType, &p_type, 1 );
6341 if ( p_chapter != NULL )
6343 sys.JumpTo( *p_segment, p_chapter );
6348 msg_Dbg( &sys.demuxer, "Title (%d) does not exist in this VTS", p_command[3] );
6351 msg_Dbg( &sys.demuxer, "DVD Domain VTS (%d) not found", p_command[4] );
6354 msg_Dbg( &sys.demuxer, "JumpSS VMGM (pgc %d)", (p_command[2] << 8) + p_command[3]);
6359 case CMD_DVD_JUMPVTS_PTT:
6361 uint8 i_title = p_command[5];
6362 uint8 i_ptt = p_command[3];
6364 msg_Dbg( &sys.demuxer, "JumpVTS Title (%d) PTT (%d)", i_title, i_ptt);
6366 // find the current VTS content segment
6367 p_chapter = sys.p_current_segment->BrowseCodecPrivate( 1, MatchIsDomain, NULL, 0 );
6368 if ( p_chapter != NULL )
6370 int16 i_curr_title = p_chapter->GetTitleNumber( );
6371 if ( i_curr_title > 0 )
6373 p_chapter = sys.BrowseCodecPrivate( 1, MatchVTSNumber, &i_curr_title, sizeof(i_curr_title), p_segment );
6375 if ( p_segment != NULL && p_chapter != NULL )
6377 // find the title in the VTS
6378 p_chapter = p_chapter->BrowseCodecPrivate( 1, MatchTitleNumber, &i_title, sizeof(i_title) );
6379 if ( p_chapter != NULL )
6381 // find the chapter in the title
6382 p_chapter = p_chapter->BrowseCodecPrivate( 1, MatchChapterNumber, &i_ptt, sizeof(i_ptt) );
6383 if ( p_chapter != NULL )
6385 sys.JumpTo( *p_segment, p_chapter );
6390 msg_Dbg( &sys.demuxer, "Title (%d) does not exist in this VTS", i_title );
6393 msg_Dbg( &sys.demuxer, "DVD Domain VTS (%d) not found", i_curr_title );
6396 msg_Dbg( &sys.demuxer, "JumpVTS_PTT command found but not in a VTS(M)");
6399 msg_Dbg( &sys.demuxer, "JumpVTS_PTT command but the DVD domain wasn't found");
6402 case CMD_DVD_SET_GPRMMD:
6404 msg_Dbg( &sys.demuxer, "Set GPRMMD [%d]=%d", (p_command[4] << 8) + p_command[5], (p_command[2] << 8) + p_command[3]);
6406 if ( !SetGPRM( (p_command[4] << 8) + p_command[5], (p_command[2] << 8) + p_command[3] ) )
6407 msg_Dbg( &sys.demuxer, "Set GPRMMD failed" );
6410 case CMD_DVD_LINKPGCN:
6412 uint16 i_pgcn = (p_command[6] << 8) + p_command[7];
6414 msg_Dbg( &sys.demuxer, "Link PGCN(%d)", i_pgcn );
6415 p_chapter = sys.p_current_segment->BrowseCodecPrivate( 1, MatchPgcNumber, &i_pgcn, 2 );
6416 if ( p_chapter != NULL )
6418 if ( !p_chapter->Enter( true ) )
6419 // jump to the location in the found segment
6420 sys.p_current_segment->Seek( sys.demuxer, p_chapter->i_user_start_time, -1, p_chapter );
6426 case CMD_DVD_LINKCN:
6428 uint8 i_cn = p_command[7];
6430 p_chapter = sys.p_current_segment->CurrentChapter();
6432 msg_Dbg( &sys.demuxer, "LinkCN (cell %d)", i_cn );
6433 p_chapter = p_chapter->BrowseCodecPrivate( 1, MatchCellNumber, &i_cn, 1 );
6434 if ( p_chapter != NULL )
6436 if ( !p_chapter->Enter( true ) )
6437 // jump to the location in the found segment
6438 sys.p_current_segment->Seek( sys.demuxer, p_chapter->i_user_start_time, -1, p_chapter );
6444 case CMD_DVD_GOTO_LINE:
6446 msg_Dbg( &sys.demuxer, "GotoLine (%d)", (p_command[6] << 8) + p_command[7] );
6450 case CMD_DVD_SET_HL_BTNN1:
6452 msg_Dbg( &sys.demuxer, "SetHL_BTN (%d)", p_command[4] );
6453 SetSPRM( 0x88, p_command[4] );
6458 msg_Dbg( &sys.demuxer, "unsupported command : %02X %02X %02X %02X %02X %02X %02X %02X"
6474 bool dvd_command_interpretor_c::MatchIsDomain( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6476 return ( data.p_private_data != NULL && data.p_private_data->GetBuffer()[0] == MATROSKA_DVD_LEVEL_SS );
6479 bool dvd_command_interpretor_c::MatchIsVMG( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6481 if ( data.p_private_data == NULL || data.p_private_data->GetSize() < 2 )
6484 return ( data.p_private_data->GetBuffer()[0] == MATROSKA_DVD_LEVEL_SS && data.p_private_data->GetBuffer()[1] == 0xC0);
6487 bool dvd_command_interpretor_c::MatchVTSNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6489 if ( i_cookie_size != 2 || data.p_private_data == NULL || data.p_private_data->GetSize() < 4 )
6492 if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_SS || data.p_private_data->GetBuffer()[1] != 0x80 )
6495 uint16 i_gtitle = (data.p_private_data->GetBuffer()[2] << 8 ) + data.p_private_data->GetBuffer()[3];
6496 uint16 i_title = *(uint16*)p_cookie;
6498 return (i_gtitle == i_title);
6501 bool dvd_command_interpretor_c::MatchVTSMNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6503 if ( i_cookie_size != 1 || data.p_private_data == NULL || data.p_private_data->GetSize() < 4 )
6506 if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_SS || data.p_private_data->GetBuffer()[1] != 0x40 )
6509 uint8 i_gtitle = data.p_private_data->GetBuffer()[3];
6510 uint8 i_title = *(uint8*)p_cookie;
6512 return (i_gtitle == i_title);
6515 bool dvd_command_interpretor_c::MatchTitleNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6517 if ( i_cookie_size != 1 || data.p_private_data == NULL || data.p_private_data->GetSize() < 4 )
6520 if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_TT )
6523 uint16 i_gtitle = (data.p_private_data->GetBuffer()[1] << 8 ) + data.p_private_data->GetBuffer()[2];
6524 uint8 i_title = *(uint8*)p_cookie;
6526 return (i_gtitle == i_title);
6529 bool dvd_command_interpretor_c::MatchPgcType( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6531 if ( i_cookie_size != 1 || data.p_private_data == NULL || data.p_private_data->GetSize() < 8 )
6534 if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_PGC )
6537 uint8 i_pgc_type = data.p_private_data->GetBuffer()[3] & 0x0F;
6538 uint8 i_pgc = *(uint8*)p_cookie;
6540 return (i_pgc_type == i_pgc);
6543 bool dvd_command_interpretor_c::MatchPgcNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6545 if ( i_cookie_size != 2 || data.p_private_data == NULL || data.p_private_data->GetSize() < 8 )
6548 if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_PGC )
6551 uint16 *i_pgc_n = (uint16 *)p_cookie;
6552 uint16 i_pgc_num = (data.p_private_data->GetBuffer()[1] << 8) + data.p_private_data->GetBuffer()[2];
6554 return (i_pgc_num == *i_pgc_n);
6557 bool dvd_command_interpretor_c::MatchChapterNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6559 if ( i_cookie_size != 1 || data.p_private_data == NULL || data.p_private_data->GetSize() < 2 )
6562 if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_PTT )
6565 uint8 i_chapter = data.p_private_data->GetBuffer()[1];
6566 uint8 i_ptt = *(uint8*)p_cookie;
6568 return (i_chapter == i_ptt);
6571 bool dvd_command_interpretor_c::MatchCellNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size )
6573 if ( i_cookie_size != 1 || data.p_private_data == NULL || data.p_private_data->GetSize() < 5 )
6576 if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_CN )
6579 uint8 *i_cell_n = (uint8 *)p_cookie;
6580 uint8 i_cell_num = data.p_private_data->GetBuffer()[3];
6582 return (i_cell_num == *i_cell_n);
6585 bool matroska_script_codec_c::Enter()
6587 bool f_result = false;
6588 std::vector<KaxChapterProcessData*>::iterator index = enter_cmds.begin();
6589 while ( index != enter_cmds.end() )
6591 if ( (*index)->GetSize() )
6593 msg_Dbg( &sys.demuxer, "Matroska Script enter command" );
6594 f_result |= interpretor.Interpret( (*index)->GetBuffer(), (*index)->GetSize() );
6601 bool matroska_script_codec_c::Leave()
6603 bool f_result = false;
6604 std::vector<KaxChapterProcessData*>::iterator index = leave_cmds.begin();
6605 while ( index != leave_cmds.end() )
6607 if ( (*index)->GetSize() )
6609 msg_Dbg( &sys.demuxer, "Matroska Script leave command" );
6610 f_result |= interpretor.Interpret( (*index)->GetBuffer(), (*index)->GetSize() );
6617 // see http://www.matroska.org/technical/specs/chapters/index.html#mscript
6618 // for a description of existing commands
6619 bool matroska_script_interpretor_c::Interpret( const binary * p_command, size_t i_size )
6621 bool b_result = false;
6623 char *psz_str = (char*) malloc( i_size + 1 );
6624 memcpy( psz_str, p_command, i_size );
6625 psz_str[ i_size ] = '\0';
6627 std::string sz_command = psz_str;
6630 msg_Dbg( &sys.demuxer, "command : %s", sz_command.c_str() );
6632 #if defined(__GNUC__) && (__GNUC__ < 3)
6633 if ( sz_command.compare( CMD_MS_GOTO_AND_PLAY, 0, CMD_MS_GOTO_AND_PLAY.size() ) == 0 )
6635 if ( sz_command.compare( 0, CMD_MS_GOTO_AND_PLAY.size(), CMD_MS_GOTO_AND_PLAY ) == 0 )
6641 for ( i=CMD_MS_GOTO_AND_PLAY.size(); i<sz_command.size(); i++)
6643 if ( sz_command[i] == '(' )
6650 for ( j=i; j<sz_command.size(); j++)
6652 if ( sz_command[j] == ')' )
6659 std::string st = sz_command.substr( i+1, j-i-1 );
6660 int64_t i_chapter_uid = atoi( st.c_str() );
6662 virtual_segment_c *p_segment;
6663 chapter_item_c *p_chapter = sys.FindChapter( i_chapter_uid, p_segment );
6665 if ( p_chapter == NULL )
6666 msg_Dbg( &sys.demuxer, "Chapter "I64Fd" not found", i_chapter_uid);
6669 if ( !p_chapter->EnterAndLeave( sys.p_current_segment->CurrentChapter() ) )
6670 p_segment->Seek( sys.demuxer, p_chapter->i_user_start_time, -1, p_chapter );
6678 void demux_sys_t::SwapButtons()
6680 #ifndef WORDS_BIGENDIAN
6681 uint8_t button, i, j;
6683 for( button = 1; button <= pci_packet.hli.hl_gi.btn_ns; button++) {
6684 btni_t *button_ptr = &(pci_packet.hli.btnit[button-1]);
6685 binary *p_data = (binary*) button_ptr;
6687 uint16 i_x_start = ((p_data[0] & 0x3F) << 4 ) + ( p_data[1] >> 4 );
6688 uint16 i_x_end = ((p_data[1] & 0x03) << 8 ) + p_data[2];
6689 uint16 i_y_start = ((p_data[3] & 0x3F) << 4 ) + ( p_data[4] >> 4 );
6690 uint16 i_y_end = ((p_data[4] & 0x03) << 8 ) + p_data[5];
6691 button_ptr->x_start = i_x_start;
6692 button_ptr->x_end = i_x_end;
6693 button_ptr->y_start = i_y_start;
6694 button_ptr->y_end = i_y_end;
6697 for ( i = 0; i<3; i++ )
6699 for ( j = 0; j<2; j++ )
6701 pci_packet.hli.btn_colit.btn_coli[i][j] = U32_AT( &pci_packet.hli.btn_colit.btn_coli[i][j] );