diff options
Diffstat (limited to 'src/post/deinterlace/pulldown.h')
-rw-r--r-- | src/post/deinterlace/pulldown.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/post/deinterlace/pulldown.h b/src/post/deinterlace/pulldown.h index 197ec84be..bcf17ced9 100644 --- a/src/post/deinterlace/pulldown.h +++ b/src/post/deinterlace/pulldown.h @@ -19,7 +19,11 @@ #ifndef PULLDOWN_H_INCLUDED #define PULLDOWN_H_INCLUDED -#include <stdint.h> +#if defined (__SVR4) && defined (__sun) +# include <sys/int_types.h> +#else +# include <stdint.h> +#endif #include "speedy.h" #ifdef __cplusplus |