diff options
-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" |