From: Laurent Aimar Date: Fri, 21 May 2010 18:31:27 +0000 (+0200) Subject: Moved spu_Attach definition to the core. X-Git-Tag: 1.2.0-pre1~6566 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=37a27cc6447a51b5780adf0917ab7b22a4456a5b;p=vlc Moved spu_Attach definition to the core. --- diff --git a/include/vlc_spu.h b/include/vlc_spu.h index 5e454bc01e..f4fded0047 100644 --- a/include/vlc_spu.h +++ b/include/vlc_spu.h @@ -61,7 +61,6 @@ struct spu_t VLC_EXPORT( spu_t *, spu_Create, ( vlc_object_t * ) ); #define spu_Create(a) spu_Create(VLC_OBJECT(a)) VLC_EXPORT( void, spu_Destroy, ( spu_t * ) ); -void spu_Attach( spu_t *, vlc_object_t *, bool ); /** * This function sends a subpicture to the spu_t core. diff --git a/src/video_output/vout_internal.h b/src/video_output/vout_internal.h index afdeec5d29..c5e6d965f6 100644 --- a/src/video_output/vout_internal.h +++ b/src/video_output/vout_internal.h @@ -153,6 +153,7 @@ void vout_DisplayWrapper(vout_thread_t *, picture_t *); /* */ int spu_ProcessMouse(spu_t *, const vlc_mouse_t *, const video_format_t *); +void spu_Attach( spu_t *, vlc_object_t *, bool ); #endif