From a8c1408ff4d5cd298ea7f3fbf3a1ce5e81729090 Mon Sep 17 00:00:00 2001 From: Robin KAY Date: Wed, 24 Sep 2003 06:46:43 +0000 Subject: Use inttypes.h or stdint.h as appropriate. CVS patchset: 5411 CVS date: 2003/09/24 06:46:43 --- src/post/deinterlace/plugins/double.c | 12 +++++++++--- src/post/deinterlace/plugins/greedy.c | 15 ++++++++------- src/post/deinterlace/plugins/greedy2frame.c | 15 ++++++++------- src/post/deinterlace/plugins/linear.c | 12 +++++++++--- src/post/deinterlace/plugins/linearblend.c | 15 ++++++++------- src/post/deinterlace/plugins/vfir.c | 15 ++++++++------- src/post/deinterlace/plugins/weave.c | 12 +++++++++--- 7 files changed, 59 insertions(+), 37 deletions(-) (limited to 'src/post/deinterlace/plugins') diff --git a/src/post/deinterlace/plugins/double.c b/src/post/deinterlace/plugins/double.c index 6566df293..b2d9ba8ca 100644 --- a/src/post/deinterlace/plugins/double.c +++ b/src/post/deinterlace/plugins/double.c @@ -18,12 +18,18 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include -#if defined (__SVR4) && defined (__sun) -# include + +#if HAVE_INTTYPES_H +#include #else -# include +#include #endif + #include "speedy.h" #include "deinterlace.h" #include "plugins.h" diff --git a/src/post/deinterlace/plugins/greedy.c b/src/post/deinterlace/plugins/greedy.c index e12c0c1e0..68792734e 100644 --- a/src/post/deinterlace/plugins/greedy.c +++ b/src/post/deinterlace/plugins/greedy.c @@ -19,17 +19,18 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include -#if defined (__SVR4) && defined (__sun) -# include -#else -# include -#endif - #ifdef HAVE_CONFIG_H # include "config.h" #endif +#include + +#if HAVE_INTTYPES_H +#include +#else +#include +#endif + #include "attributes.h" #include "xineutils.h" #include "deinterlace.h" diff --git a/src/post/deinterlace/plugins/greedy2frame.c b/src/post/deinterlace/plugins/greedy2frame.c index 065bd2ac8..5a54bf53e 100644 --- a/src/post/deinterlace/plugins/greedy2frame.c +++ b/src/post/deinterlace/plugins/greedy2frame.c @@ -19,17 +19,18 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include -#if defined (__SVR4) && defined (__sun) -# include -#else -# include -#endif - #ifdef HAVE_CONFIG_H # include "config.h" #endif +#include + +#if HAVE_INTTYPES_H +#include +#else +#include +#endif + #include "attributes.h" #include "xineutils.h" #include "deinterlace.h" 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 -#if defined (__SVR4) && defined (__sun) -# include + +#if HAVE_INTTYPES_H +#include #else -# include +#include #endif + #include "speedy.h" #include "deinterlace.h" #include "plugins.h" diff --git a/src/post/deinterlace/plugins/linearblend.c b/src/post/deinterlace/plugins/linearblend.c index 8caaac5e7..ef7ab52bc 100644 --- a/src/post/deinterlace/plugins/linearblend.c +++ b/src/post/deinterlace/plugins/linearblend.c @@ -21,17 +21,18 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include -#if defined (__SVR4) && defined (__sun) -# include -#else -# include -#endif - #ifdef HAVE_CONFIG_H # include "config.h" #endif +#include + +#if HAVE_INTTYPES_H +#include +#else +#include +#endif + #include "attributes.h" #include "xineutils.h" #include "speedtools.h" diff --git a/src/post/deinterlace/plugins/vfir.c b/src/post/deinterlace/plugins/vfir.c index ddf2ae4c8..9a2d89ee8 100644 --- a/src/post/deinterlace/plugins/vfir.c +++ b/src/post/deinterlace/plugins/vfir.c @@ -21,17 +21,18 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include -#if defined (__SVR4) && defined (__sun) -# include -#else -# include -#endif - #ifdef HAVE_CONFIG_H # include "config.h" #endif +#include + +#if HAVE_INTTYPES_H +#include +#else +#include +#endif + #include "attributes.h" #include "xineutils.h" #include "speedy.h" diff --git a/src/post/deinterlace/plugins/weave.c b/src/post/deinterlace/plugins/weave.c index 7107a07a6..109cafe2d 100644 --- a/src/post/deinterlace/plugins/weave.c +++ b/src/post/deinterlace/plugins/weave.c @@ -18,12 +18,18 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include -#if defined (__SVR4) && defined (__sun) -# include + +#if HAVE_INTTYPES_H +#include #else -# include +#include #endif + #include "speedy.h" #include "deinterlace.h" #include "plugins.h" -- cgit v1.2.3