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
Steve Lhomme
VLC
Commits
be07ad94
Commit
be07ad94
authored
May 20, 2007
by
littlejohn
Browse files
Use oldval and newval in libvlc_event_t
parent
580e968c
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/vlc/libvlc_structures.h
View file @
be07ad94
...
...
@@ -144,14 +144,30 @@ typedef struct libvlc_log_message_t
* - VOLUME_CHANGED
* - INPUT_POSITION_CHANGED
*/
typedef
enum
{
VOLUME_CHANGED
,
INPUT_POSITION_CHANGED
,
}
libvlc_event_type_t
;
typedef
enum
{
INT_EVENT
,
BOOLEAN_EVENT
,
FLOAT_EVENT
,
STRING_EVENT
,
ADDRESS_EVENT
,
OBJECT_EVENT
,
LIST_EVENT
,
TIME_EVENT
,
VAR_EVENT
,
}
libvlc_event_value_type_t
;
typedef
struct
{
libvlc_event_type_t
type
;
libvlc_event_value_type_t
value_type
;
vlc_value_t
old_value
;
vlc_value_t
new_value
;
char
reserved
[
8
];
/* For future use */
}
libvlc_event_t
;
...
...
src/control/callback.c
View file @
be07ad94
...
...
@@ -110,6 +110,18 @@ int libvlc_private_handle_callback( vlc_object_t *p_this, char const *psz_cmd,
struct
libvlc_callback_entry_t
*
entry
=
p_data
;
libvlc_event_t
event
;
event
.
type
=
entry
->
i_event_type
;
switch
(
event
.
type
)
{
case
VOLUME_CHANGED
:
event
.
value_type
=
BOOLEAN_EVENT
;
break
;
case
INPUT_POSITION_CHANGED
:
break
;
default:
break
;
}
event
.
old_value
=
oldval
;
event
.
new_value
=
newval
;
/* Call the client entry */
entry
->
f_callback
(
entry
->
p_instance
,
&
event
,
entry
->
p_user_data
);
...
...
Write
Preview
Supports
Markdown
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