Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
18acd8a0
Commit
18acd8a0
authored
Jun 14, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input: Add input_get_event_manager().
parent
5573aa7b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
+12
-0
include/vlc_input.h
include/vlc_input.h
+2
-0
src/input/input.c
src/input/input.c
+9
-0
src/libvlccore.sym
src/libvlccore.sym
+1
-0
No files found.
include/vlc_input.h
View file @
18acd8a0
...
...
@@ -665,4 +665,6 @@ VLC_EXPORT( void, input_DecoderDecode,( decoder_t *, block_t * ) );
VLC_EXPORT
(
bool
,
input_AddSubtitles
,
(
input_thread_t
*
,
char
*
,
bool
)
);
VLC_EXPORT
(
vlc_event_manager_t
*
,
input_get_event_manager
,
(
input_thread_t
*
)
);
#endif
src/input/input.c
View file @
18acd8a0
...
...
@@ -2864,3 +2864,12 @@ bool input_AddSubtitles( input_thread_t *p_input, char *psz_subtitle,
return
true
;
}
/*****************************************************************************
* input_get_event_manager
*****************************************************************************/
vlc_event_manager_t
*
input_get_event_manager
(
input_thread_t
*
p_input
)
{
return
&
p_input
->
p
->
event_manager
;
}
src/libvlccore.sym
View file @
18acd8a0
...
...
@@ -146,6 +146,7 @@ input_DecoderDecode
input_DecoderDelete
input_DecoderNew
input_GetItem
input_get_event_manager
input_ItemAddInfo
input_ItemAddOpt
__input_ItemGetById
...
...
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