summaryrefslogtreecommitdiff
path: root/src/post/deinterlace/plugins/linear.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/post/deinterlace/plugins/linear.c')
-rw-r--r--src/post/deinterlace/plugins/linear.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/post/deinterlace/plugins/linear.c b/src/post/deinterlace/plugins/linear.c
index 8d2e23f29..f5cc92e1b 100644
--- a/src/post/deinterlace/plugins/linear.c
+++ b/src/post/deinterlace/plugins/linear.c
@@ -16,12 +16,18 @@
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
#include <stdio.h>
-#if defined (__SVR4) && defined (__sun)
-# include <sys/int_types.h>
+
+#if HAVE_INTTYPES_H
+#include <inttypes.h>
#else
-# include <stdint.h>
+#include <stdint.h>
#endif
+
#include "speedy.h"
#include "deinterlace.h"
#include "plugins.h"