summaryrefslogtreecommitdiff
path: root/avmedia/source/vlc/wrapper/Types.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'avmedia/source/vlc/wrapper/Types.hxx')
-rw-r--r--avmedia/source/vlc/wrapper/Types.hxx11
1 files changed, 9 insertions, 2 deletions
diff --git a/avmedia/source/vlc/wrapper/Types.hxx b/avmedia/source/vlc/wrapper/Types.hxx
index 624ef13df413..06a0674c06da 100644
--- a/avmedia/source/vlc/wrapper/Types.hxx
+++ b/avmedia/source/vlc/wrapper/Types.hxx
@@ -23,7 +23,7 @@ typedef void ( *libvlc_callback_t ) ( const struct libvlc_event_t *, void * );
#define libvlc_MediaPlayerEndReached 0x109
// event structure pieces we use
-typedef struct libvlc_event_t
+struct libvlc_event_t
{
int type; // event type
void *p_obj; // object emitting that event
@@ -35,7 +35,14 @@ typedef struct libvlc_event_t
const char *dummy2;
} padding;
} u;
-} libvlc_event_t;
+};
+
+struct libvlc_track_description_t
+{
+ int i_id;
+ char *psz_name;
+ libvlc_track_description_t *p_next;
+};
}