[vlc-commits] commit: Moved vout_sys_t out of vlc_common.h. (Laurent Aimar )

git at videolan.org git at videolan.org
Sun Apr 18 15:03:18 CEST 2010


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Sun Apr 18 03:49:37 2010 +0200| [9754c0acfbc10bdbbfe2660cd058e2f6a0851426] | committer: Laurent Aimar 

Moved vout_sys_t out of vlc_common.h.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9754c0acfbc10bdbbfe2660cd058e2f6a0851426
---

 include/vlc_common.h             |    1 -
 src/video_output/vout_internal.h |    3 +++
 2 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/include/vlc_common.h b/include/vlc_common.h
index c138d89..911f62c 100644
--- a/include/vlc_common.h
+++ b/include/vlc_common.h
@@ -247,7 +247,6 @@ typedef struct aout_filter_t aout_filter_t;
 
 /* Video */
 typedef struct vout_thread_t vout_thread_t;
-typedef struct vout_sys_t vout_sys_t;
 
 typedef video_format_t video_frame_format_t;
 typedef struct picture_t picture_t;
diff --git a/src/video_output/vout_internal.h b/src/video_output/vout_internal.h
index 1aab60a..4182cd4 100644
--- a/src/video_output/vout_internal.h
+++ b/src/video_output/vout_internal.h
@@ -38,6 +38,9 @@
 #define VOUT_FPS_SAMPLES                20
 
 /* */
+typedef struct vout_sys_t vout_sys_t;
+
+/* */
 struct vout_thread_sys_t
 {
     /* module */



More information about the vlc-commits mailing list