From f53d4bcb3e76e76f4d2a0fd8f5e00f651a807673 Mon Sep 17 00:00:00 2001
From: zuxy <zuxy@b3059339-0415-0410-9bf9-f77b7e298cf2>
Date: Fri, 12 Oct 2007 03:17:43 +0000
Subject: [PATCH] Reorder #includes to get rid of the FIXME

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24766 b3059339-0415-0410-9bf9-f77b7e298cf2
---
 libmpcodecs/vf_geq.c | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

diff --git a/libmpcodecs/vf_geq.c b/libmpcodecs/vf_geq.c
index 330457d242..86e31e5cc8 100644
--- a/libmpcodecs/vf_geq.c
+++ b/libmpcodecs/vf_geq.c
@@ -27,6 +27,10 @@
 #include "mp_msg.h"
 #include "cpudetect.h"
 
+#include "img_format.h"
+#include "mp_image.h"
+#include "vf.h"
+
 // Needed to bring in lrintf.
 #define HAVE_AV_CONFIG_H
 
@@ -35,16 +39,6 @@
 #include "libavcodec/eval.h"
 #include "libavutil/common.h"
 
-/* FIXME: common.h defines fprintf away when HAVE_AV_CONFIG
- * is defined, but mp_image.h needs fprintf.
- */
-#undef fprintf
-
-#include "img_format.h"
-#include "mp_image.h"
-#include "vf.h"
-
-
 struct vf_priv_s {
     AVEvalExpr * e[3];
     int framenum;