]> git.sesse.net Git - vlc/commitdiff
Moved spu_Attach definition to the core.
authorLaurent Aimar <fenrir@videolan.org>
Fri, 21 May 2010 18:31:27 +0000 (20:31 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Fri, 21 May 2010 19:27:18 +0000 (21:27 +0200)
include/vlc_spu.h
src/video_output/vout_internal.h

index 5e454bc01e478287e4dde2b14ed7219bc8603c5a..f4fded00473ac4f187c2e3c5f8871a0be20cd29e 100644 (file)
@@ -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.
index afdeec5d294fb0477ac3cd42639fb7f30926e6de..c5e6d965f6bce8fd32e72b71adc701164f2bed53 100644 (file)
@@ -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