]> git.sesse.net Git - vlc/commitdiff
Moved vout_IntfInit out of vlc_vout.h
authorLaurent Aimar <fenrir@videolan.org>
Sun, 18 Apr 2010 01:25:28 +0000 (03:25 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Sun, 18 Apr 2010 12:58:36 +0000 (14:58 +0200)
include/vlc_vout.h
src/video_output/vout_internal.h

index fa180b452a9bec09591c54d49f307c6c28ee66a9..e501d1e76af963e590c82958eb254e3ea912b248 100644 (file)
@@ -282,7 +282,6 @@ VLC_EXPORT( void,            vout_UnlinkPicture,  ( vout_thread_t *, picture_t *
  */
 VLC_EXPORT( spu_t *, vout_GetSpu, ( vout_thread_t * ) );
 
-void vout_IntfInit( vout_thread_t * );
 VLC_EXPORT( void, vout_EnableFilter, ( vout_thread_t *, const char *,bool , bool  ) );
 
 /**@}*/
index 820bfbb346c495e17322d9ba44fdc42b96c734af..466f2ccd6ff2650b4295e339d8b49692cb92d36f 100644 (file)
@@ -102,10 +102,11 @@ struct vout_thread_sys_t
     vlc_mouse_t     mouse;
 };
 
-/* DO NOT use vout_RenderPicture unless you are in src/video_ouput */
+/* DO NOT use vout_RenderPicture/vout_IntfInit unless you are in src/video_ouput */
 picture_t *vout_RenderPicture( vout_thread_t *, picture_t *,
                                subpicture_t *,
                                mtime_t render_date );
+void vout_IntfInit( vout_thread_t * );
 
 /* DO NOT use vout_UsePictureLocked unless you are in src/video_ouput
  *