diff libmpcodecs/vf_filmdint.c @ 30653:3d23e24c5c60

Declare externally used variables from vd.c as extern in vd.h. This saves declaring them as extern all over the place.
author diego
date Mon, 22 Feb 2010 09:51:44 +0000
parents a972c1a4a012
children 7af3e6f901fd
line wrap: on
line diff
--- a/libmpcodecs/vf_filmdint.c	Sun Feb 21 23:36:36 2010 +0000
+++ b/libmpcodecs/vf_filmdint.c	Mon Feb 22 09:51:44 2010 +0000
@@ -27,6 +27,7 @@
 
 #include "img_format.h"
 #include "mp_image.h"
+#include "vd.h"
 #include "vf.h"
 #include "cmmx.h"
 
@@ -97,9 +98,6 @@
 static const struct frame_stats ppzs = {PPZ,PPZ,PPZ,PPZ,PPZ,PPZ,PPZ,0,0,9999};
 static const struct frame_stats pprs = {PPR,PPR,PPR,PPR,PPR,PPR,PPR,0,0,9999};
 
-extern int opt_screen_size_x;
-extern int opt_screen_size_y;
-
 #ifndef MIN
 #define        MIN(a,b) (((a)<(b))?(a):(b))
 #endif