]> git.sesse.net Git - vlc/blobdiff - include/vlc_stream.h
playlist: Make playlist_archived_services_discovery_t internal.
[vlc] / include / vlc_stream.h
index b89ec0c527aa1a0ee2925674ad535a7905ec807e..bdb480d05b9e29bd1e9e5c774902ff8c9ea95e20 100644 (file)
@@ -65,7 +65,7 @@ enum stream_query_e
 };
 
 VLC_EXPORT( int, stream_Read, ( stream_t *s, void *p_read, int i_read ) );
-VLC_EXPORT( int, stream_Peek, ( stream_t *s, uint8_t **pp_peek, int i_peek ) );
+VLC_EXPORT( int, stream_Peek, ( stream_t *s, const uint8_t **pp_peek, int i_peek ) );
 VLC_EXPORT( int, stream_vaControl, ( stream_t *s, int i_query, va_list args ) );
 VLC_EXPORT( void, stream_Delete, ( stream_t *s ) );
 VLC_EXPORT( int, stream_Control, ( stream_t *s, int i_query, ... ) );
@@ -102,8 +102,6 @@ static inline int stream_Seek( stream_t *s, int64_t i_pos )
     return stream_Control( s, STREAM_SET_POSITION, i_pos );
 }
 
-VLC_EXPORT( char *, stream_ReadLine, ( stream_t * ) );
-
 /**
  * Create a special stream and a demuxer, this allows chaining demuxers
  */