changeset 32445:7ec524214684

Use proper include instead of extern declarations in the .c file.
author reimar
date Sat, 23 Oct 2010 18:11:54 +0000
parents 99efb38a4f4e
children 27b1bdc5edf2
files libmpcodecs/vf_stereo3d.c
diffstat 1 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/vf_stereo3d.c	Sat Oct 23 10:16:34 2010 +0000
+++ b/libmpcodecs/vf_stereo3d.c	Sat Oct 23 18:11:54 2010 +0000
@@ -29,6 +29,7 @@
 
 #include "img_format.h"
 #include "mp_image.h"
+#include "vd.h"
 #include "vf.h"
 #include "m_struct.h"
 
@@ -113,9 +114,6 @@
   {ANAGLYPH_RC_DUBOIS}
 };
 
-extern int opt_screen_size_x;
-extern int opt_screen_size_y;
-
 //==functions==//
 static inline uint8_t ana_convert(int coeff[6], uint8_t left[3], uint8_t right[3])
 {