Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
1479b918
Commit
1479b918
authored
Aug 17, 2007
by
Pierre d'Herbemont
Browse files
Forgotten files from previous commit.
parent
5f9f9ea4
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/vlc_events.h
View file @
1479b918
...
...
@@ -103,13 +103,15 @@ struct vlc_event_listeners_group_t;
typedef
struct
vlc_event_manager_t
{
void
*
p_obj
;
vlc_mutex_t
object_lock
;
DECL_ARRAY
(
struct
vlc_event_listeners_group_t
*
)
listeners_groups
;
}
vlc_event_manager_t
;
/* List of event */
typedef
enum
vlc_event_type_t
{
/* Input item events */
vlc_InputItemMetaChanged
,
vlc_InputItemSubItemAdded
vlc_InputItemSubItemAdded
,
}
vlc_event_type_t
;
/* Event definition */
...
...
@@ -119,6 +121,7 @@ typedef struct vlc_event_t
void
*
p_obj
;
/* Sender object, automatically filled by vlc_event_send() */
union
vlc_event_type_specific
{
/* Input item events */
struct
vlc_input_item_meta_changed
{
vlc_meta_type_t
meta_type
;
...
...
@@ -140,9 +143,10 @@ typedef void ( *vlc_event_callback_t )( const vlc_event_t *, void * );
/*
* p_obj points to the object that owns the event manager, and from
* which events are sent
* p_obj is here to give us a libvlc instance
*/
VLC_EXPORT
(
int
,
vlc_event_manager_init
,
(
vlc_event_manager_t
*
p_em
,
void
*
p_obj
));
void
*
p_obj
,
vlc_object_t
*
));
/*
* Destroy
...
...
@@ -175,6 +179,6 @@ VLC_EXPORT(int, vlc_event_attach, ( vlc_event_manager_t * p_event_manager,
VLC_EXPORT
(
int
,
vlc_event_detach
,
(
vlc_event_manager_t
*
p_event_manager
,
vlc_event_type_t
event_type
,
vlc_event_callback_t
pf_callback
,
void
*
p_user_data
));
void
*
p_user_data
));
#endif
/* VLC_EVENTS_H */
include/vlc_input.h
View file @
1479b918
...
...
@@ -114,7 +114,7 @@ static inline void input_ItemInit( vlc_object_t *p_o, input_item_t *p_i )
p_i
->
p_meta
=
NULL
;
vlc_mutex_init
(
p_o
,
&
p_i
->
lock
);
vlc_event_manager_init
(
&
p_i
->
event_manager
,
p_i
);
vlc_event_manager_init
(
&
p_i
->
event_manager
,
p_i
,
p_o
);
vlc_event_manager_register_event_type
(
&
p_i
->
event_manager
,
vlc_InputItemMetaChanged
);
vlc_event_manager_register_event_type
(
&
p_i
->
event_manager
,
...
...
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