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
4b435093
Commit
4b435093
authored
May 30, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AA: use key thread (partially fix #3661) - untested
parent
031dec33
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
8 deletions
+12
-8
modules/video_output/Modules.am
modules/video_output/Modules.am
+1
-1
modules/video_output/aa.c
modules/video_output/aa.c
+11
-7
No files found.
modules/video_output/Modules.am
View file @
4b435093
...
...
@@ -4,7 +4,7 @@ SUBDIRS = msw
# obviously does not. Here is a fix for that.
LIBTOOL=@LIBTOOL@ --tag=CC
SOURCES_aa = aa.c
SOURCES_aa = aa.c
keythread.h keythread.c
SOURCES_caca = caca.c keythread.h keythread.c
SOURCES_fb = fb.c
SOURCES_vout_sdl = sdl.c keythread.h keythread.c
...
...
modules/video_output/aa.c
View file @
4b435093
...
...
@@ -32,6 +32,7 @@
#include <vlc_plugin.h>
#include <vlc_vout_display.h>
#include <vlc_picture_pool.h>
#include "keythread.h"
#include <assert.h>
#include <aalib.h>
...
...
@@ -73,6 +74,7 @@ struct vout_display_sys_t {
vout_display_cfg_t
state
;
picture_pool_t
*
pool
;
key_thread_t
*
keys
;
};
/**
...
...
@@ -129,6 +131,7 @@ static int Open(vlc_object_t *object)
vout_display_SendEventFullscreen
(
vd
,
false
);
vout_display_SendEventDisplaySize
(
vd
,
fmt
.
i_width
,
fmt
.
i_height
,
false
);
sys
->
keys
=
vlc_CreateKeyThread
(
vd
);
return
VLC_SUCCESS
;
error:
...
...
@@ -146,6 +149,7 @@ static void Close(vlc_object_t *object)
vout_display_t
*
vd
=
(
vout_display_t
*
)
object
;
vout_display_sys_t
*
sys
=
vd
->
sys
;
vlc_DestroyKeyTread
(
sys
->
keys
);
if
(
sys
->
pool
)
picture_pool_Delete
(
sys
->
pool
);
aa_close
(
sys
->
aa_context
);
...
...
@@ -288,26 +292,26 @@ static void Manage(vout_display_t *vd)
/* TODO keys support to complete */
case
AA_UP
:
v
out_display_SendEventKey
(
vd
,
KEY_UP
);
v
lc_EmitKey
(
sys
->
keys
,
KEY_UP
);
break
;
case
AA_DOWN
:
v
out_display_SendEventKey
(
vd
,
KEY_DOWN
);
v
lc_EmitKey
(
sys
->
keys
,
KEY_DOWN
);
break
;
case
AA_RIGHT
:
v
out_display_SendEventKey
(
vd
,
KEY_RIGHT
);
v
lc_EmitKey
(
sys
->
keys
,
KEY_RIGHT
);
break
;
case
AA_LEFT
:
v
out_display_SendEventKey
(
vd
,
KEY_LEFT
);
v
lc_EmitKey
(
sys
->
keys
,
KEY_LEFT
);
break
;
case
AA_BACKSPACE
:
v
out_display_SendEventKey
(
vd
,
KEY_BACKSPACE
);
v
lc_EmitKey
(
sys
->
keys
,
KEY_BACKSPACE
);
break
;
case
AA_ESC
:
v
out_display_SendEventKey
(
vd
,
KEY_ESC
);
v
lc_EmitKey
(
sys
->
keys
,
KEY_ESC
);
break
;
default:
if
(
event
>=
0x20
&&
event
<=
0x7f
)
v
out_display_SendEventKey
(
vd
,
event
);
v
lc_EmitKey
(
sys
->
keys
,
event
);
break
;
}
}
...
...
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