X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fdemux%2Fmkv.cpp;h=0a0df378ea9dac1368bdbaecfdebdab991c9e0a2;hb=075cb022ee2ac83ac47da524922bc91e19d78300;hp=10e4d736289694044224889e43c10235966255cd;hpb=40641a7b34709bb4de951d7a4114e85d9d3180fc;p=vlc diff --git a/modules/demux/mkv.cpp b/modules/demux/mkv.cpp index 10e4d73628..0a0df378ea 100644 --- a/modules/demux/mkv.cpp +++ b/modules/demux/mkv.cpp @@ -138,65 +138,65 @@ typedef struct { */ typedef struct { #ifdef WORDS_BIGENDIAN - unsigned int zero : 7; /* 25-31 */ - unsigned int video_pres_mode_change : 1; /* 24 */ + unsigned char zero : 7; /* 25-31 */ + unsigned char video_pres_mode_change : 1; /* 24 */ - unsigned int karaoke_audio_pres_mode_change : 1; /* 23 */ - unsigned int angle_change : 1; - unsigned int subpic_stream_change : 1; - unsigned int audio_stream_change : 1; - unsigned int pause_on : 1; - unsigned int still_off : 1; - unsigned int button_select_or_activate : 1; - unsigned int resume : 1; /* 16 */ + unsigned char karaoke_audio_pres_mode_change : 1; /* 23 */ + unsigned char angle_change : 1; + unsigned char subpic_stream_change : 1; + unsigned char audio_stream_change : 1; + unsigned char pause_on : 1; + unsigned char still_off : 1; + unsigned char button_select_or_activate : 1; + unsigned char resume : 1; /* 16 */ - unsigned int chapter_menu_call : 1; /* 15 */ - unsigned int angle_menu_call : 1; - unsigned int audio_menu_call : 1; - unsigned int subpic_menu_call : 1; - unsigned int root_menu_call : 1; - unsigned int title_menu_call : 1; - unsigned int backward_scan : 1; - unsigned int forward_scan : 1; /* 8 */ + unsigned char chapter_menu_call : 1; /* 15 */ + unsigned char angle_menu_call : 1; + unsigned char audio_menu_call : 1; + unsigned char subpic_menu_call : 1; + unsigned char root_menu_call : 1; + unsigned char title_menu_call : 1; + unsigned char backward_scan : 1; + unsigned char forward_scan : 1; /* 8 */ - unsigned int next_pg_search : 1; /* 7 */ - unsigned int prev_or_top_pg_search : 1; - unsigned int time_or_chapter_search : 1; - unsigned int go_up : 1; - unsigned int stop : 1; - unsigned int title_play : 1; - unsigned int chapter_search_or_play : 1; - unsigned int title_or_time_play : 1; /* 0 */ + unsigned char next_pg_search : 1; /* 7 */ + unsigned char prev_or_top_pg_search : 1; + unsigned char time_or_chapter_search : 1; + unsigned char go_up : 1; + unsigned char stop : 1; + unsigned char title_play : 1; + unsigned char chapter_search_or_play : 1; + unsigned char title_or_time_play : 1; /* 0 */ #else - unsigned int video_pres_mode_change : 1; /* 24 */ - unsigned int zero : 7; /* 25-31 */ + unsigned char video_pres_mode_change : 1; /* 24 */ + unsigned char zero : 7; /* 25-31 */ - unsigned int resume : 1; /* 16 */ - unsigned int button_select_or_activate : 1; - unsigned int still_off : 1; - unsigned int pause_on : 1; - unsigned int audio_stream_change : 1; - unsigned int subpic_stream_change : 1; - unsigned int angle_change : 1; - unsigned int karaoke_audio_pres_mode_change : 1; /* 23 */ + unsigned char resume : 1; /* 16 */ + unsigned char button_select_or_activate : 1; + unsigned char still_off : 1; + unsigned char pause_on : 1; + unsigned char audio_stream_change : 1; + unsigned char subpic_stream_change : 1; + unsigned char angle_change : 1; + unsigned char karaoke_audio_pres_mode_change : 1; /* 23 */ - unsigned int forward_scan : 1; /* 8 */ - unsigned int backward_scan : 1; - unsigned int title_menu_call : 1; - unsigned int root_menu_call : 1; - unsigned int subpic_menu_call : 1; - unsigned int audio_menu_call : 1; - unsigned int angle_menu_call : 1; - unsigned int chapter_menu_call : 1; /* 15 */ + unsigned char forward_scan : 1; /* 8 */ + unsigned char backward_scan : 1; + unsigned char title_menu_call : 1; + unsigned char root_menu_call : 1; + unsigned char subpic_menu_call : 1; + unsigned char audio_menu_call : 1; + unsigned char angle_menu_call : 1; + unsigned char chapter_menu_call : 1; /* 15 */ - unsigned int title_or_time_play : 1; /* 0 */ - unsigned int chapter_search_or_play : 1; - unsigned int title_play : 1; - unsigned int stop : 1; - unsigned int go_up : 1; - unsigned int time_or_chapter_search : 1; - unsigned int prev_or_top_pg_search : 1; - unsigned int next_pg_search : 1; /* 7 */ + unsigned char title_or_time_play : 1; /* 0 */ + unsigned char chapter_search_or_play : 1; + unsigned char title_play : 1; + unsigned char stop : 1; + unsigned char go_up : 1; + unsigned char time_or_chapter_search : 1; + unsigned char prev_or_top_pg_search : 1; + unsigned char next_pg_search : 1; /* 7 */ #endif } ATTRIBUTE_PACKED user_ops_t; @@ -293,41 +293,41 @@ typedef struct { */ typedef struct { #ifdef WORDS_BIGENDIAN - unsigned int btn_coln : 2; /**< button color number */ - unsigned int x_start : 10; /**< x start offset within the overlay */ - unsigned int zero1 : 2; /**< reserved */ - unsigned int x_end : 10; /**< x end offset within the overlay */ + uint32 btn_coln : 2; /**< button color number */ + uint32 x_start : 10; /**< x start offset within the overlay */ + uint32 zero1 : 2; /**< reserved */ + uint32 x_end : 10; /**< x end offset within the overlay */ - unsigned int zero3 : 2; /**< reserved */ - unsigned int up : 6; /**< button index when pressing up */ + uint32 zero3 : 2; /**< reserved */ + uint32 up : 6; /**< button index when pressing up */ - unsigned int auto_action_mode : 2; /**< 0: no, 1: activated if selected */ - unsigned int y_start : 10; /**< y start offset within the overlay */ - unsigned int zero2 : 2; /**< reserved */ - unsigned int y_end : 10; /**< y end offset within the overlay */ + uint32 auto_action_mode : 2; /**< 0: no, 1: activated if selected */ + uint32 y_start : 10; /**< y start offset within the overlay */ + uint32 zero2 : 2; /**< reserved */ + uint32 y_end : 10; /**< y end offset within the overlay */ - unsigned int zero4 : 2; /**< reserved */ - unsigned int down : 6; /**< button index when pressing down */ + uint32 zero4 : 2; /**< reserved */ + uint32 down : 6; /**< button index when pressing down */ unsigned char zero5 : 2; /**< reserved */ unsigned char left : 6; /**< button index when pressing left */ unsigned char zero6 : 2; /**< reserved */ unsigned char right : 6; /**< button index when pressing right */ #else - unsigned int x_end : 10; - unsigned int zero1 : 2; - unsigned int x_start : 10; - unsigned int btn_coln : 2; + uint32 x_end : 10; + uint32 zero1 : 2; + uint32 x_start : 10; + uint32 btn_coln : 2; - unsigned int up : 6; - unsigned int zero3 : 2; + uint32 up : 6; + uint32 zero3 : 2; - unsigned int y_end : 10; - unsigned int zero2 : 2; - unsigned int y_start : 10; - unsigned int auto_action_mode : 2; + uint32 y_end : 10; + uint32 zero2 : 2; + uint32 y_start : 10; + uint32 auto_action_mode : 2; - unsigned int down : 6; - unsigned int zero4 : 2; + uint32 down : 6; + uint32 zero4 : 2; unsigned char left : 6; unsigned char zero5 : 2; unsigned char right : 6; @@ -359,7 +359,6 @@ typedef struct { #if PRAGMA_PACK #pragma pack() #endif - //////////////////////////////////////////////////////////////////////////////////////////////////////////////// @@ -382,7 +381,7 @@ static int Open ( vlc_object_t * ); static void Close( vlc_object_t * ); vlc_module_begin(); - set_shortname( _("Matroska") ); + set_shortname( "Matroska" ); set_description( _("Matroska stream demuxer" ) ); set_capability( "demux2", 50 ); set_callbacks( Open, Close ); @@ -391,19 +390,19 @@ vlc_module_begin(); add_bool( "mkv-use-ordered-chapters", 1, NULL, N_("Ordered chapters"), - N_("Play ordered chapters as specified in the segment"), VLC_TRUE ); + N_("Play ordered chapters as specified in the segment."), VLC_TRUE ); add_bool( "mkv-use-chapter-codec", 1, NULL, N_("Chapter codecs"), - N_("Use chapter codecs found in the segment"), VLC_TRUE ); + N_("Use chapter codecs found in the segment."), VLC_TRUE ); add_bool( "mkv-seek-percent", 0, NULL, - N_("Seek based on percent not time"), - N_("Seek based on percent not time"), VLC_TRUE ); + N_("Seek based on percent not time."), + N_("Seek based on percent not time."), VLC_TRUE ); add_bool( "mkv-use-dummy", 0, NULL, N_("Dummy Elements"), - N_("Read and discard unknown EBML elements (not good for broken files)"), VLC_TRUE ); + N_("Read and discard unknown EBML elements (not good for broken files)."), VLC_TRUE ); add_shortcut( "mka" ); add_shortcut( "mkv" ); @@ -518,6 +517,7 @@ class EbmlParser void Reset( demux_t *p_demux ); EbmlElement *Get( void ); void Keep( void ); + EbmlElement *UnGet( uint64 i_block_pos, uint64 i_cluster_pos ); int GetLevel( void ); @@ -611,15 +611,37 @@ class chapter_codec_cmds_c { public: chapter_codec_cmds_c( demux_sys_t & demuxer, int codec_id = -1) - :i_codec_id( codec_id ) + :p_private_data(NULL) + ,i_codec_id( codec_id ) ,sys( demuxer ) {} - virtual ~chapter_codec_cmds_c() {} + virtual ~chapter_codec_cmds_c() + { + delete p_private_data; + std::vector::iterator indexe = enter_cmds.begin(); + while ( indexe != enter_cmds.end() ) + { + delete (*indexe); + indexe++; + } + std::vector::iterator indexl = leave_cmds.begin(); + while ( indexl != leave_cmds.end() ) + { + delete (*indexl); + indexl++; + } + std::vector::iterator indexd = during_cmds.begin(); + while ( indexd != during_cmds.end() ) + { + delete (*indexd); + indexd++; + } + } void SetPrivate( const KaxChapterProcessPrivate & private_data ) { - m_private_data = *( new KaxChapterProcessPrivate( private_data ) ); + p_private_data = new KaxChapterProcessPrivate( private_data ); } void AddCommand( const KaxChapterProcessCommand & command ); @@ -628,13 +650,14 @@ public: virtual bool Enter() { return false; } virtual bool Leave() { return false; } virtual std::string GetCodecName( bool f_for_title = false ) const { return ""; } + virtual int16 GetTitleNumber() { return -1; } - KaxChapterProcessPrivate m_private_data; + KaxChapterProcessPrivate *p_private_data; protected: - std::vector enter_cmds; - std::vector during_cmds; - std::vector leave_cmds; + std::vector enter_cmds; + std::vector during_cmds; + std::vector leave_cmds; int i_codec_id; demux_sys_t & sys; @@ -659,7 +682,6 @@ public: bool Interpret( const binary * p_command, size_t i_size = 8 ); -protected: uint16 GetPRM( size_t index ) const { if ( index < 256 ) @@ -712,6 +734,7 @@ protected: return false; } +protected: std::string GetRegTypeName( bool b_value, uint16 value ) const { std::string result; @@ -751,14 +774,15 @@ protected: // DVD command IDs // Tests - // wether the test has to be positive or not - static const uint16 CMD_DVD_IF_NOT = 0x10; // wether it's a comparison on the value or register static const uint16 CMD_DVD_TEST_VALUE = 0x80; - static const uint16 CMD_DVD_IF_GPREG_AND = (0 << 5); - static const uint16 CMD_DVD_IF_GPREG_EQUAL = (1 << 5); - static const uint16 CMD_DVD_IF_GPREG_SUP_EQUAL = (2 << 5); - static const uint16 CMD_DVD_IF_GPREG_INF = (3 << 5); + static const uint16 CMD_DVD_IF_GPREG_AND = (1 << 4); + static const uint16 CMD_DVD_IF_GPREG_EQUAL = (2 << 4); + static const uint16 CMD_DVD_IF_GPREG_NOT_EQUAL = (3 << 4); + static const uint16 CMD_DVD_IF_GPREG_SUP_EQUAL = (4 << 4); + static const uint16 CMD_DVD_IF_GPREG_SUP = (5 << 4); + static const uint16 CMD_DVD_IF_GPREG_INF_EQUAL = (6 << 4); + static const uint16 CMD_DVD_IF_GPREG_INF = (7 << 4); static const uint16 CMD_DVD_NOP = 0x0000; static const uint16 CMD_DVD_GOTO_LINE = 0x0001; @@ -770,12 +794,13 @@ protected: static const uint16 CMD_DVD_LINKCN = 0x2007; static const uint16 CMD_DVD_JUMP_TT = 0x3002; static const uint16 CMD_DVD_JUMPVTS_TT = 0x3003; + static const uint16 CMD_DVD_JUMPVTS_PTT = 0x3005; static const uint16 CMD_DVD_JUMP_SS = 0x3006; static const uint16 CMD_DVD_CALLSS_VTSM1 = 0x3008; // static const uint16 CMD_DVD_SET_HL_BTNN2 = 0x4600; static const uint16 CMD_DVD_SET_HL_BTNN_LINKPGCN1 = 0x4604; - static const uint16 CMD_DVD_SET_AUDIO = 0x5100; + static const uint16 CMD_DVD_SET_STREAM = 0x5100; static const uint16 CMD_DVD_SET_GPRMMD = 0x5300; static const uint16 CMD_DVD_SET_HL_BTNN1 = 0x5600; static const uint16 CMD_DVD_SET_HL_BTNN_LINKPGCN2 = 0x5604; @@ -789,8 +814,15 @@ protected: static const uint16 CMD_DVD_GPREG_AND_VALUE = 0x7900; // callbacks when browsing inside CodecPrivate - static bool MatchTitleNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ); - static bool MatchPgcType ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ); + static bool MatchIsDomain ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ); + static bool MatchIsVMG ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ); + static bool MatchVTSNumber ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ); + static bool MatchVTSMNumber ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ); + static bool MatchTitleNumber ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ); + static bool MatchPgcType ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ); + static bool MatchPgcNumber ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ); + static bool MatchChapterNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ); + static bool MatchCellNumber ( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ); }; class dvd_chapter_codec_c : public chapter_codec_cmds_c @@ -798,15 +830,12 @@ class dvd_chapter_codec_c : public chapter_codec_cmds_c public: dvd_chapter_codec_c( demux_sys_t & sys ) :chapter_codec_cmds_c( sys, 1 ) - ,interpretor( sys ) {} bool Enter(); bool Leave(); std::string GetCodecName( bool f_for_title = false ) const; - -protected: - dvd_command_interpretor_c interpretor; + int16 GetTitleNumber(); }; class matroska_script_interpretor_c @@ -846,7 +875,16 @@ protected: class chapter_translation_c { public: - KaxChapterTranslateID translated; + chapter_translation_c() + :p_translated(NULL) + {} + + ~chapter_translation_c() + { + delete p_translated; + } + + KaxChapterTranslateID *p_translated; unsigned int codec_id; std::vector editions; }; @@ -884,7 +922,7 @@ public: int64_t RefreshChapters( bool b_ordered, int64_t i_prev_user_time ); int PublishChapters( input_title_t & title, int & i_user_chapters, int i_level = 0 ); - chapter_item_c * FindTimecode( mtime_t i_timecode ); + virtual chapter_item_c * FindTimecode( mtime_t i_timecode, const chapter_item_c * p_current, bool & b_found ); void Append( const chapter_item_c & edition ); chapter_item_c * FindChapter( int64_t i_find_uid ); virtual chapter_item_c *BrowseCodecPrivate( unsigned int codec_id, @@ -893,6 +931,7 @@ public: size_t i_cookie_size ); std::string GetCodecName( bool f_for_title = false ) const; bool ParentOf( const chapter_item_c & item ) const; + int16 GetTitleNumber( ) const; int64_t i_start_time, i_end_time; int64_t i_user_start_time, i_user_end_time; /* the time in the stream when an edition is ordered */ @@ -914,7 +953,7 @@ public: bool Enter( bool b_do_subchapters ); bool Leave( bool b_do_subchapters ); - bool EnterAndLeave( chapter_item_c *p_item ); + bool EnterAndLeave( chapter_item_c *p_item, bool b_enter = true ); }; class chapter_edition_c : public chapter_item_c @@ -927,6 +966,7 @@ public: void RefreshChapters( ); mtime_t Duration() const; std::string GetMainName() const; + chapter_item_c * FindTimecode( mtime_t i_timecode, const chapter_item_c * p_current ); bool b_ordered; }; @@ -944,7 +984,12 @@ public: ,i_chapters_position(-1) ,i_tags_position(-1) ,cluster(NULL) + ,i_block_pos(0) + ,i_cluster_pos(0) ,i_start_pos(0) + ,p_segment_uid(NULL) + ,p_prev_segment_uid(NULL) + ,p_next_segment_uid(NULL) ,b_cues(VLC_FALSE) ,i_index(0) ,i_index_max(1024) @@ -958,7 +1003,7 @@ public: ,ep(NULL) ,b_preloaded(false) { - index = (mkv_index_t*)malloc( sizeof( mkv_index_t ) * i_index_max ); + p_indexes = (mkv_index_t*)malloc( sizeof( mkv_index_t ) * i_index_max ); } virtual ~matroska_segment_c() @@ -969,14 +1014,14 @@ public: { free( tracks[i_track]->fmt.psz_description ); } - if( tracks[i_track]->psz_codec ) +/* if( tracks[i_track]->psz_codec ) { free( tracks[i_track]->psz_codec ); } if( tracks[i_track]->fmt.psz_language ) { free( tracks[i_track]->fmt.psz_language ); - } + }*/ delete tracks[i_track]; } @@ -1000,10 +1045,13 @@ public: { free( psz_date_utc ); } - if ( index ) - free( index ); + if ( p_indexes ) + free( p_indexes ); delete ep; + delete p_segment_uid; + delete p_prev_segment_uid; + delete p_next_segment_uid; std::vector::iterator index = stored_editions.begin(); while ( index != stored_editions.end() ) @@ -1011,6 +1059,12 @@ public: delete (*index); index++; } + std::vector::iterator indext = translations.begin(); + while ( indext != translations.end() ) + { + delete (*indext); + indext++; + } } KaxSegment *segment; @@ -1032,15 +1086,17 @@ public: int64_t i_tags_position; KaxCluster *cluster; + uint64 i_block_pos; + uint64 i_cluster_pos; int64_t i_start_pos; - KaxSegmentUID segment_uid; - KaxPrevUID prev_segment_uid; - KaxNextUID next_segment_uid; + KaxSegmentUID *p_segment_uid; + KaxPrevUID *p_prev_segment_uid; + KaxNextUID *p_next_segment_uid; vlc_bool_t b_cues; int i_index; int i_index_max; - mkv_index_t *index; + mkv_index_t *p_indexes; /* info */ char *psz_muxing_application; @@ -1055,7 +1111,7 @@ public: std::vector stored_editions; int i_default_edition; - std::vector translations; + std::vector translations; std::vector families; demux_sys_t & sys; @@ -1076,7 +1132,7 @@ public: void LoadTags( ); void InformationCreate( ); void Seek( mtime_t i_date, mtime_t i_time_offset ); - int BlockGet( KaxBlock **pp_block, int64_t *pi_ref1, int64_t *pi_ref2, int64_t *pi_duration ); + int BlockGet( KaxBlock * & pp_block, int64_t *pi_ref1, int64_t *pi_ref2, int64_t *pi_duration ); bool Select( mtime_t i_start_time ); void UnSelect( ); @@ -1096,9 +1152,9 @@ public: { linked_segments.push_back( p_segment ); - AppendUID( p_segment->segment_uid ); - AppendUID( p_segment->prev_segment_uid ); - AppendUID( p_segment->next_segment_uid ); + AppendUID( p_segment->p_segment_uid ); + AppendUID( p_segment->p_prev_segment_uid ); + AppendUID( p_segment->p_next_segment_uid ); } void Sort(); @@ -1166,7 +1222,7 @@ protected: int i_current_edition; chapter_item_c *psz_current_chapter; - void AppendUID( const EbmlBinary & UID ); + void AppendUID( const EbmlBinary * UID ); }; class matroska_stream_c @@ -1216,12 +1272,15 @@ public: ,meta(NULL) ,i_current_title(0) ,p_current_segment(NULL) + ,dvd_interpretor( *this ) ,f_duration(-1.0) ,b_ui_hooked(false) ,p_input(NULL) - ,p_pci_packet(NULL) + ,b_pci_packet_set(false) ,p_ev(NULL) - {} + { + vlc_mutex_init( &demuxer, &lock_demuxer ); + } virtual ~demux_sys_t() { @@ -1233,6 +1292,7 @@ public: delete opened_segments[i]; for ( i=0; i titles; // matroska editions + std::vector titles; // matroska editions size_t i_current_title; std::vector streams; @@ -1252,6 +1312,8 @@ public: std::vector used_segments; virtual_segment_c *p_current_segment; + dvd_command_interpretor_c dvd_interpretor; + /* duration of the stream */ float f_duration; @@ -1267,14 +1329,19 @@ public: void PreloadLinked( matroska_segment_c *p_segment ); bool PreparePlayback( virtual_segment_c *p_new_segment ); matroska_stream_c *AnalyseAllSegmentsFound( EbmlStream *p_estream ); + void JumpTo( virtual_segment_c & p_segment, chapter_item_c * p_chapter ); void StartUiThread(); void StopUiThread(); bool b_ui_hooked; + inline void SwapButtons(); /* for spu variables */ input_thread_t *p_input; - block_t *p_pci_packet; + pci_t pci_packet; + bool b_pci_packet_set; + uint8_t alpha[4]; + vlc_mutex_t lock_demuxer; /* event */ event_thread_t *p_ev; @@ -1401,8 +1468,8 @@ static int Open( vlc_object_t * p_this ) !s_filename.compare(s_filename.length() - 3, 3, "mka")) #endif { - // test wether this file belongs to the our family - StdIOCallback *p_file_io = new StdIOCallback(s_filename.c_str(), MODE_READ); + // test wether this file belongs to our family + vlc_stream_io_callback *p_file_io = new vlc_stream_io_callback( stream_UrlNew( p_demux, s_filename.c_str())); EbmlStream *p_estream = new EbmlStream(*p_file_io); p_stream = p_sys->AnalyseAllSegmentsFound( p_estream ); @@ -1432,6 +1499,8 @@ static int Open( vlc_object_t * p_this ) msg_Err( p_demux, "cannot use the segment" ); goto error; } + + p_sys->StartUiThread(); return VLC_SUCCESS; @@ -1507,7 +1576,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args ) for( size_t i = 0; i < p_sys->titles.size(); i++ ) { - (*ppp_title)[i] = vlc_input_title_Duplicate( &p_sys->titles[i] ); + (*ppp_title)[i] = vlc_input_title_Duplicate( p_sys->titles[i] ); } return VLC_SUCCESS; @@ -1519,7 +1588,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args ) i_idx = (int)va_arg( args, int ); if( i_idx < p_sys->used_segments.size() ) { - p_sys->PreparePlayback( p_sys->used_segments[i_idx] ); + p_sys->JumpTo( *p_sys->used_segments[i_idx], NULL ); return VLC_SUCCESS; } return VLC_EGENERIC; @@ -1528,9 +1597,9 @@ static int Control( demux_t *p_demux, int i_query, va_list args ) i_skp = (int)va_arg( args, int ); // TODO change the way it works with the << & >> buttons on the UI (+1/-1 instead of a number) - if( p_sys->titles.size() && i_skp < p_sys->titles[p_sys->i_current_title].i_seekpoint) + if( p_sys->titles.size() && i_skp < p_sys->titles[p_sys->i_current_title]->i_seekpoint) { - Seek( p_demux, (int64_t)p_sys->titles[p_sys->i_current_title].seekpoint[i_skp]->i_time_offset, -1, NULL); + Seek( p_demux, (int64_t)p_sys->titles[p_sys->i_current_title]->seekpoint[i_skp]->i_time_offset, -1, NULL); p_demux->info.i_seekpoint |= INPUT_UPDATE_SEEKPOINT; p_demux->info.i_seekpoint = i_skp; return VLC_SUCCESS; @@ -1544,9 +1613,9 @@ static int Control( demux_t *p_demux, int i_query, va_list args ) } } -int matroska_segment_c::BlockGet( KaxBlock **pp_block, int64_t *pi_ref1, int64_t *pi_ref2, int64_t *pi_duration ) +int matroska_segment_c::BlockGet( KaxBlock * & pp_block, int64_t *pi_ref1, int64_t *pi_ref2, int64_t *pi_duration ) { - *pp_block = NULL; + pp_block = NULL; *pi_ref1 = -1; *pi_ref2 = -1; @@ -1561,13 +1630,13 @@ int matroska_segment_c::BlockGet( KaxBlock **pp_block, int64_t *pi_ref1, int64_t el = ep->Get(); i_level = ep->GetLevel(); - if( el == NULL && *pp_block != NULL ) + if( el == NULL && pp_block != NULL ) { /* update the index */ -#define idx index[i_index - 1] +#define idx p_indexes[i_index - 1] if( i_index > 0 && idx.i_time == -1 ) { - idx.i_time = (*pp_block)->GlobalTimecode() / (mtime_t)1000; + idx.i_time = (*pp_block).GlobalTimecode() / (mtime_t)1000; idx.b_key = *pi_ref1 == -1 ? VLC_TRUE : VLC_FALSE; } #undef idx @@ -1586,15 +1655,17 @@ int matroska_segment_c::BlockGet( KaxBlock **pp_block, int64_t *pi_ref1, int64_t } /* do parsing */ - if( i_level == 1 ) + switch ( i_level ) { + case 1: if( MKV_IS_ID( el, KaxCluster ) ) { cluster = (KaxCluster*)el; + i_cluster_pos = cluster->GetElementPosition(); /* add it to the index */ if( i_index == 0 || - ( i_index > 0 && index[i_index - 1].i_position < (int64_t)cluster->GetElementPosition() ) ) + ( i_index > 0 && p_indexes[i_index - 1].i_position < (int64_t)cluster->GetElementPosition() ) ) { IndexAppendCluster( cluster ); } @@ -1616,9 +1687,8 @@ int matroska_segment_c::BlockGet( KaxBlock **pp_block, int64_t *pi_ref1, int64_t { msg_Dbg( &sys.demuxer, "unknown (%s)", typeid( el ).name() ); } - } - else if( i_level == 2 ) - { + break; + case 2: if( MKV_IS_ID( el, KaxClusterTimecode ) ) { KaxClusterTimecode &ctc = *(KaxClusterTimecode*)el; @@ -1632,17 +1702,17 @@ int matroska_segment_c::BlockGet( KaxBlock **pp_block, int64_t *pi_ref1, int64_t } else if( MKV_IS_ID( el, KaxBlockGroup ) ) { + i_block_pos = el->GetElementPosition(); ep->Down(); } - } - else if( i_level == 3 ) - { + break; + case 3: if( MKV_IS_ID( el, KaxBlock ) ) { - *pp_block = (KaxBlock*)el; + pp_block = (KaxBlock*)el; - (*pp_block)->ReadData( es.I_O() ); - (*pp_block)->SetParent( *cluster ); + pp_block->ReadData( es.I_O() ); + pp_block->SetParent( *cluster ); ep->Keep(); } @@ -1681,9 +1751,8 @@ int matroska_segment_c::BlockGet( KaxBlock **pp_block, int64_t *pi_ref1, int64_t } } } - } - else - { + break; + default: msg_Err( &sys.demuxer, "invalid level = %d", i_level ); return VLC_EGENERIC; } @@ -1723,7 +1792,7 @@ static void BlockDecode( demux_t *p_demux, KaxBlock *block, mtime_t i_pts, msg_Err( p_demux, "invalid track number=%d", block->TrackNum() ); return; } - if( tk->p_es == NULL ) + if( tk->fmt.i_cat != NAV_ES && tk->p_es == NULL ) { msg_Err( p_demux, "unknown track number=%d", block->TrackNum() ); return; @@ -1733,7 +1802,7 @@ static void BlockDecode( demux_t *p_demux, KaxBlock *block, mtime_t i_pts, return; /* discard audio packets that shouldn't be rendered */ } - if ( tk->fmt.i_cat != SPU_ES || strcmp( tk->psz_codec, "B_VOBBTN" ) ) + if ( tk->fmt.i_cat != NAV_ES ) { es_out_Control( p_demux->out, ES_OUT_GET_ES_STATE, tk->p_es, &b ); @@ -1776,6 +1845,20 @@ static void BlockDecode( demux_t *p_demux, KaxBlock *block, mtime_t i_pts, } #endif + if ( tk->fmt.i_cat == NAV_ES ) + { + // TODO handle the start/stop times of this packet + if ( p_sys->b_ui_hooked ) + { + vlc_mutex_lock( &p_sys->p_ev->lock ); + memcpy( &p_sys->pci_packet, &p_block->p_buffer[1], sizeof(pci_t) ); + p_sys->SwapButtons(); + p_sys->b_pci_packet_set = true; + vlc_mutex_unlock( &p_sys->p_ev->lock ); + block_Release( p_block ); + } + return; + } // TODO implement correct timestamping when B frames are used if( tk->fmt.i_cat != VIDEO_ES ) { @@ -1787,26 +1870,9 @@ static void BlockDecode( demux_t *p_demux, KaxBlock *block, mtime_t i_pts, p_block->i_pts = 0; } - if ( tk->fmt.i_cat == SPU_ES ) + if( strcmp( tk->psz_codec, "S_VOBSUB" ) ) { - if ( !strcmp( tk->psz_codec, "B_VOBBTN" ) ) - { - // TODO handle the start/stop times of this packet - if ( p_sys->b_ui_hooked ) - { - vlc_mutex_lock( &p_sys->p_ev->lock ); - if ( p_sys->p_pci_packet != NULL ) - block_Release( p_sys->p_pci_packet ); - p_sys->p_pci_packet = p_block; - vlc_mutex_unlock( &p_sys->p_ev->lock ); - } - return; - } - - else if ( strcmp( tk->psz_codec, "S_VOBSUB" ) ) - { - p_block->i_length = i_duration * 1000; - } + p_block->i_length = i_duration * 1000; } es_out_Send( p_demux->out, tk->p_es, p_block ); @@ -1835,7 +1901,7 @@ matroska_stream_c *demux_sys_t::AnalyseAllSegmentsFound( EbmlStream *p_estream ) delete p_l0; // find all segments in this file - p_l0 = p_estream->FindNextID(KaxSegment::ClassInfos, 0xFFFFFFFFL); + p_l0 = p_estream->FindNextID(KaxSegment::ClassInfos, 0xFFFFFFFFFLL); if (p_l0 == NULL) { return NULL; @@ -1874,15 +1940,16 @@ matroska_stream_c *demux_sys_t::AnalyseAllSegmentsFound( EbmlStream *p_estream ) if ( !b_keep_segment ) break; // this segment is already known opened_segments.push_back( p_segment1 ); - p_segment1->segment_uid = *( new KaxSegmentUID(*p_uid) ); + delete p_segment1->p_segment_uid; + p_segment1->p_segment_uid = new KaxSegmentUID(*p_uid); } else if( MKV_IS_ID( l, KaxPrevUID ) ) { - p_segment1->prev_segment_uid = *( new KaxPrevUID( *static_cast(l) ) ); + p_segment1->p_prev_segment_uid = new KaxPrevUID( *static_cast(l) ); } else if( MKV_IS_ID( l, KaxNextUID ) ) { - p_segment1->next_segment_uid = *( new KaxNextUID( *static_cast(l) ) ); + p_segment1->p_next_segment_uid = new KaxNextUID( *static_cast(l) ); } else if( MKV_IS_ID( l, KaxSegmentFamily ) ) { @@ -1921,7 +1988,8 @@ bool matroska_segment_c::Select( mtime_t i_start_time ) /* add all es */ msg_Dbg( &sys.demuxer, "found %d es", tracks.size() ); - sys.StopUiThread(); + sys.b_pci_packet_set = false; + for( i_track = 0; i_track < tracks.size(); i_track++ ) { if( tracks[i_track]->fmt.i_cat == UNKNOWN_ES ) @@ -1981,16 +2049,10 @@ bool matroska_segment_c::Select( mtime_t i_start_time ) else if( !strcmp( tracks[i_track]->psz_codec, "V_QUICKTIME" ) ) { MP4_Box_t *p_box = (MP4_Box_t*)malloc( sizeof( MP4_Box_t ) ); -#ifdef VSLHC - stream_t *p_mp4_stream = stream_MemoryNew( VLC_OBJECT(&sys.demuxer), - tracks[i_track]->p_extra_data, - tracks[i_track]->i_extra_data ); -#else stream_t *p_mp4_stream = stream_MemoryNew( VLC_OBJECT(&sys.demuxer), tracks[i_track]->p_extra_data, tracks[i_track]->i_extra_data, VLC_FALSE ); -#endif MP4_ReadBoxCommon( p_mp4_stream, p_box ); MP4_ReadBox_sample_vide( p_mp4_stream, p_box ); tracks[i_track]->fmt.i_codec = p_box->i_type; @@ -2000,11 +2062,7 @@ bool matroska_segment_c::Select( mtime_t i_start_time ) tracks[i_track]->fmt.p_extra = malloc( tracks[i_track]->fmt.i_extra ); memcpy( tracks[i_track]->fmt.p_extra, p_box->data.p_sample_vide->p_qt_image_description, tracks[i_track]->fmt.i_extra ); MP4_FreeBox_sample_vide( p_box ); -#ifdef VSLHC - stream_MemoryDelete( p_mp4_stream, VLC_TRUE ); -#else stream_Delete( p_mp4_stream ); -#endif } else if( !strcmp( tracks[i_track]->psz_codec, "A_MS/ACM" ) ) { @@ -2200,8 +2258,8 @@ bool matroska_segment_c::Select( mtime_t i_start_time ) } else if( !strcmp( tracks[i_track]->psz_codec, "B_VOBBTN" ) ) { - tracks[i_track]->fmt.i_codec = VLC_FOURCC( 's','p','u',' ' ); - sys.StartUiThread(); + tracks[i_track]->fmt.i_cat = NAV_ES; + continue; } else { @@ -2249,6 +2307,7 @@ void demux_sys_t::StartUiThread() /* Now create our event thread catcher */ p_ev = (event_thread_t *) vlc_object_create( &demuxer, sizeof( event_thread_t ) ); p_ev->p_demux = &demuxer; + p_ev->b_die = VLC_FALSE; vlc_mutex_init( p_ev, &p_ev->lock ); vlc_thread_create( p_ev, "mkv event thread handler", EventThread, VLC_THREAD_PRIORITY_LOW, VLC_FALSE ); @@ -2261,6 +2320,11 @@ void demux_sys_t::StopUiThread() { p_ev->b_die = VLC_TRUE; + vlc_thread_join( p_ev ); + vlc_object_destroy( p_ev ); + + p_ev = NULL; + var_Destroy( p_input, "highlight-mutex" ); var_Destroy( p_input, "highlight" ); var_Destroy( p_input, "x-start" ); @@ -2270,9 +2334,6 @@ void demux_sys_t::StopUiThread() var_Destroy( p_input, "color" ); var_Destroy( p_input, "menu-contrast" ); - vlc_thread_join( p_ev ); - vlc_object_destroy( p_ev ); - msg_Dbg( &demuxer, "Stopping the UI Hook" ); } b_ui_hooked = false; @@ -2319,6 +2380,13 @@ int demux_sys_t::EventThread( vlc_object_t *p_this ) /* main loop */ while( !p_ev->b_die ) { + if ( !p_sys->b_pci_packet_set ) + { + /* Wait 100ms */ + msleep( 100000 ); + continue; + } + vlc_bool_t b_activated = VLC_FALSE; /* KEY part */ @@ -2330,7 +2398,7 @@ int demux_sys_t::EventThread( vlc_object_t *p_this ) vlc_mutex_lock( &p_ev->lock ); - pci_t *pci = (pci_t *) &p_sys->p_pci_packet->p_buffer[1]; + pci_t *pci = (pci_t *) &p_sys->pci_packet; var_Get( p_ev->p_vlc, "key-pressed", &valk ); for( i = 0; p_hotkeys[i].psz_action != NULL; i++ ) @@ -2341,23 +2409,118 @@ int demux_sys_t::EventThread( vlc_object_t *p_this ) } } + uint16 i_curr_button = p_sys->dvd_interpretor.GetSPRM( 0x88 ); + switch( i_action ) { case ACTIONID_NAV_LEFT: -// dvdnav_left_button_select( NULL, pci ); + if ( i_curr_button > 0 && i_curr_button <= pci->hli.hl_gi.btn_ns ) + { + btni_t *p_button_ptr = &(pci->hli.btnit[i_curr_button-1]); + if ( p_button_ptr->left > 0 && p_button_ptr->left <= pci->hli.hl_gi.btn_ns ) + { + i_curr_button = p_button_ptr->left; + p_sys->dvd_interpretor.SetSPRM( 0x88, i_curr_button ); + btni_t button_ptr = pci->hli.btnit[i_curr_button-1]; + if ( button_ptr.auto_action_mode ) + { + vlc_mutex_unlock( &p_ev->lock ); + vlc_mutex_lock( &p_sys->lock_demuxer ); + + // process the button action + p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 ); + + vlc_mutex_unlock( &p_sys->lock_demuxer ); + vlc_mutex_lock( &p_ev->lock ); + } + } + } break; case ACTIONID_NAV_RIGHT: -// dvdnav_right_button_select( NULL, pci ); + if ( i_curr_button > 0 && i_curr_button <= pci->hli.hl_gi.btn_ns ) + { + btni_t *p_button_ptr = &(pci->hli.btnit[i_curr_button-1]); + if ( p_button_ptr->right > 0 && p_button_ptr->right <= pci->hli.hl_gi.btn_ns ) + { + i_curr_button = p_button_ptr->right; + p_sys->dvd_interpretor.SetSPRM( 0x88, i_curr_button ); + btni_t button_ptr = pci->hli.btnit[i_curr_button-1]; + if ( button_ptr.auto_action_mode ) + { + vlc_mutex_unlock( &p_ev->lock ); + vlc_mutex_lock( &p_sys->lock_demuxer ); + + // process the button action + p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 ); + + vlc_mutex_unlock( &p_sys->lock_demuxer ); + vlc_mutex_lock( &p_ev->lock ); + } + } + } break; case ACTIONID_NAV_UP: -// dvdnav_upper_button_select( NULL, pci ); + if ( i_curr_button > 0 && i_curr_button <= pci->hli.hl_gi.btn_ns ) + { + btni_t *p_button_ptr = &(pci->hli.btnit[i_curr_button-1]); + if ( p_button_ptr->up > 0 && p_button_ptr->up <= pci->hli.hl_gi.btn_ns ) + { + i_curr_button = p_button_ptr->up; + p_sys->dvd_interpretor.SetSPRM( 0x88, i_curr_button ); + btni_t button_ptr = pci->hli.btnit[i_curr_button-1]; + if ( button_ptr.auto_action_mode ) + { + vlc_mutex_unlock( &p_ev->lock ); + vlc_mutex_lock( &p_sys->lock_demuxer ); + + // process the button action + p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 ); + + vlc_mutex_unlock( &p_sys->lock_demuxer ); + vlc_mutex_lock( &p_ev->lock ); + } + } + } break; case ACTIONID_NAV_DOWN: -// dvdnav_lower_button_select( NULL, pci ); + if ( i_curr_button > 0 && i_curr_button <= pci->hli.hl_gi.btn_ns ) + { + btni_t *p_button_ptr = &(pci->hli.btnit[i_curr_button-1]); + if ( p_button_ptr->down > 0 && p_button_ptr->down <= pci->hli.hl_gi.btn_ns ) + { + i_curr_button = p_button_ptr->down; + p_sys->dvd_interpretor.SetSPRM( 0x88, i_curr_button ); + btni_t button_ptr = pci->hli.btnit[i_curr_button-1]; + if ( button_ptr.auto_action_mode ) + { + vlc_mutex_unlock( &p_ev->lock ); + vlc_mutex_lock( &p_sys->lock_demuxer ); + + // process the button action + p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 ); + + vlc_mutex_unlock( &p_sys->lock_demuxer ); + vlc_mutex_lock( &p_ev->lock ); + } + } + } break; case ACTIONID_NAV_ACTIVATE: b_activated = VLC_TRUE; -// dvdnav_button_activate( NULL, pci ); + + if ( i_curr_button > 0 && i_curr_button <= pci->hli.hl_gi.btn_ns ) + { + btni_t button_ptr = pci->hli.btnit[i_curr_button-1]; + + vlc_mutex_unlock( &p_ev->lock ); + vlc_mutex_lock( &p_sys->lock_demuxer ); + + // process the button action + p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 ); + + vlc_mutex_unlock( &p_sys->lock_demuxer ); + vlc_mutex_lock( &p_ev->lock ); + } break; default: break; @@ -2366,31 +2529,110 @@ int demux_sys_t::EventThread( vlc_object_t *p_this ) vlc_mutex_unlock( &p_ev->lock ); } - /* VOUT part */ + /* MOUSE part */ if( p_vout && ( p_ev->b_moved || p_ev->b_clicked ) ) { vlc_value_t valx, valy; vlc_mutex_lock( &p_ev->lock ); - pci_t *pci = (pci_t *) &p_sys->p_pci_packet->p_buffer[1]; + pci_t *pci = (pci_t *) &p_sys->pci_packet; var_Get( p_vout, "mouse-x", &valx ); var_Get( p_vout, "mouse-y", &valy ); - if( p_ev->b_moved ) - { -// dvdnav_mouse_select( NULL, pci, valx.i_int, valy.i_int ); - p_ev->b_moved = 0; - } if( p_ev->b_clicked ) { + int32_t button; + int32_t best,dist,d; + int32_t mx,my,dx,dy; + b_activated = VLC_TRUE; -// dvdnav_mouse_activate( NULL, pci, valx.i_int, valy.i_int ); + // get current button + best = 0; + dist = 0x08000000; /* >> than (720*720)+(567*567); */ + for(button = 1; button <= pci->hli.hl_gi.btn_ns; button++) + { + btni_t *button_ptr = &(pci->hli.btnit[button-1]); + + if((valx.i_int >= button_ptr->x_start) && (valx.i_int <= button_ptr->x_end) && + (valy.i_int >= button_ptr->y_start) && (valy.i_int <= button_ptr->y_end)) + { + mx = (button_ptr->x_start + button_ptr->x_end)/2; + my = (button_ptr->y_start + button_ptr->y_end)/2; + dx = mx - valx.i_int; + dy = my - valy.i_int; + d = (dx*dx) + (dy*dy); + /* If the mouse is within the button and the mouse is closer + * to the center of this button then it is the best choice. */ + if(d < dist) { + dist = d; + best = button; + } + } + } + + if ( best != 0) + { + btni_t button_ptr = pci->hli.btnit[best-1]; + uint16 i_curr_button = p_sys->dvd_interpretor.GetSPRM( 0x88 ); + + msg_Dbg( &p_sys->demuxer, "Clicked button %d", best ); + vlc_mutex_unlock( &p_ev->lock ); + vlc_mutex_lock( &p_sys->lock_demuxer ); + + // process the button action + p_sys->dvd_interpretor.SetSPRM( 0x88, best ); + p_sys->dvd_interpretor.Interpret( button_ptr.cmd.bytes, 8 ); + + msg_Dbg( &p_sys->demuxer, "Processed button %d", best ); + + // select new button + if ( best != i_curr_button ) + { + vlc_value_t val; + + if( var_Get( p_sys->p_input, "highlight-mutex", &val ) == VLC_SUCCESS ) + { + vlc_mutex_t *p_mutex = (vlc_mutex_t *) val.p_address; + uint32_t i_palette; + + if(button_ptr.btn_coln != 0) { + i_palette = pci->hli.btn_colit.btn_coli[button_ptr.btn_coln-1][1]; + } else { + i_palette = 0; + } + p_sys->alpha[0] = i_palette & 0x0f; + p_sys->alpha[1] = (i_palette>>4) & 0x0f; + p_sys->alpha[2] = (i_palette>>8) & 0x0f; + p_sys->alpha[3] = (i_palette>>12)& 0x0f; + + vlc_mutex_lock( p_mutex ); + val.i_int = button_ptr.x_start; var_Set( p_sys->p_input, "x-start", val ); + val.i_int = button_ptr.x_end; var_Set( p_sys->p_input, "x-end", val ); + val.i_int = button_ptr.y_start; var_Set( p_sys->p_input, "y-start", val ); + val.i_int = button_ptr.y_end; var_Set( p_sys->p_input, "y-end", val ); + + val.p_address = (void *)p_sys->alpha; + var_Set( p_sys->p_input, "menu-contrast", val ); + + val.b_bool = VLC_TRUE; var_Set( p_sys->p_input, "highlight", val ); + vlc_mutex_unlock( p_mutex ); + } + } + vlc_mutex_unlock( &p_sys->lock_demuxer ); + vlc_mutex_lock( &p_ev->lock ); + } + } + else if( p_ev->b_moved ) + { +// dvdnav_mouse_select( NULL, pci, valx.i_int, valy.i_int ); } p_ev->b_moved = VLC_FALSE; p_ev->b_clicked = VLC_FALSE; vlc_mutex_unlock( &p_ev->lock ); } + + /* VOUT part */ if( p_vout && p_vout->b_die ) { var_DelCallback( p_vout, "mouse-moved", EventMouse, p_ev ); @@ -2398,7 +2640,8 @@ int demux_sys_t::EventThread( vlc_object_t *p_this ) vlc_object_release( p_vout ); p_vout = NULL; } - if( p_vout == NULL ) + + else if( p_vout == NULL ) { p_vout = (vlc_object_t*) vlc_object_find( p_sys->p_input, VLC_OBJECT_VOUT, FIND_CHILD ); @@ -2409,7 +2652,7 @@ int demux_sys_t::EventThread( vlc_object_t *p_this ) } } - /* Wait a bit */ + /* Wait a bit, 10ms */ msleep( 10000 ); } @@ -2431,12 +2674,11 @@ void matroska_segment_c::UnSelect( ) { size_t i_track; - sys.StopUiThread(); - for( i_track = 0; i_track < tracks.size(); i_track++ ) { if ( tracks[i_track]->p_es != NULL ) { +// es_format_Clean( &tracks[i_track]->fmt ); es_out_Del( sys.demuxer.out, tracks[i_track]->p_es ); tracks[i_track]->p_es = NULL; } @@ -2517,12 +2759,13 @@ bool virtual_segment_c::UpdateCurrentToChapter( demux_t & demux ) { demux_sys_t & sys = *demux.p_sys; chapter_item_c *psz_curr_chapter; + bool b_has_seeked = false; /* update current chapter/seekpoint */ if ( p_editions->size() ) { /* 1st, we need to know in which chapter we are */ - psz_curr_chapter = (*p_editions)[i_current_edition]->FindTimecode( sys.i_pts ); + psz_curr_chapter = (*p_editions)[i_current_edition]->FindTimecode( sys.i_pts, psz_current_chapter ); /* we have moved to a new chapter */ if (psz_curr_chapter != NULL && psz_current_chapter != psz_curr_chapter) @@ -2530,28 +2773,39 @@ bool virtual_segment_c::UpdateCurrentToChapter( demux_t & demux ) if ( (*p_editions)[i_current_edition]->b_ordered ) { // Leave/Enter up to the link point - if ( !psz_curr_chapter->EnterAndLeave( psz_current_chapter ) ) + b_has_seeked = psz_curr_chapter->EnterAndLeave( psz_current_chapter ); + if ( !b_has_seeked ) { - // only seek if necessary + // only physically seek if necessary if ( psz_current_chapter == NULL || (psz_current_chapter->i_end_time != psz_curr_chapter->i_start_time) ) Seek( demux, sys.i_pts, 0, psz_curr_chapter ); - psz_current_chapter = psz_curr_chapter; } } - else if ( psz_curr_chapter->i_seekpoint_num > 0 ) - { - demux.info.i_update |= INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT; - demux.info.i_title = sys.i_current_title = i_sys_title; - demux.info.i_seekpoint = psz_curr_chapter->i_seekpoint_num - 1; - psz_current_chapter = psz_curr_chapter; - } - else + + if ( !b_has_seeked ) { psz_current_chapter = psz_curr_chapter; + if ( psz_curr_chapter->i_seekpoint_num > 0 ) + { + demux.info.i_update |= INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT; + demux.info.i_title = sys.i_current_title = i_sys_title; + demux.info.i_seekpoint = psz_curr_chapter->i_seekpoint_num - 1; + } } return true; } + else if (psz_curr_chapter == NULL) + { + // out of the scope of the data described by chapters, leave the edition + if ( (*p_editions)[i_current_edition]->b_ordered && psz_current_chapter != NULL ) + { + if ( !(*p_editions)[i_current_edition]->EnterAndLeave( psz_current_chapter, false ) ) + psz_current_chapter = NULL; + else + return true; + } + } } return false; } @@ -2672,9 +2926,9 @@ std::string chapter_item_c::GetCodecName( bool f_for_title ) const std::string dvd_chapter_codec_c::GetCodecName( bool f_for_title ) const { std::string result; - if ( m_private_data.GetSize() >= 3) + if ( p_private_data->GetSize() >= 3) { - const binary* p_data = m_private_data.GetBuffer(); + const binary* p_data = p_private_data->GetBuffer(); /* if ( p_data[0] == MATROSKA_DVD_LEVEL_TT ) { uint16_t i_title = (p_data[1] << 8) + p_data[2]; @@ -2710,6 +2964,35 @@ std::string dvd_chapter_codec_c::GetCodecName( bool f_for_title ) const return result; } +int16 chapter_item_c::GetTitleNumber( ) const +{ + int result = -1; + + std::vector::const_iterator index = codecs.begin(); + while ( index != codecs.end() ) + { + result = (*index)->GetTitleNumber( ); + if ( result >= 0 ) + break; + index++; + } + + return result; +} + +int16 dvd_chapter_codec_c::GetTitleNumber() +{ + if ( p_private_data->GetSize() >= 3) + { + const binary* p_data = p_private_data->GetBuffer(); + if ( p_data[0] == MATROSKA_DVD_LEVEL_SS ) + { + return int16( (p_data[2] << 8) + p_data[3] ); + } + } + return -1; +} + static void Seek( demux_t *p_demux, mtime_t i_date, double f_percent, chapter_item_c *psz_chapter ) { demux_sys_t *p_sys = p_demux->p_sys; @@ -2745,7 +3028,7 @@ static void Seek( demux_t *p_demux, mtime_t i_date, double f_percent, chapter_it msg_Dbg( p_demux, "inacurate way of seeking" ); for( i_index = 0; i_index < p_segment->i_index; i_index++ ) { - if( p_segment->index[i_index].i_position >= i_pos) + if( p_segment->p_indexes[i_index].i_position >= i_pos) { break; } @@ -2755,10 +3038,10 @@ static void Seek( demux_t *p_demux, mtime_t i_date, double f_percent, chapter_it i_index--; } - i_date = p_segment->index[i_index].i_time; + i_date = p_segment->p_indexes[i_index].i_time; #if 0 - if( p_segment->index[i_index].i_position < i_pos ) + if( p_segment->p_indexes[i_index].i_position < i_pos ) { EbmlElement *el; @@ -2798,46 +3081,52 @@ static void Seek( demux_t *p_demux, mtime_t i_date, double f_percent, chapter_it static int Demux( demux_t *p_demux) { demux_sys_t *p_sys = p_demux->p_sys; + + vlc_mutex_lock( &p_sys->lock_demuxer ); + virtual_segment_c *p_vsegment = p_sys->p_current_segment; - matroska_segment_c *p_segmet = p_vsegment->Segment(); - if ( p_segmet == NULL ) return 0; + matroska_segment_c *p_segment = p_vsegment->Segment(); + if ( p_segment == NULL ) return 0; int i_block_count = 0; - - KaxBlock *block; - int64_t i_block_duration; - int64_t i_block_ref1; - int64_t i_block_ref2; + int i_return = 0; for( ;; ) { if ( p_sys->demuxer.b_die ) - return 0; + break; if( p_sys->i_pts >= p_sys->i_start_pts ) if ( p_vsegment->UpdateCurrentToChapter( *p_demux ) ) - return 1; + { + i_return = 1; + break; + } if ( p_vsegment->Edition() && p_vsegment->Edition()->b_ordered && p_vsegment->CurrentChapter() == NULL ) { /* nothing left to read in this ordered edition */ if ( !p_vsegment->SelectNext() ) - return 0; - p_segmet->UnSelect( ); + break; + p_segment->UnSelect( ); es_out_Control( p_demux->out, ES_OUT_RESET_PCR ); /* switch to the next segment */ - p_segmet = p_vsegment->Segment(); - if ( !p_segmet->Select( 0 ) ) + p_segment = p_vsegment->Segment(); + if ( !p_segment->Select( 0 ) ) { msg_Err( p_demux, "Failed to select new segment" ); - return 0; + break; } continue; } + KaxBlock *block; + int64_t i_block_duration = 0; + int64_t i_block_ref1; + int64_t i_block_ref2; - if( p_segmet->BlockGet( &block, &i_block_ref1, &i_block_ref2, &i_block_duration ) ) + if( p_segment->BlockGet( block, &i_block_ref1, &i_block_ref2, &i_block_duration ) ) { if ( p_vsegment->Edition() && p_vsegment->Edition()->b_ordered ) { @@ -2852,28 +3141,31 @@ static int Demux( demux_t *p_demux) p_sys->i_pts = p_chap->i_user_end_time; p_sys->i_pts++; // trick to avoid staying on segments with no duration and no content - return 1; + i_return = 1; } - return 0; + break; } - msg_Warn( p_demux, "cannot get block EOF?" ); - p_segmet->UnSelect( ); - - es_out_Control( p_demux->out, ES_OUT_RESET_PCR ); - - /* switch to the next segment */ - if ( !p_vsegment->SelectNext() ) - // no more segments in this stream - return 0; - p_segmet = p_vsegment->Segment(); - if ( !p_segmet->Select( 0 ) ) + else { - msg_Err( p_demux, "Failed to select new segment" ); - return 0; - } + msg_Warn( p_demux, "cannot get block EOF?" ); + p_segment->UnSelect( ); + + es_out_Control( p_demux->out, ES_OUT_RESET_PCR ); - continue; + /* switch to the next segment */ + if ( !p_vsegment->SelectNext() ) + // no more segments in this stream + break; + p_segment = p_vsegment->Segment(); + if ( !p_segment->Select( 0 ) ) + { + msg_Err( p_demux, "Failed to select new segment" ); + break; + } + + continue; + } } p_sys->i_pts = p_sys->i_chapter_time + block->GlobalTimecode() / (mtime_t) 1000; @@ -2883,6 +3175,32 @@ static int Demux( demux_t *p_demux) es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_pts ); } + if( p_sys->i_pts >= p_sys->i_start_pts ) + if ( p_vsegment->UpdateCurrentToChapter( *p_demux ) ) + { + i_return = 1; + break; + } + + if ( p_vsegment->Edition() && p_vsegment->Edition()->b_ordered && p_vsegment->CurrentChapter() == NULL ) + { + /* nothing left to read in this ordered edition */ + if ( !p_vsegment->SelectNext() ) + break; + p_segment->UnSelect( ); + + es_out_Control( p_demux->out, ES_OUT_RESET_PCR ); + + /* switch to the next segment */ + p_segment = p_vsegment->Segment(); + if ( !p_segment->Select( 0 ) ) + { + msg_Err( p_demux, "Failed to select new segment" ); + break; + } + continue; + } + BlockDecode( p_demux, block, p_sys->i_pts, i_block_duration ); delete block; @@ -2891,9 +3209,14 @@ static int Demux( demux_t *p_demux) // TODO optimize when there is need to leave or when seeking has been called if( i_block_count > 5 ) { - return 1; + i_return = 1; + break; } } + + vlc_mutex_unlock( &p_sys->lock_demuxer ); + + return i_return; } @@ -2996,6 +3319,36 @@ EbmlParser::~EbmlParser( void ) } } +EbmlElement* EbmlParser::UnGet( uint64 i_block_pos, uint64 i_cluster_pos ) +{ + if ( mi_user_level > mi_level ) + { + while ( mi_user_level != mi_level ) + { + delete m_el[mi_user_level]; + m_el[mi_user_level] = NULL; + mi_user_level--; + } + } + m_got = NULL; + mb_keep = VLC_FALSE; + if ( m_el[1]->GetElementPosition() == i_cluster_pos ) + { + m_es->I_O().setFilePointer( i_block_pos, seek_beginning ); + return (EbmlMaster*) m_el[1]; + } + else + { + // seek to the previous Cluster + m_es->I_O().setFilePointer( i_cluster_pos, seek_beginning ); + mi_level--; + mi_user_level--; + delete m_el[mi_level]; + m_el[mi_level] = NULL; + return NULL; + } +} + void EbmlParser::Up( void ) { if( mi_user_level == mi_level ) @@ -3066,7 +3419,7 @@ EbmlElement *EbmlParser::Get( void ) mb_keep = VLC_FALSE; } - m_el[mi_level] = m_es->FindNextElement( m_el[mi_level - 1]->Generic().Context, i_ulev, 0xFFFFFFFFL, mb_dummy, 1 ); + m_el[mi_level] = m_es->FindNextElement( m_el[mi_level - 1]->Generic().Context, i_ulev, 0xFFFFFFFFL, mb_dummy != 0, 1 ); // mi_remain_size[mi_level] = m_el[mi_level]->GetSize(); if( i_ulev > 0 ) { @@ -3141,7 +3494,7 @@ void matroska_segment_c::LoadCues( ) { if( MKV_IS_ID( el, KaxCuePoint ) ) { -#define idx index[i_index] +#define idx p_indexes[i_index] idx.i_track = -1; idx.i_block_number= -1; @@ -3210,7 +3563,7 @@ void matroska_segment_c::LoadCues( ) if( i_index >= i_index_max ) { i_index_max += 1024; - index = (mkv_index_t*)realloc( index, sizeof( mkv_index_t ) * i_index_max ); + p_indexes = (mkv_index_t*)realloc( p_indexes, sizeof( mkv_index_t ) * i_index_max ); } #undef idx } @@ -3784,6 +4137,11 @@ void matroska_segment_c::ParseTrackEntry( KaxTrackEntry *m ) } if ( tk->fmt.video.i_visible_height && tk->fmt.video.i_visible_width ) tk->fmt.video.i_aspect = VOUT_ASPECT_FACTOR * tk->fmt.video.i_visible_width / tk->fmt.video.i_visible_height; + if( tk->f_fps ) + { + tk->fmt.video.i_frame_rate = (unsigned int)(tk->f_fps * 1001); + tk->fmt.video.i_frame_rate_base = 1001; + } } else if( MKV_IS_ID( l, KaxTrackAudio ) ) { @@ -3882,21 +4240,21 @@ void matroska_segment_c::ParseInfo( KaxInfo *info ) if( MKV_IS_ID( l, KaxSegmentUID ) ) { - segment_uid = *(new KaxSegmentUID(*static_cast(l))); + p_segment_uid = new KaxSegmentUID(*static_cast(l)); - msg_Dbg( &sys.demuxer, "| | + UID=%d", *(uint32*)segment_uid.GetBuffer() ); + msg_Dbg( &sys.demuxer, "| | + UID=%d", *(uint32*)p_segment_uid->GetBuffer() ); } else if( MKV_IS_ID( l, KaxPrevUID ) ) { - prev_segment_uid = *(new KaxPrevUID(*static_cast(l))); + p_prev_segment_uid = new KaxPrevUID(*static_cast(l)); - msg_Dbg( &sys.demuxer, "| | + PrevUID=%d", *(uint32*)prev_segment_uid.GetBuffer() ); + msg_Dbg( &sys.demuxer, "| | + PrevUID=%d", *(uint32*)p_prev_segment_uid->GetBuffer() ); } else if( MKV_IS_ID( l, KaxNextUID ) ) { - next_segment_uid = *(new KaxNextUID(*static_cast(l))); + p_next_segment_uid = new KaxNextUID(*static_cast(l)); - msg_Dbg( &sys.demuxer, "| | + NextUID=%d", *(uint32*)next_segment_uid.GetBuffer() ); + msg_Dbg( &sys.demuxer, "| | + NextUID=%d", *(uint32*)p_next_segment_uid->GetBuffer() ); } else if( MKV_IS_ID( l, KaxTimecodeScale ) ) { @@ -3982,7 +4340,7 @@ void matroska_segment_c::ParseInfo( KaxInfo *info ) else if( MKV_IS_ID( l, KaxChapterTranslate ) ) { KaxChapterTranslate *p_trans = static_cast( l ); - chapter_translation_c translated; + chapter_translation_c *p_translate = new chapter_translation_c(); p_trans->Read( es, p_trans->Generic().Context, i_upper_level, el, true ); for( j = 0; j < p_trans->ListSize(); j++ ) @@ -3991,19 +4349,19 @@ void matroska_segment_c::ParseInfo( KaxInfo *info ) if( MKV_IS_ID( l, KaxChapterTranslateEditionUID ) ) { - translated.editions.push_back( uint64( *static_cast( l ) ) ); + p_translate->editions.push_back( uint64( *static_cast( l ) ) ); } else if( MKV_IS_ID( l, KaxChapterTranslateCodec ) ) { - translated.codec_id = uint32( *static_cast( l ) ); + p_translate->codec_id = uint32( *static_cast( l ) ); } else if( MKV_IS_ID( l, KaxChapterTranslateID ) ) { - translated.translated = *( new KaxChapterTranslateID( *static_cast( l ) ) ); + p_translate->p_translated = new KaxChapterTranslateID( *static_cast( l ) ); } } - translations.push_back( translated ); + translations.push_back( p_translate ); } #endif else @@ -4209,7 +4567,7 @@ void matroska_segment_c::ParseChapters( KaxChapters *chapters ) stored_editions[i]->RefreshChapters( ); } - if ( stored_editions[i_default_edition]->b_ordered ) + if ( stored_editions.size() != 0 && stored_editions[i_default_edition]->b_ordered ) { /* update the duration of the segment according to the sum of all sub chapters */ i_dur = stored_editions[i_default_edition]->Duration() / I64C(1000); @@ -4325,7 +4683,7 @@ void matroska_segment_c::InformationCreate( ) void matroska_segment_c::IndexAppendCluster( KaxCluster *cluster ) { -#define idx index[i_index] +#define idx p_indexes[i_index] idx.i_track = -1; idx.i_block_number= -1; idx.i_position = cluster->GetElementPosition(); @@ -4336,7 +4694,7 @@ void matroska_segment_c::IndexAppendCluster( KaxCluster *cluster ) if( i_index >= i_index_max ) { i_index_max += 1024; - index = (mkv_index_t*)realloc( index, sizeof( mkv_index_t ) * i_index_max ); + p_indexes = (mkv_index_t*)realloc( p_indexes, sizeof( mkv_index_t ) * i_index_max ); } #undef idx } @@ -4436,18 +4794,29 @@ mtime_t chapter_edition_c::Duration() const return i_result; } -chapter_item_c *chapter_item_c::FindTimecode( mtime_t i_user_timecode ) +chapter_item_c * chapter_edition_c::FindTimecode( mtime_t i_timecode, const chapter_item_c * p_current ) +{ + if ( !b_ordered ) + p_current = NULL; + bool b_found_current = false; + return chapter_item_c::FindTimecode( i_timecode, p_current, b_found_current ); +} + +chapter_item_c *chapter_item_c::FindTimecode( mtime_t i_user_timecode, const chapter_item_c * p_current, bool & b_found ) { chapter_item_c *psz_result = NULL; + if ( p_current == this ) + b_found = true; + if ( i_user_timecode >= i_user_start_time && ( i_user_timecode < i_user_end_time || ( i_user_start_time == i_user_end_time && i_user_timecode == i_user_end_time ))) { std::vector::iterator index = sub_chapters.begin(); - while ( index != sub_chapters.end() && psz_result == NULL ) + while ( index != sub_chapters.end() && ((p_current == NULL && psz_result == NULL) || (p_current != NULL && (!b_found || psz_result == NULL)))) { - psz_result = (*index)->FindTimecode( i_user_timecode ); + psz_result = (*index)->FindTimecode( i_user_timecode, p_current, b_found ); index++; } @@ -4559,16 +4928,18 @@ void demux_sys_t::PreloadLinked( matroska_segment_c *p_segment ) p_title->psz_name = strdup( sz_name.c_str() ); } - titles.push_back( *p_title ); + titles.push_back( p_title ); } } + + // TODO decide which segment should be first used (VMG for DVD) } bool demux_sys_t::IsUsedSegment( matroska_segment_c &segment ) const { for ( size_t i=0; i< used_segments.size(); i++ ) { - if ( used_segments[i]->FindUID( segment.segment_uid ) ) + if ( used_segments[i]->FindUID( *segment.p_segment_uid ) ) return true; } return false; @@ -4620,17 +4991,36 @@ bool demux_sys_t::PreparePlayback( virtual_segment_c *p_new_segment ) return true; } +void demux_sys_t::JumpTo( virtual_segment_c & vsegment, chapter_item_c * p_chapter ) +{ + // if the segment is not part of the current segment, select the new one + if ( &vsegment != p_current_segment ) + { + PreparePlayback( &vsegment ); + } + + if ( p_chapter != NULL ) + { + if ( !p_chapter->Enter( true ) ) + { + // jump to the location in the found segment + vsegment.Seek( demuxer, p_chapter->i_user_start_time, -1, p_chapter ); + } + } + +} + bool matroska_segment_c::CompareSegmentUIDs( const matroska_segment_c * p_item_a, const matroska_segment_c * p_item_b ) { - EbmlBinary * p_itema = (EbmlBinary *)(&p_item_a->segment_uid); - if ( *p_itema == p_item_b->prev_segment_uid ) + EbmlBinary * p_itema = (EbmlBinary *)(p_item_a->p_segment_uid); + if ( *p_itema == *p_item_b->p_prev_segment_uid ) return true; - p_itema = (EbmlBinary *)(&p_item_a->next_segment_uid); - if ( *p_itema == p_item_b->segment_uid ) + p_itema = (EbmlBinary *)(&p_item_a->p_next_segment_uid); + if ( *p_itema == *p_item_b->p_segment_uid ) return true; - if ( *p_itema == p_item_b->prev_segment_uid ) + if ( *p_itema == *p_item_b->p_prev_segment_uid ) return true; return false; @@ -4669,7 +5059,7 @@ bool matroska_segment_c::Preload( ) cluster = (KaxCluster*)el; - i_start_pos = cluster->GetElementPosition(); + i_cluster_pos = i_start_pos = cluster->GetElementPosition(); ParseCluster( ); ep->Down(); @@ -4704,7 +5094,7 @@ matroska_segment_c *demux_sys_t::FindSegment( const EbmlBinary & uid ) const { for (size_t i=0; isegment_uid == uid ) + if ( *opened_segments[i]->p_segment_uid == uid ) return opened_segments[i]; } return NULL; @@ -4762,21 +5152,21 @@ size_t virtual_segment_c::AddSegment( matroska_segment_c *p_segment ) // check if it's not already in here for ( i=0; isegment_uid == linked_segments[i]->segment_uid ) + if ( *p_segment->p_segment_uid == *linked_segments[i]->p_segment_uid ) return 0; } // find possible mates for ( i=0; isegment_uid == linked_uids[i] - || p_segment->prev_segment_uid == linked_uids[i] - || p_segment->next_segment_uid == linked_uids[i] ) + if ( (p_segment->p_segment_uid != NULL && *p_segment->p_segment_uid == linked_uids[i]) + || (p_segment->p_prev_segment_uid != NULL && *p_segment->p_prev_segment_uid == linked_uids[i]) + || (p_segment->p_next_segment_uid !=NULL && *p_segment->p_next_segment_uid == linked_uids[i]) ) { linked_segments.push_back( p_segment ); - AppendUID( p_segment->prev_segment_uid ); - AppendUID( p_segment->next_segment_uid ); + AppendUID( p_segment->p_prev_segment_uid ); + AppendUID( p_segment->p_next_segment_uid ); return 1; } @@ -4815,17 +5205,19 @@ void virtual_segment_c::LoadCues( ) } } -void virtual_segment_c::AppendUID( const EbmlBinary & UID ) +void virtual_segment_c::AppendUID( const EbmlBinary * p_UID ) { - if ( UID.GetBuffer() == NULL ) + if ( p_UID == NULL ) + return; + if ( p_UID->GetBuffer() == NULL ) return; for (size_t i=0; i i_date ) + if( p_indexes[i_idx].i_time + i_time_offset > i_date ) { break; } @@ -4856,8 +5248,8 @@ void matroska_segment_c::Seek( mtime_t i_date, mtime_t i_time_offset ) i_idx--; } - i_seek_position = index[i_idx].i_position; - i_seek_time = index[i_idx].i_time; + i_seek_position = p_indexes[i_idx].i_position; + i_seek_time = p_indexes[i_idx].i_time; } msg_Dbg( &sys.demuxer, "seek got "I64Fd" (%d%%)", @@ -4888,12 +5280,13 @@ void matroska_segment_c::Seek( mtime_t i_date, mtime_t i_time_offset ) while( i_track_skipping > 0 ) { - if( BlockGet( &block, &i_block_ref1, &i_block_ref2, &i_block_duration ) ) + if( BlockGet( block, &i_block_ref1, &i_block_ref2, &i_block_duration ) ) { msg_Warn( &sys.demuxer, "cannot get block EOF?" ); return; } + ep->Down(); for( i_track = 0; i_track < tracks.size(); i_track++ ) { @@ -4907,9 +5300,9 @@ void matroska_segment_c::Seek( mtime_t i_date, mtime_t i_time_offset ) if( i_track < tracks.size() ) { - if( sys.i_pts >= sys.i_start_pts ) + if( sys.i_pts >= sys.i_start_pts ) { - BlockDecode( &sys.demuxer, block, sys.i_pts, 0 ); + cluster = static_cast(ep->UnGet( i_block_pos, i_cluster_pos )); i_track_skipping = 0; } else if( tracks[i_track]->fmt.i_cat == VIDEO_ES ) @@ -4941,7 +5334,7 @@ void virtual_segment_c::Seek( demux_t & demuxer, mtime_t i_date, mtime_t i_time_ if ( Edition() && Edition()->b_ordered ) { /* 1st, we need to know in which chapter we are */ - psz_chapter = (*p_editions)[i_current_edition]->FindTimecode( i_date ); + psz_chapter = (*p_editions)[i_current_edition]->FindTimecode( i_date, psz_current_chapter ); } } @@ -5003,13 +5396,13 @@ void chapter_codec_cmds_c::AddCommand( const KaxChapterProcessCommand & command switch ( codec_time ) { case 0: - during_cmds.push_back( *p_data ); + during_cmds.push_back( p_data ); break; case 1: - enter_cmds.push_back( *p_data ); + enter_cmds.push_back( p_data ); break; case 2: - leave_cmds.push_back( *p_data ); + leave_cmds.push_back( p_data ); break; default: delete p_data; @@ -5066,7 +5459,7 @@ bool chapter_item_c::Leave( bool b_do_subs ) return f_result; } -bool chapter_item_c::EnterAndLeave( chapter_item_c *p_item ) +bool chapter_item_c::EnterAndLeave( chapter_item_c *p_item, bool b_final_enter ) { chapter_item_c *p_common_parent = p_item; @@ -5101,25 +5494,28 @@ bool chapter_item_c::EnterAndLeave( chapter_item_c *p_item ) } while ( 1 ); } - return Enter( true ); + if ( b_final_enter ) + return Enter( true ); + else + return false; } bool dvd_chapter_codec_c::Enter() { bool f_result = false; - std::vector::iterator index = enter_cmds.begin(); + std::vector::iterator index = enter_cmds.begin(); while ( index != enter_cmds.end() ) { - if ( (*index).GetSize() ) + if ( (*index)->GetSize() ) { - binary *p_data = (*index).GetBuffer(); + binary *p_data = (*index)->GetBuffer(); size_t i_size = *p_data++; // avoid reading too much from the buffer - i_size = min( i_size, ((*index).GetSize() - 1) >> 3 ); + i_size = min( i_size, ((*index)->GetSize() - 1) >> 3 ); for ( ; i_size > 0; i_size--, p_data += 8 ) { msg_Dbg( &sys.demuxer, "Matroska DVD enter command" ); - f_result |= interpretor.Interpret( p_data ); + f_result |= sys.dvd_interpretor.Interpret( p_data ); } } index++; @@ -5130,19 +5526,19 @@ bool dvd_chapter_codec_c::Enter() bool dvd_chapter_codec_c::Leave() { bool f_result = false; - std::vector::iterator index = leave_cmds.begin(); + std::vector::iterator index = leave_cmds.begin(); while ( index != leave_cmds.end() ) { - if ( (*index).GetSize() ) + if ( (*index)->GetSize() ) { - binary *p_data = (*index).GetBuffer(); + binary *p_data = (*index)->GetBuffer(); size_t i_size = *p_data++; // avoid reading too much from the buffer - i_size = min( i_size, ((*index).GetSize() - 1) >> 3 ); + i_size = min( i_size, ((*index)->GetSize() - 1) >> 3 ); for ( ; i_size > 0; i_size--, p_data += 8 ) { msg_Dbg( &sys.demuxer, "Matroska DVD leave command" ); - f_result |= interpretor.Interpret( p_data ); + f_result |= sys.dvd_interpretor.Interpret( p_data ); } } index++; @@ -5164,48 +5560,103 @@ bool dvd_command_interpretor_c::Interpret( const binary * p_command, size_t i_si // handle register tests if there are some if ( (i_command & 0xF0) != 0 ) { - bool b_test_positive = (i_command & CMD_DVD_IF_NOT) == 0; + bool b_test_positive = true;//(i_command & CMD_DVD_IF_NOT) == 0; bool b_test_value = (i_command & CMD_DVD_TEST_VALUE) != 0; uint8 i_test = i_command & 0x70; uint16 i_value; + // see http://dvd.sourceforge.net/dvdinfo/vmi.html + uint8 i_cr1; + uint16 i_cr2; + switch ( i_command >> 12 ) + { + default: + i_cr1 = p_command[3]; + i_cr2 = (p_command[4] << 8) + p_command[5]; + break; + case 3: + case 4: + case 5: + i_cr1 = p_command[6]; + i_cr2 = p_command[7]; + b_test_value = false; + break; + case 6: + case 7: + if ( ((p_command[1] >> 4) & 0x7) == 0) + { + i_cr1 = p_command[2]; + i_cr2 = (p_command[6] << 8) + p_command[7]; + } + else + { + i_cr1 = p_command[2]; + i_cr2 = (p_command[6] << 8) + p_command[7]; + } + break; + } + if ( b_test_value ) - i_value = ( p_command[4] << 8 ) + p_command[5]; + i_value = i_cr2; else - i_value = GetPRM( p_command[7] ); + i_value = GetPRM( i_cr2 ); switch ( i_test ) { case CMD_DVD_IF_GPREG_EQUAL: // if equals - msg_Dbg( &sys.demuxer, "IF %s EQUALS %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() ); - if (!( GetPRM( p_command[3] ) == i_value )) + msg_Dbg( &sys.demuxer, "IF %s EQUALS %s", GetRegTypeName( false, i_cr1 ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() ); + if (!( GetPRM( i_cr1 ) == i_value )) { - b_test_positive = !b_test_positive; + b_test_positive = false; + } + break; + case CMD_DVD_IF_GPREG_NOT_EQUAL: + // if not equals + msg_Dbg( &sys.demuxer, "IF %s NOT EQUALS %s", GetRegTypeName( false, i_cr1 ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() ); + if (!( GetPRM( i_cr1 ) != i_value )) + { + b_test_positive = false; } break; case CMD_DVD_IF_GPREG_INF: // if inferior msg_Dbg( &sys.demuxer, "IF %s < %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() ); - if (!( GetPRM( p_command[3] ) < i_value )) + if (!( GetPRM( i_cr1 ) < i_value )) { - b_test_positive = !b_test_positive; + b_test_positive = false; + } + break; + case CMD_DVD_IF_GPREG_INF_EQUAL: + // if inferior or equal + msg_Dbg( &sys.demuxer, "IF %s < %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() ); + if (!( GetPRM( i_cr1 ) <= i_value )) + { + b_test_positive = false; } break; case CMD_DVD_IF_GPREG_AND: // if logical and msg_Dbg( &sys.demuxer, "IF %s & %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() ); - if (!( GetPRM( p_command[3] ) & i_value )) + if (!( GetPRM( i_cr1 ) & i_value )) + { + b_test_positive = false; + } + break; + case CMD_DVD_IF_GPREG_SUP: + // if superior + msg_Dbg( &sys.demuxer, "IF %s >= %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() ); + if (!( GetPRM( i_cr1 ) > i_value )) { - b_test_positive = !b_test_positive; + b_test_positive = false; } break; case CMD_DVD_IF_GPREG_SUP_EQUAL: // if superior or equal msg_Dbg( &sys.demuxer, "IF %s >= %s", GetRegTypeName( false, p_command[3] ).c_str(), GetRegTypeName( b_test_value, i_value ).c_str() ); - if (!( GetPRM( p_command[3] ) >= i_value )) + if (!( GetPRM( i_cr1 ) >= i_value )) { - b_test_positive = !b_test_positive; + b_test_positive = false; } break; } @@ -5238,18 +5689,9 @@ bool dvd_command_interpretor_c::Interpret( const binary * p_command, size_t i_si // find in the ChapProcessPrivate matching this Title level p_chapter = sys.BrowseCodecPrivate( 1, MatchTitleNumber, &i_title, sizeof(i_title), p_segment ); - if ( p_chapter != NULL ) + if ( p_segment != NULL ) { - // if the segment is not part of the current segment, select the new one - if ( p_segment != sys.p_current_segment ) - { - sys.PreparePlayback( p_segment ); - } - - // jump to the location in the found segment - p_segment->Seek( sys.demuxer, p_chapter->i_user_start_time, -1, NULL ); - p_chapter->Enter( true ); - + sys.JumpTo( *p_segment, p_chapter ); f_result = true; } @@ -5257,64 +5699,201 @@ bool dvd_command_interpretor_c::Interpret( const binary * p_command, size_t i_si } case CMD_DVD_CALLSS_VTSM1: { - msg_Dbg( &sys.demuxer, "CallSS VTSM" ); + msg_Dbg( &sys.demuxer, "CallSS" ); + binary p_type; switch( (p_command[6] & 0xC0) >> 6 ) { case 0: - switch ( p_command[5] ) + p_type = p_command[5] & 0x0F; + switch ( p_type ) { case 0x00: - msg_Dbg( &sys.demuxer, "CallSS PGC (rsm_cell %x)", p_command[5]); + msg_Dbg( &sys.demuxer, "CallSS PGC (rsm_cell %x)", p_command[4]); break; - case 0x82: - msg_Dbg( &sys.demuxer, "CallSS Title Entry (rsm_cell %x)", p_command[5]); + case 0x02: + msg_Dbg( &sys.demuxer, "CallSS Title Entry (rsm_cell %x)", p_command[4]); break; - case 0x83: - msg_Dbg( &sys.demuxer, "CallSS Root Menu (rsm_cell %x)", p_command[5]); + case 0x03: + msg_Dbg( &sys.demuxer, "CallSS Root Menu (rsm_cell %x)", p_command[4]); break; - case 0x84: - msg_Dbg( &sys.demuxer, "CallSS Subpicture Menu (rsm_cell %x)", p_command[5]); + case 0x04: + msg_Dbg( &sys.demuxer, "CallSS Subpicture Menu (rsm_cell %x)", p_command[4]); break; - case 0x85: - msg_Dbg( &sys.demuxer, "CallSS Audio Menu (rsm_cell %x)", p_command[5]); + case 0x05: + msg_Dbg( &sys.demuxer, "CallSS Audio Menu (rsm_cell %x)", p_command[4]); break; - case 0x86: - msg_Dbg( &sys.demuxer, "CallSS Angle Menu (rsm_cell %x)", p_command[5]); + case 0x06: + msg_Dbg( &sys.demuxer, "CallSS Angle Menu (rsm_cell %x)", p_command[4]); break; - case 0x87: - msg_Dbg( &sys.demuxer, "CallSS Chapter Menu (rsm_cell %x)", p_command[5]); + case 0x07: + msg_Dbg( &sys.demuxer, "CallSS Chapter Menu (rsm_cell %x)", p_command[4]); break; default: - msg_Dbg( &sys.demuxer, "CallSS (rsm_cell %x)", p_command[5]); + msg_Dbg( &sys.demuxer, "CallSS (rsm_cell %x)", p_command[4]); break; } - p_chapter = sys.BrowseCodecPrivate( 1, MatchPgcType, &p_command[5], 1, p_segment ); - if ( p_chapter != NULL ) + p_chapter = sys.BrowseCodecPrivate( 1, MatchPgcType, &p_type, 1, p_segment ); + if ( p_segment != NULL ) { - // if the segment is not part of the current segment, select the new one - if ( p_segment != sys.p_current_segment ) - { - sys.PreparePlayback( p_segment ); - } - - p_chapter->Enter( true ); - - // jump to the location in the found segment - p_segment->Seek( sys.demuxer, p_chapter->i_user_start_time, -1, p_chapter ); + sys.JumpTo( *p_segment, p_chapter ); f_result = true; } break; case 1: - msg_Dbg( &sys.demuxer, "CallSS VMGM (menu %d, rsm_cell %x)", p_command[6] & 0x0F, p_command[5]); + msg_Dbg( &sys.demuxer, "CallSS VMGM (menu %d, rsm_cell %x)", p_command[5] & 0x0F, p_command[4]); break; case 2: - msg_Dbg( &sys.demuxer, "CallSS VTSM (menu %d, rsm_cell %x)", p_command[6] & 0x0F, p_command[5]); + msg_Dbg( &sys.demuxer, "CallSS VTSM (menu %d, rsm_cell %x)", p_command[5] & 0x0F, p_command[4]); + break; + case 3: + msg_Dbg( &sys.demuxer, "CallSS VMGM (pgc %d, rsm_cell %x)", (p_command[2] << 8) + p_command[3], p_command[4]); + break; + } + break; + } + case CMD_DVD_JUMP_SS: + { + msg_Dbg( &sys.demuxer, "JumpSS"); + binary p_type; + switch( (p_command[5] & 0xC0) >> 6 ) { + case 0: + msg_Dbg( &sys.demuxer, "JumpSS FP"); + break; + case 1: + p_type = p_command[5] & 0x0F; + switch ( p_type ) + { + case 0x02: + msg_Dbg( &sys.demuxer, "JumpSS VMGM Title Entry"); + break; + case 0x03: + msg_Dbg( &sys.demuxer, "JumpSS VMGM Root Menu"); + break; + case 0x04: + msg_Dbg( &sys.demuxer, "JumpSS VMGM Subpicture Menu"); + break; + case 0x05: + msg_Dbg( &sys.demuxer, "JumpSS VMGM Audio Menu"); + break; + case 0x06: + msg_Dbg( &sys.demuxer, "JumpSS VMGM Angle Menu"); + break; + case 0x07: + msg_Dbg( &sys.demuxer, "JumpSS VMGM Chapter Menu"); + break; + default: + msg_Dbg( &sys.demuxer, "JumpSS "); + break; + } + // find the VMG + p_chapter = sys.BrowseCodecPrivate( 1, MatchIsVMG, NULL, 0, p_segment ); + if ( p_segment != NULL ) + { + p_chapter = p_segment->BrowseCodecPrivate( 1, MatchPgcType, &p_type, 1 ); + if ( p_chapter != NULL ) + { + sys.JumpTo( *p_segment, p_chapter ); + f_result = true; + } + } + break; + case 2: + p_type = p_command[5] & 0x0F; + switch ( p_type ) + { + case 0x02: + msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Title Entry", p_command[4], p_command[3]); + break; + case 0x03: + msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Root Menu", p_command[4], p_command[3]); + break; + case 0x04: + msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Subpicture Menu", p_command[4], p_command[3]); + break; + case 0x05: + msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Audio Menu", p_command[4], p_command[3]); + break; + case 0x06: + msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Angle Menu", p_command[4], p_command[3]); + break; + case 0x07: + msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) Chapter Menu", p_command[4], p_command[3]); + break; + default: + msg_Dbg( &sys.demuxer, "JumpSS VTSM (vts %d, ttn %d) ", p_command[4], p_command[3]); + break; + } + + p_chapter = sys.BrowseCodecPrivate( 1, MatchVTSMNumber, &p_command[4], 1, p_segment ); + + if ( p_segment != NULL && p_chapter != NULL ) + { + // find the title in the VTS + p_chapter = p_chapter->BrowseCodecPrivate( 1, MatchTitleNumber, &p_command[3], 1 ); + if ( p_chapter != NULL ) + { + // find the specified menu in the VTSM + p_chapter = p_segment->BrowseCodecPrivate( 1, MatchPgcType, &p_type, 1 ); + if ( p_chapter != NULL ) + { + sys.JumpTo( *p_segment, p_chapter ); + f_result = true; + } + } + else + msg_Dbg( &sys.demuxer, "Title (%d) does not exist in this VTS", p_command[3] ); + } + else + msg_Dbg( &sys.demuxer, "DVD Domain VTS (%d) not found", p_command[4] ); break; case 3: - msg_Dbg( &sys.demuxer, "CallSS VMGM (pgc %d, rsm_cell %x)", (p_command[3] << 8) + p_command[4], p_command[5]); + msg_Dbg( &sys.demuxer, "JumpSS VMGM (pgc %d)", (p_command[2] << 8) + p_command[3]); break; } break; } + case CMD_DVD_JUMPVTS_PTT: + { + uint8 i_title = p_command[5]; + uint8 i_ptt = p_command[3]; + + msg_Dbg( &sys.demuxer, "JumpVTS Title (%d) PTT (%d)", i_title, i_ptt); + + // find the current VTS content segment + p_chapter = sys.p_current_segment->BrowseCodecPrivate( 1, MatchIsDomain, NULL, 0 ); + if ( p_chapter != NULL ) + { + int16 i_curr_title = p_chapter->GetTitleNumber( ); + if ( i_curr_title > 0 ) + { + p_chapter = sys.BrowseCodecPrivate( 1, MatchVTSNumber, &i_curr_title, sizeof(i_curr_title), p_segment ); + + if ( p_segment != NULL && p_chapter != NULL ) + { + // find the title in the VTS + p_chapter = p_chapter->BrowseCodecPrivate( 1, MatchTitleNumber, &i_title, sizeof(i_title) ); + if ( p_chapter != NULL ) + { + // find the chapter in the title + p_chapter = p_chapter->BrowseCodecPrivate( 1, MatchChapterNumber, &i_ptt, sizeof(i_ptt) ); + if ( p_chapter != NULL ) + { + sys.JumpTo( *p_segment, p_chapter ); + f_result = true; + } + } + else + msg_Dbg( &sys.demuxer, "Title (%d) does not exist in this VTS", i_title ); + } + else + msg_Dbg( &sys.demuxer, "DVD Domain VTS (%d) not found", i_curr_title ); + } + else + msg_Dbg( &sys.demuxer, "JumpVTS_PTT command found but not in a VTS(M)"); + } + else + msg_Dbg( &sys.demuxer, "JumpVTS_PTT command but the DVD domain wasn't found"); + break; + } case CMD_DVD_SET_GPRMMD: { msg_Dbg( &sys.demuxer, "Set GPRMMD [%d]=%d", (p_command[4] << 8) + p_command[5], (p_command[2] << 8) + p_command[3]); @@ -5328,14 +5907,33 @@ bool dvd_command_interpretor_c::Interpret( const binary * p_command, size_t i_si uint16 i_pgcn = (p_command[6] << 8) + p_command[7]; msg_Dbg( &sys.demuxer, "Link PGCN(%d)", i_pgcn ); - // TODO + p_chapter = sys.p_current_segment->BrowseCodecPrivate( 1, MatchPgcNumber, &i_pgcn, 2 ); + if ( p_chapter != NULL ) + { + if ( !p_chapter->Enter( true ) ) + // jump to the location in the found segment + sys.p_current_segment->Seek( sys.demuxer, p_chapter->i_user_start_time, -1, p_chapter ); + + f_result = true; + } break; } case CMD_DVD_LINKCN: { - msg_Dbg( &sys.demuxer, "LinkCN (cell %d)", (p_command[6] << 8) + p_command[7] ); - // TODO - f_result = true; + uint8 i_cn = p_command[7]; + + p_chapter = sys.p_current_segment->CurrentChapter(); + + msg_Dbg( &sys.demuxer, "LinkCN (cell %d)", i_cn ); + p_chapter = p_chapter->BrowseCodecPrivate( 1, MatchCellNumber, &i_cn, 1 ); + if ( p_chapter != NULL ) + { + if ( !p_chapter->Enter( true ) ) + // jump to the location in the found segment + sys.p_current_segment->Seek( sys.demuxer, p_chapter->i_user_start_time, -1, p_chapter ); + + f_result = true; + } break; } case CMD_DVD_GOTO_LINE: @@ -5344,6 +5942,12 @@ bool dvd_command_interpretor_c::Interpret( const binary * p_command, size_t i_si // TODO break; } + case CMD_DVD_SET_HL_BTNN1: + { + msg_Dbg( &sys.demuxer, "SetHL_BTN (%d)", p_command[4] ); + SetSPRM( 0x88, p_command[4] ); + break; + } default: { msg_Dbg( &sys.demuxer, "unsupported command : %02X %02X %02X %02X %02X %02X %02X %02X" @@ -5362,15 +5966,56 @@ bool dvd_command_interpretor_c::Interpret( const binary * p_command, size_t i_si return f_result; } +bool dvd_command_interpretor_c::MatchIsDomain( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ) +{ + return ( data.p_private_data != NULL && data.p_private_data->GetBuffer()[0] == MATROSKA_DVD_LEVEL_SS ); +} + +bool dvd_command_interpretor_c::MatchIsVMG( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ) +{ + if ( data.p_private_data == NULL || data.p_private_data->GetSize() < 2 ) + return false; + + return ( data.p_private_data->GetBuffer()[0] == MATROSKA_DVD_LEVEL_SS && data.p_private_data->GetBuffer()[1] == 0xC0); +} + +bool dvd_command_interpretor_c::MatchVTSNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ) +{ + if ( i_cookie_size != 2 || data.p_private_data == NULL || data.p_private_data->GetSize() < 4 ) + return false; + + if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_SS || data.p_private_data->GetBuffer()[1] != 0x80 ) + return false; + + uint16 i_gtitle = (data.p_private_data->GetBuffer()[2] << 8 ) + data.p_private_data->GetBuffer()[3]; + uint16 i_title = *(uint16*)p_cookie; + + return (i_gtitle == i_title); +} + +bool dvd_command_interpretor_c::MatchVTSMNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ) +{ + if ( i_cookie_size != 1 || data.p_private_data == NULL || data.p_private_data->GetSize() < 4 ) + return false; + + if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_SS || data.p_private_data->GetBuffer()[1] != 0x40 ) + return false; + + uint8 i_gtitle = data.p_private_data->GetBuffer()[3]; + uint8 i_title = *(uint8*)p_cookie; + + return (i_gtitle == i_title); +} + bool dvd_command_interpretor_c::MatchTitleNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ) { - if ( i_cookie_size != 1 || data.m_private_data.GetSize() < 4 ) + if ( i_cookie_size != 1 || data.p_private_data == NULL || data.p_private_data->GetSize() < 4 ) return false; - if ( data.m_private_data.GetBuffer()[0] != MATROSKA_DVD_LEVEL_TT ) + if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_TT ) return false; - uint16 i_gtitle = (data.m_private_data.GetBuffer()[1] << 8 ) + data.m_private_data.GetBuffer()[2]; + uint16 i_gtitle = (data.p_private_data->GetBuffer()[1] << 8 ) + data.p_private_data->GetBuffer()[2]; uint8 i_title = *(uint8*)p_cookie; return (i_gtitle == i_title); @@ -5378,28 +6023,70 @@ bool dvd_command_interpretor_c::MatchTitleNumber( const chapter_codec_cmds_c &da bool dvd_command_interpretor_c::MatchPgcType( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ) { - if ( i_cookie_size != 1 || data.m_private_data.GetSize() < 7 ) + if ( i_cookie_size != 1 || data.p_private_data == NULL || data.p_private_data->GetSize() < 8 ) return false; - if ( data.m_private_data.GetBuffer()[0] != MATROSKA_DVD_LEVEL_PGC ) + if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_PGC ) return false; - uint8 i_pgc_type = data.m_private_data.GetBuffer()[3]; + uint8 i_pgc_type = data.p_private_data->GetBuffer()[3] & 0x0F; uint8 i_pgc = *(uint8*)p_cookie; return (i_pgc_type == i_pgc); } +bool dvd_command_interpretor_c::MatchPgcNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ) +{ + if ( i_cookie_size != 2 || data.p_private_data == NULL || data.p_private_data->GetSize() < 8 ) + return false; + + if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_PGC ) + return false; + + uint16 *i_pgc_n = (uint16 *)p_cookie; + uint16 i_pgc_num = (data.p_private_data->GetBuffer()[1] << 8) + data.p_private_data->GetBuffer()[2]; + + return (i_pgc_num == *i_pgc_n); +} + +bool dvd_command_interpretor_c::MatchChapterNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ) +{ + if ( i_cookie_size != 1 || data.p_private_data == NULL || data.p_private_data->GetSize() < 2 ) + return false; + + if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_PTT ) + return false; + + uint8 i_chapter = data.p_private_data->GetBuffer()[1]; + uint8 i_ptt = *(uint8*)p_cookie; + + return (i_chapter == i_ptt); +} + +bool dvd_command_interpretor_c::MatchCellNumber( const chapter_codec_cmds_c &data, const void *p_cookie, size_t i_cookie_size ) +{ + if ( i_cookie_size != 1 || data.p_private_data == NULL || data.p_private_data->GetSize() < 5 ) + return false; + + if ( data.p_private_data->GetBuffer()[0] != MATROSKA_DVD_LEVEL_CN ) + return false; + + uint8 *i_cell_n = (uint8 *)p_cookie; + uint8 i_cell_num = data.p_private_data->GetBuffer()[3]; + + return (i_cell_num == *i_cell_n); +} + bool matroska_script_codec_c::Enter() { bool f_result = false; - std::vector::iterator index = enter_cmds.begin(); + std::vector::iterator index = enter_cmds.begin(); while ( index != enter_cmds.end() ) { - if ( (*index).GetSize() ) + if ( (*index)->GetSize() ) { msg_Dbg( &sys.demuxer, "Matroska Script enter command" ); - f_result |= interpretor.Interpret( (*index).GetBuffer(), (*index).GetSize() ); + f_result |= interpretor.Interpret( (*index)->GetBuffer(), (*index)->GetSize() ); } index++; } @@ -5409,13 +6096,13 @@ bool matroska_script_codec_c::Enter() bool matroska_script_codec_c::Leave() { bool f_result = false; - std::vector::iterator index = leave_cmds.begin(); + std::vector::iterator index = leave_cmds.begin(); while ( index != leave_cmds.end() ) { - if ( (*index).GetSize() ) + if ( (*index)->GetSize() ) { msg_Dbg( &sys.demuxer, "Matroska Script leave command" ); - f_result |= interpretor.Interpret( (*index).GetBuffer(), (*index).GetSize() ); + f_result |= interpretor.Interpret( (*index)->GetBuffer(), (*index)->GetSize() ); } index++; } @@ -5437,7 +6124,11 @@ bool matroska_script_interpretor_c::Interpret( const binary * p_command, size_t msg_Dbg( &sys.demuxer, "command : %s", sz_command.c_str() ); +#if defined(__GNUC__) && (__GNUC__ < 3) + if ( sz_command.compare( CMD_MS_GOTO_AND_PLAY, 0, CMD_MS_GOTO_AND_PLAY.size() ) == 0 ) +#else if ( sz_command.compare( 0, CMD_MS_GOTO_AND_PLAY.size(), CMD_MS_GOTO_AND_PLAY ) == 0 ) +#endif { size_t i,j; @@ -5478,3 +6169,32 @@ bool matroska_script_interpretor_c::Interpret( const binary * p_command, size_t return b_result; } + +void demux_sys_t::SwapButtons() +{ +#ifndef WORDS_BIGENDIAN + uint8_t button, i, j; + + for( button = 1; button <= pci_packet.hli.hl_gi.btn_ns; button++) { + btni_t *button_ptr = &(pci_packet.hli.btnit[button-1]); + binary *p_data = (binary*) button_ptr; + + uint16 i_x_start = ((p_data[0] & 0x3F) << 4 ) + ( p_data[1] >> 4 ); + uint16 i_x_end = ((p_data[1] & 0x03) << 8 ) + p_data[2]; + uint16 i_y_start = ((p_data[3] & 0x3F) << 4 ) + ( p_data[4] >> 4 ); + uint16 i_y_end = ((p_data[4] & 0x03) << 8 ) + p_data[5]; + button_ptr->x_start = i_x_start; + button_ptr->x_end = i_x_end; + button_ptr->y_start = i_y_start; + button_ptr->y_end = i_y_end; + + } + for ( i = 0; i<3; i++ ) + { + for ( j = 0; j<2; j++ ) + { + pci_packet.hli.btn_colit.btn_coli[i][j] = U32_AT( &pci_packet.hli.btn_colit.btn_coli[i][j] ); + } + } +#endif +}