]> git.sesse.net Git - vlc/blobdiff - include/vlc_access.h
*experimental* input pre-parsing support.
[vlc] / include / vlc_access.h
index 94e7f3bd0b432a9534f35feb809868e77cca1cb5..28495b4a08feeb28eda359a1eb1ebf06385f153b 100644 (file)
@@ -104,8 +104,8 @@ struct access_t
     access_sys_t *p_sys;
 };
 
-#define access2_New( a, b, c, d ) __access2_New(VLC_OBJECT(a), b, c, d )
-VLC_EXPORT( access_t *, __access2_New,  ( vlc_object_t *p_obj, char *psz_access, char *psz_demux, char *psz_path ) );
+#define access2_New( a, b, c, d, e ) __access2_New(VLC_OBJECT(a), b, c, d, e )
+VLC_EXPORT( access_t *, __access2_New,  ( vlc_object_t *p_obj, char *psz_access, char *psz_demux, char *psz_path, vlc_bool_t b_quick ) );
 VLC_EXPORT( void,      access2_Delete, ( access_t * ) );
 
 static inline int access2_vaControl( access_t *p_access, int i_query, va_list args )