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
a0c1d2cc
Commit
a0c1d2cc
authored
May 30, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SDL: use key thread (partially fix #3661)
parent
cb72d26f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
modules/video_output/Modules.am
modules/video_output/Modules.am
+1
-1
modules/video_output/sdl.c
modules/video_output/sdl.c
+7
-2
No files found.
modules/video_output/Modules.am
View file @
a0c1d2cc
...
...
@@ -7,7 +7,7 @@ LIBTOOL=@LIBTOOL@ --tag=CC
SOURCES_aa = aa.c
SOURCES_caca = caca.c
SOURCES_fb = fb.c
SOURCES_vout_sdl = sdl.c
SOURCES_vout_sdl = sdl.c
keythread.h keythread.c
SOURCES_snapshot = snapshot.c
SOURCES_directfb = directfb.c
SOURCES_vmem = vmem.c
...
...
modules/video_output/sdl.c
View file @
a0c1d2cc
...
...
@@ -35,6 +35,7 @@
#include <vlc_plugin.h>
#include <vlc_vout_display.h>
#include <vlc_picture_pool.h>
#include "keythread.h"
#include <assert.h>
...
...
@@ -99,6 +100,7 @@ struct vout_display_sys_t {
/* */
picture_pool_t
*
pool
;
key_thread_t
*
keys
;
};
/**
...
...
@@ -332,6 +334,8 @@ static int Open(vlc_object_t *object)
/* */
vout_display_SendEventDisplaySize
(
vd
,
display_width
,
display_height
,
vd
->
cfg
->
is_fullscreen
);
sys
->
keys
=
vlc_CreateKeyThread
(
vd
);
return
VLC_SUCCESS
;
error:
...
...
@@ -358,6 +362,8 @@ static void Close(vlc_object_t *object)
vout_display_t
*
vd
=
(
vout_display_t
*
)
object
;
vout_display_sys_t
*
sys
=
vd
->
sys
;
vlc_DestroyKeyThread
(
sys
->
keys
);
if
(
sys
->
pool
)
picture_pool_Delete
(
sys
->
pool
);
...
...
@@ -596,7 +602,7 @@ static void Manage(vout_display_t *vd)
key
|=
KEY_MODIFIER_CTRL
;
if
(
event
.
key
.
keysym
.
mod
&
KMOD_ALT
)
key
|=
KEY_MODIFIER_ALT
;
v
out_display_SendEventKey
(
vd
,
key
);
v
lc_EmitKey
(
sys
->
keys
,
key
);
break
;
}
...
...
@@ -702,4 +708,3 @@ static int ConvertKey(SDLKey sdl_key)
}
return
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