aboutsummaryrefslogtreecommitdiffstats
path: root/postproc/postprocess.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-02-11 21:13:30 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-02-11 21:13:30 +0000
commit9858f77376c9648c2fb3c16d54e9f0d0c97fdd7a (patch)
treea4d6442cea73ad7de9891a02eba7aed0fd2850dc /postproc/postprocess.c
parent6524b641c02550b24ba1ee87ab9a528af66d288d (diff)
downloadffmpeg-9858f77376c9648c2fb3c16d54e9f0d0c97fdd7a.tar.gz
avoid #include "../
Originally committed as revision 9403 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/postprocess.c')
-rw-r--r--postproc/postprocess.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/postproc/postprocess.c b/postproc/postprocess.c
index b25c24baf2..e470fd0389 100644
--- a/postproc/postprocess.c
+++ b/postproc/postprocess.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2001-2002 Michael Niedermayer (michaelni@gmx.at)
+ Copyright (C) 2001-2003 Michael Niedermayer (michaelni@gmx.at)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -62,7 +62,7 @@ try to unroll inner for(x=0 ... loop to avoid these damn if(x ... checks
//Changelog: use the CVS log
-#include "../config.h"
+#include "config.h"
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
@@ -80,7 +80,7 @@ try to unroll inner for(x=0 ... loop to avoid these damn if(x ... checks
#endif
#include "postprocess.h"
#include "postprocess_internal.h"
-#include "../mangle.h"
+#include "mangle.h"
#define MIN(a,b) ((a) > (b) ? (b) : (a))
#define MAX(a,b) ((a) < (b) ? (b) : (a))