]> git.sesse.net Git - vlc/blobdiff - include/vlc_input.h
DASH: remove unnecessary includes and other trivial fixes
[vlc] / include / vlc_input.h
index e30bbbb26dba45852b16f6b9b3a65f9cb90f355a..ba33d8f469cfdb1dfac8c425fdc433eab6481e27 100644 (file)
@@ -83,7 +83,6 @@ 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 )
@@ -91,7 +90,6 @@ 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 = -1;
-    point->i_level = 0;
     point->psz_name = NULL;
     return point;
 }
@@ -643,15 +641,6 @@ VLC_API decoder_t * input_DecoderCreate( vlc_object_t *, es_format_t *, input_re
 VLC_API void input_DecoderDelete( decoder_t * );
 VLC_API void input_DecoderDecode( decoder_t *, block_t *, bool b_do_pace );
 
-/**
- * This function allows to split a MRL into access, demux and path part.
- *
- *  You should not write into access and demux string as they may not point into
- * the provided buffer.
- *  The buffer provided by psz_dup will be modified.
- */
-VLC_API void input_SplitMRL( const char **ppsz_access, const char **ppsz_demux, char **ppsz_path, char *psz_dup );
-
 /**
  * This function creates a sane filename path.
  */