[vlc-commits] commit: Moved spu_Attach definition to the core. (Laurent Aimar )
git at videolan.org
git at videolan.org
Fri May 21 21:29:11 CEST 2010
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Fri May 21 20:31:27 2010 +0200| [37a27cc6447a51b5780adf0917ab7b22a4456a5b] | committer: Laurent Aimar
Moved spu_Attach definition to the core.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=37a27cc6447a51b5780adf0917ab7b22a4456a5b
---
include/vlc_spu.h | 1 -
src/video_output/vout_internal.h | 1 +
2 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/vlc_spu.h b/include/vlc_spu.h
index 5e454bc..f4fded0 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 afdeec5..c5e6d96 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
More information about the vlc-commits
mailing list