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
adaa7778
Commit
adaa7778
authored
Feb 01, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LibVLC: enable mouse events by default
parent
9e1a485c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/control/media_player.c
src/control/media_player.c
+2
-2
No files found.
src/control/media_player.c
View file @
adaa7778
...
...
@@ -341,7 +341,7 @@ libvlc_media_player_new( libvlc_instance_t *instance )
}
vlc_object_attach
(
mp
,
mp
->
p_libvlc
);
/*
Drawable
*/
/*
Video
*/
var_Create
(
mp
,
"drawable-xid"
,
VLC_VAR_INTEGER
);
#ifdef WIN32
var_Create
(
mp
,
"drawable-hwnd"
,
VLC_VAR_ADDRESS
);
...
...
@@ -351,10 +351,10 @@ libvlc_media_player_new( libvlc_instance_t *instance )
var_Create
(
mp
,
"drawable-nsobject"
,
VLC_VAR_ADDRESS
);
#endif
/* Drawable input methods */
var_Create
(
mp
,
"keyboard-events"
,
VLC_VAR_BOOL
);
var_SetBool
(
mp
,
"keyboard-events"
,
true
);
var_Create
(
mp
,
"mouse-events"
,
VLC_VAR_BOOL
);
var_SetBool
(
mp
,
"mouse-events"
,
true
);
/* Audio */
var_Create
(
mp
,
"aout"
,
VLC_VAR_STRING
|
VLC_VAR_DOINHERIT
);
...
...
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