Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
578f2782
Commit
578f2782
authored
May 13, 2005
by
Steve Lhomme
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mkv.cpp: fix the interpretation of JumVTS_PTT (and now all 3 buttons work)
parent
97d79cb0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
23 deletions
+31
-23
modules/demux/mkv.cpp
modules/demux/mkv.cpp
+31
-23
No files found.
modules/demux/mkv.cpp
View file @
578f2782
...
@@ -1231,7 +1231,7 @@ public:
...
@@ -1231,7 +1231,7 @@ public:
,
f_duration
(
-
1.0
)
,
f_duration
(
-
1.0
)
,
b_ui_hooked
(
false
)
,
b_ui_hooked
(
false
)
,
p_input
(
NULL
)
,
p_input
(
NULL
)
,
b_pci_packet_set
(
false
)
,
b_pci_packet_set
(
false
)
,
i_curr_button
(
0
)
,
i_curr_button
(
0
)
,
p_ev
(
NULL
)
,
p_ev
(
NULL
)
{
{
...
@@ -1295,7 +1295,7 @@ public:
...
@@ -1295,7 +1295,7 @@ public:
/* for spu variables */
/* for spu variables */
input_thread_t
*
p_input
;
input_thread_t
*
p_input
;
pci_t
pci_packet
;
pci_t
pci_packet
;
bool
b_pci_packet_set
;
bool
b_pci_packet_set
;
int16
i_curr_button
;
int16
i_curr_button
;
uint8_t
alpha
[
4
];
uint8_t
alpha
[
4
];
vlc_mutex_t
lock_demuxer
;
vlc_mutex_t
lock_demuxer
;
...
@@ -1819,7 +1819,7 @@ static void BlockDecode( demux_t *p_demux, KaxBlock *block, mtime_t i_pts,
...
@@ -1819,7 +1819,7 @@ static void BlockDecode( demux_t *p_demux, KaxBlock *block, mtime_t i_pts,
vlc_mutex_lock
(
&
p_sys
->
p_ev
->
lock
);
vlc_mutex_lock
(
&
p_sys
->
p_ev
->
lock
);
memcpy
(
&
p_sys
->
pci_packet
,
&
p_block
->
p_buffer
[
1
],
sizeof
(
pci_t
)
);
memcpy
(
&
p_sys
->
pci_packet
,
&
p_block
->
p_buffer
[
1
],
sizeof
(
pci_t
)
);
p_sys
->
SwapButtons
();
p_sys
->
SwapButtons
();
p_sys
->
b_pci_packet_set
=
true
;
p_sys
->
b_pci_packet_set
=
true
;
vlc_mutex_unlock
(
&
p_sys
->
p_ev
->
lock
);
vlc_mutex_unlock
(
&
p_sys
->
p_ev
->
lock
);
block_Release
(
p_block
);
block_Release
(
p_block
);
}
}
...
@@ -1944,7 +1944,7 @@ bool matroska_segment_c::Select( mtime_t i_start_time )
...
@@ -1944,7 +1944,7 @@ bool matroska_segment_c::Select( mtime_t i_start_time )
/* add all es */
/* add all es */
msg_Dbg
(
&
sys
.
demuxer
,
"found %d es"
,
tracks
.
size
()
);
msg_Dbg
(
&
sys
.
demuxer
,
"found %d es"
,
tracks
.
size
()
);
sys
.
b_pci_packet_set
=
false
;
sys
.
b_pci_packet_set
=
false
;
for
(
i_track
=
0
;
i_track
<
tracks
.
size
();
i_track
++
)
for
(
i_track
=
0
;
i_track
<
tracks
.
size
();
i_track
++
)
{
{
if
(
tracks
[
i_track
]
->
fmt
.
i_cat
==
UNKNOWN_ES
)
if
(
tracks
[
i_track
]
->
fmt
.
i_cat
==
UNKNOWN_ES
)
...
@@ -2355,13 +2355,13 @@ int demux_sys_t::EventThread( vlc_object_t *p_this )
...
@@ -2355,13 +2355,13 @@ int demux_sys_t::EventThread( vlc_object_t *p_this )
vlc_mutex_lock
(
&
p_ev
->
lock
);
vlc_mutex_lock
(
&
p_ev
->
lock
);
if
(
!
p_sys
->
b_pci_packet_set
)
if
(
!
p_sys
->
b_pci_packet_set
)
{
{
vlc_mutex_unlock
(
&
p_ev
->
lock
);
vlc_mutex_unlock
(
&
p_ev
->
lock
);
/* Wait 100ms */
/* Wait 100ms */
msleep
(
100000
);
msleep
(
100000
);
continue
;
continue
;
}
}
pci_t
*
pci
=
(
pci_t
*
)
&
p_sys
->
pci_packet
;
pci_t
*
pci
=
(
pci_t
*
)
&
p_sys
->
pci_packet
;
...
@@ -5481,8 +5481,8 @@ bool dvd_command_interpretor_c::Interpret( const binary * p_command, size_t i_si
...
@@ -5481,8 +5481,8 @@ bool dvd_command_interpretor_c::Interpret( const binary * p_command, size_t i_si
}
}
case
CMD_DVD_JUMPVTS_PTT
:
case
CMD_DVD_JUMPVTS_PTT
:
{
{
uint
16
i_title
=
(
p_command
[
4
]
<<
8
)
+
p_command
[
5
];
uint
8
i_title
=
p_command
[
5
];
uint8
i_ptt
=
p_command
[
3
];
uint8
i_ptt
=
p_command
[
3
];
msg_Dbg
(
&
sys
.
demuxer
,
"JumpVTS Title (%d) PTT (%d)"
,
i_title
,
i_ptt
);
msg_Dbg
(
&
sys
.
demuxer
,
"JumpVTS Title (%d) PTT (%d)"
,
i_title
,
i_ptt
);
...
@@ -5497,21 +5497,29 @@ bool dvd_command_interpretor_c::Interpret( const binary * p_command, size_t i_si
...
@@ -5497,21 +5497,29 @@ bool dvd_command_interpretor_c::Interpret( const binary * p_command, size_t i_si
if
(
p_chapter
!=
NULL
)
if
(
p_chapter
!=
NULL
)
{
{
p_chapter
=
p_segment
->
BrowseCodecPrivate
(
1
,
MatchChapterNumber
,
&
i_ptt
,
sizeof
(
i_ptt
)
);
// find the title in the VTS
p_chapter
=
p_chapter
->
BrowseCodecPrivate
(
1
,
MatchTitleNumber
,
&
i_title
,
sizeof
(
i_title
)
);
if
(
p_chapter
!=
NULL
)
if
(
p_chapter
!=
NULL
)
{
{
// if the segment is not part of the current segment, select the new one
// find the chapter in the title
if
(
p_segment
!=
sys
.
p_current_segment
)
p_chapter
=
p_chapter
->
BrowseCodecPrivate
(
1
,
MatchChapterNumber
,
&
i_ptt
,
sizeof
(
i_ptt
)
);
if
(
p_chapter
!=
NULL
)
{
{
sys
.
PreparePlayback
(
p_segment
);
// 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
);
f_result
=
true
;
}
}
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
);
f_result
=
true
;
}
}
else
msg_Dbg
(
&
sys
.
demuxer
,
"Title (%d) does not exist in this VTS"
,
i_title
);
}
}
else
else
msg_Dbg
(
&
sys
.
demuxer
,
"DVD Domain VTS (%d) not found"
,
i_curr_title
);
msg_Dbg
(
&
sys
.
demuxer
,
"DVD Domain VTS (%d) not found"
,
i_curr_title
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment