diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2003-10-08 20:47:20 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2003-10-08 20:47:20 +0000 |
commit | 6c796ef24616730ff8647a4d8be66e0a387a488c (patch) | |
tree | c8331b7087227e7c043a14103c0c1992c577a1cf /src | |
parent | 2ff7da073479e7c08203526d15b6e710914bd0a4 (diff) | |
download | xine-lib-6c796ef24616730ff8647a4d8be66e0a387a488c.tar.gz xine-lib-6c796ef24616730ff8647a4d8be66e0a387a488c.tar.bz2 |
Fix includes.
CVS patchset: 5475
CVS date: 2003/10/08 20:47:20
Diffstat (limited to 'src')
-rw-r--r-- | src/post/deinterlace/plugins/scalerbob.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/post/deinterlace/plugins/scalerbob.c b/src/post/deinterlace/plugins/scalerbob.c index 54074fccf..f393a53ab 100644 --- a/src/post/deinterlace/plugins/scalerbob.c +++ b/src/post/deinterlace/plugins/scalerbob.c @@ -18,7 +18,19 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <stdio.h> + +#if HAVE_INTTYPES_H +#include <inttypes.h> +#else +#include <stdint.h> +#endif + #include "speedy.h" #include "deinterlace.h" |