]> git.sesse.net Git - vlc/blobdiff - include/vlc_stream.h
Removes trailing spaces. Removes tabs.
[vlc] / include / vlc_stream.h
index b89ec0c527aa1a0ee2925674ad535a7905ec807e..b2a866614934db3c2a20a5bd296406a4d0feb95d 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
  */
@@ -131,7 +129,7 @@ VLC_EXPORT( stream_t *,__stream_UrlNew, (vlc_object_t *p_this, const char *psz_u
    /* Maybe we should make VLC_OBJECT a simple cast noawadays... */
 struct stream_t
 {
-       VLC_COMMON_MEMBERS
+    VLC_COMMON_MEMBERS
 };
 # endif