]> git.sesse.net Git - vlc/blobdiff - include/vlc_input.h
* modules/demux/mkv.cpp: fix for chapters seeking + support for more chapter elements...
[vlc] / include / vlc_input.h
index cae13922dc8cb79ba331ff5e90e0584f0ed31343..1ceab6efb529a4f2d9725678b8f9b89ff4975f04 100644 (file)
@@ -169,6 +169,7 @@ struct seekpoint_t
     int64_t i_byte_offset;
     int64_t i_time_offset;
     char    *psz_name;
+    int     i_level;
 };
 
 static inline seekpoint_t *vlc_seekpoint_New( void )
@@ -176,6 +177,7 @@ static inline seekpoint_t *vlc_seekpoint_New( void )
     seekpoint_t *point = (seekpoint_t*)malloc( sizeof( seekpoint_t ) );
     point->i_byte_offset =
     point->i_time_offset = 0;
+    point->i_level = 0;
     point->psz_name = NULL;
     return point;
 }