]> git.sesse.net Git - vlc/commitdiff
Moved stream_Access* to stream.h
authorLaurent Aimar <fenrir@videolan.org>
Mon, 13 Oct 2008 18:27:36 +0000 (20:27 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Mon, 13 Oct 2008 18:27:36 +0000 (20:27 +0200)
src/input/input_internal.h
src/input/stream.h

index 878d8f032e0f7c9742b71b2f77fd795f78a5ffba..993ce97d00b525bf5412af4c8c24220318f9053b 100644 (file)
@@ -322,12 +322,6 @@ void input_ControlVarTitle( input_thread_t *, int i_title );
 
 void input_ConfigVarInit ( input_thread_t * );
 
-/* stream.c */
-stream_t *stream_AccessNew( access_t *p_access, bool );
-void stream_AccessDelete( stream_t *s );
-void stream_AccessReset( stream_t *s );
-void stream_AccessUpdate( stream_t *s );
-
 /* Subtitles */
 char **subtitles_Detect( input_thread_t *, char* path, const char *fname );
 int subtitles_Filter( const char *);
index 1b8a51076df865d9bae1de338d78b28aeda7bbde..1cc712a5809c6f38215df8db9bcb65ece1488a62 100644 (file)
@@ -61,5 +61,11 @@ static inline stream_t *vlc_stream_create( vlc_object_t *obj )
                                           VLC_OBJECT_GENERIC, "stream" );
 }
 
+/* */
+stream_t *stream_AccessNew( access_t *p_access, bool );
+void stream_AccessDelete( stream_t *s );
+void stream_AccessReset( stream_t *s );
+void stream_AccessUpdate( stream_t *s );
+
 #endif