Commit 447d0c8f authored by Laurent Aimar's avatar Laurent Aimar

Moved vout_IntfInit out of vlc_vout.h

parent 2447adc6
...@@ -282,7 +282,6 @@ VLC_EXPORT( void, vout_UnlinkPicture, ( vout_thread_t *, picture_t * ...@@ -282,7 +282,6 @@ VLC_EXPORT( void, vout_UnlinkPicture, ( vout_thread_t *, picture_t *
*/ */
VLC_EXPORT( spu_t *, vout_GetSpu, ( vout_thread_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 ) ); VLC_EXPORT( void, vout_EnableFilter, ( vout_thread_t *, const char *,bool , bool ) );
/**@}*/ /**@}*/
......
...@@ -102,10 +102,11 @@ struct vout_thread_sys_t ...@@ -102,10 +102,11 @@ struct vout_thread_sys_t
vlc_mouse_t mouse; 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 *, picture_t *vout_RenderPicture( vout_thread_t *, picture_t *,
subpicture_t *, subpicture_t *,
mtime_t render_date ); mtime_t render_date );
void vout_IntfInit( vout_thread_t * );
/* DO NOT use vout_UsePictureLocked unless you are in src/video_ouput /* DO NOT use vout_UsePictureLocked unless you are in src/video_ouput
* *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment