From 37a27cc6447a51b5780adf0917ab7b22a4456a5b Mon Sep 17 00:00:00 2001 From: Laurent Aimar Date: Fri, 21 May 2010 20:31:27 +0200 Subject: [PATCH] Moved spu_Attach definition to the core. --- include/vlc_spu.h | 1 - src/video_output/vout_internal.h | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2