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
d2edf5f5
Commit
d2edf5f5
authored
Jul 29, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/video_output/directx/events.c: compilation fix.
parent
53f87282
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
modules/video_output/directx/events.c
modules/video_output/directx/events.c
+6
-6
No files found.
modules/video_output/directx/events.c
View file @
d2edf5f5
...
...
@@ -2,7 +2,7 @@
* events.c: Windows DirectX video output events handler
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: events.c,v 1.2
0 2003/07/29 21:14:10
gbazin Exp $
* $Id: events.c,v 1.2
1 2003/07/29 21:46:44
gbazin Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -220,29 +220,29 @@ void DirectXEventThread( event_thread_t *p_event )
/* input_Seek( p_event->p_vout, -5,
INPUT_SEEK_SECONDS | INPUT_SEEK_CUR ); */
val
.
psz_string
=
"LEFT"
;
var_Set
(
p_vout
,
"key-pressed"
,
val
);
var_Set
(
p_
event
->
p_
vout
,
"key-pressed"
,
val
);
break
;
case
VK_RIGHT
:
/* input_Seek( p_event->p_vout, 5,
INPUT_SEEK_SECONDS | INPUT_SEEK_CUR ); */
val
.
psz_string
=
"RIGHT"
;
var_Set
(
p_vout
,
"key-pressed"
,
val
);
var_Set
(
p_
event
->
p_
vout
,
"key-pressed"
,
val
);
break
;
case
VK_UP
:
/* input_Seek( p_event->p_vout, 60,
INPUT_SEEK_SECONDS | INPUT_SEEK_CUR ); */
val
.
psz_string
=
"UP"
;
var_Set
(
p_vout
,
"key-pressed"
,
val
);
var_Set
(
p_
event
->
p_
vout
,
"key-pressed"
,
val
);
break
;
case
VK_DOWN
:
/* input_Seek( p_event->p_vout, -60,
INPUT_SEEK_SECONDS | INPUT_SEEK_CUR ); */
val
.
psz_string
=
"DOWN"
;
var_Set
(
p_vout
,
"key-pressed"
,
val
);
var_Set
(
p_
event
->
p_
vout
,
"key-pressed"
,
val
);
break
;
case
VK_RETURN
:
val
.
psz_string
=
"ENTER"
;
var_Set
(
p_vout
,
"key-pressed"
,
val
);
var_Set
(
p_
event
->
p_
vout
,
"key-pressed"
,
val
);
break
;
case
VK_HOME
:
input_Seek
(
p_event
->
p_vout
,
0
,
...
...
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