Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
381646bb
Commit
381646bb
authored
Mar 26, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MKV: use key-action
parent
a7db90c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
22 deletions
+11
-22
modules/demux/mkv.cpp
modules/demux/mkv.cpp
+11
-22
No files found.
modules/demux/mkv.cpp
View file @
381646bb
...
@@ -1281,7 +1281,7 @@ typedef struct
...
@@ -1281,7 +1281,7 @@ typedef struct
vlc_bool_t
b_moved
;
vlc_bool_t
b_moved
;
vlc_bool_t
b_clicked
;
vlc_bool_t
b_clicked
;
vlc_bool_t
b_key
;
int
i_key_action
;
}
event_thread_t
;
}
event_thread_t
;
...
@@ -2712,12 +2712,12 @@ int demux_sys_t::EventMouse( vlc_object_t *p_this, char const *psz_var,
...
@@ -2712,12 +2712,12 @@ int demux_sys_t::EventMouse( vlc_object_t *p_this, char const *psz_var,
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
int
demux_sys_t
::
EventKey
(
vlc_object_t
*
p_this
,
char
const
*
psz_var
,
int
demux_sys_t
::
EventKey
(
vlc_object_t
*
p_this
,
char
const
*
,
vlc_value_t
oldval
,
vlc_value_t
newval
,
void
*
p_data
)
vlc_value_t
,
vlc_value_t
newval
,
void
*
p_data
)
{
{
event_thread_t
*
p_ev
=
(
event_thread_t
*
)
p_data
;
event_thread_t
*
p_ev
=
(
event_thread_t
*
)
p_data
;
vlc_mutex_lock
(
&
p_ev
->
lock
);
vlc_mutex_lock
(
&
p_ev
->
lock
);
p_ev
->
b_key
=
VLC_TRUE
;
p_ev
->
i_key_action
=
newval
.
i_int
;
vlc_mutex_unlock
(
&
p_ev
->
lock
);
vlc_mutex_unlock
(
&
p_ev
->
lock
);
msg_Dbg
(
p_this
,
"Event Key"
);
msg_Dbg
(
p_this
,
"Event Key"
);
...
@@ -2732,10 +2732,10 @@ int demux_sys_t::EventThread( vlc_object_t *p_this )
...
@@ -2732,10 +2732,10 @@ int demux_sys_t::EventThread( vlc_object_t *p_this )
p_ev
->
b_moved
=
VLC_FALSE
;
p_ev
->
b_moved
=
VLC_FALSE
;
p_ev
->
b_clicked
=
VLC_FALSE
;
p_ev
->
b_clicked
=
VLC_FALSE
;
p_ev
->
b_key
=
VLC_FALSE
;
p_ev
->
i_key_action
=
0
;
/* catch all key event */
/* catch all key event */
var_AddCallback
(
p_ev
->
p_libvlc
,
"key-
pressed
"
,
EventKey
,
p_ev
);
var_AddCallback
(
p_ev
->
p_libvlc
,
"key-
action
"
,
EventKey
,
p_ev
);
/* main loop */
/* main loop */
while
(
!
p_ev
->
b_die
)
while
(
!
p_ev
->
b_die
)
...
@@ -2750,11 +2750,9 @@ int demux_sys_t::EventThread( vlc_object_t *p_this )
...
@@ -2750,11 +2750,9 @@ int demux_sys_t::EventThread( vlc_object_t *p_this )
vlc_bool_t
b_activated
=
VLC_FALSE
;
vlc_bool_t
b_activated
=
VLC_FALSE
;
/* KEY part */
/* KEY part */
if
(
p_ev
->
b_key
)
if
(
p_ev
->
i_key_action
)
{
{
vlc_value_t
valk
;
int
i
;
struct
libvlc_int_t
::
hotkey
*
p_hotkeys
=
p_ev
->
p_libvlc
->
p_hotkeys
;
int
i
,
i_action
=
-
1
;
msg_Dbg
(
p_ev
->
p_demux
,
"Handle Key Event"
);
msg_Dbg
(
p_ev
->
p_demux
,
"Handle Key Event"
);
...
@@ -2762,18 +2760,9 @@ int demux_sys_t::EventThread( vlc_object_t *p_this )
...
@@ -2762,18 +2760,9 @@ int demux_sys_t::EventThread( vlc_object_t *p_this )
pci_t
*
pci
=
(
pci_t
*
)
&
p_sys
->
pci_packet
;
pci_t
*
pci
=
(
pci_t
*
)
&
p_sys
->
pci_packet
;
var_Get
(
p_ev
->
p_libvlc
,
"key-pressed"
,
&
valk
);
for
(
i
=
0
;
p_hotkeys
[
i
].
psz_action
!=
NULL
;
i
++
)
{
if
(
p_hotkeys
[
i
].
i_key
==
valk
.
i_int
)
{
i_action
=
p_hotkeys
[
i
].
i_action
;
}
}
uint16
i_curr_button
=
p_sys
->
dvd_interpretor
.
GetSPRM
(
0x88
);
uint16
i_curr_button
=
p_sys
->
dvd_interpretor
.
GetSPRM
(
0x88
);
switch
(
i
_action
)
switch
(
p_ev
->
i_key
_action
)
{
{
case
ACTIONID_NAV_LEFT
:
case
ACTIONID_NAV_LEFT
:
if
(
i_curr_button
>
0
&&
i_curr_button
<=
pci
->
hli
.
hl_gi
.
btn_ns
)
if
(
i_curr_button
>
0
&&
i_curr_button
<=
pci
->
hli
.
hl_gi
.
btn_ns
)
...
@@ -2887,7 +2876,7 @@ int demux_sys_t::EventThread( vlc_object_t *p_this )
...
@@ -2887,7 +2876,7 @@ int demux_sys_t::EventThread( vlc_object_t *p_this )
default:
default:
break
;
break
;
}
}
p_ev
->
b_key
=
VLC_FALSE
;
p_ev
->
i_key_action
=
0
;
vlc_mutex_unlock
(
&
p_ev
->
lock
);
vlc_mutex_unlock
(
&
p_ev
->
lock
);
}
}
...
@@ -3037,7 +3026,7 @@ int demux_sys_t::EventThread( vlc_object_t *p_this )
...
@@ -3037,7 +3026,7 @@ int demux_sys_t::EventThread( vlc_object_t *p_this )
var_DelCallback
(
p_vout
,
"mouse-clicked"
,
EventMouse
,
p_ev
);
var_DelCallback
(
p_vout
,
"mouse-clicked"
,
EventMouse
,
p_ev
);
vlc_object_release
(
p_vout
);
vlc_object_release
(
p_vout
);
}
}
var_DelCallback
(
p_ev
->
p_libvlc
,
"key-
pressed
"
,
EventKey
,
p_ev
);
var_DelCallback
(
p_ev
->
p_libvlc
,
"key-
action
"
,
EventKey
,
p_ev
);
vlc_mutex_destroy
(
&
p_ev
->
lock
);
vlc_mutex_destroy
(
&
p_ev
->
lock
);
...
...
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