diff options
-rw-r--r-- | src/post/deinterlace/plugins/greedy.c | 1 | ||||
-rw-r--r-- | src/post/deinterlace/plugins/linearblend.c | 1 | ||||
-rw-r--r-- | src/post/deinterlace/plugins/vfir.c | 1 | ||||
-rw-r--r-- | src/post/deinterlace/speedy.c | 1 | ||||
-rw-r--r-- | src/video_dec/libmpeg2/cpu_state.c | 1 | ||||
-rw-r--r-- | src/video_dec/libmpeg2/idct_mmx.c | 1 | ||||
-rw-r--r-- | src/video_dec/libmpeg2/motion_comp_mmx.c | 1 | ||||
-rw-r--r-- | src/video_out/yuv2rgb_mmx.c | 1 | ||||
-rw-r--r-- | src/xine-utils/color.c | 1 | ||||
-rw-r--r-- | src/xine-utils/xine_mmx.h | 0 |
10 files changed, 9 insertions, 0 deletions
diff --git a/src/post/deinterlace/plugins/greedy.c b/src/post/deinterlace/plugins/greedy.c index fc8013a6d..1742f7515 100644 --- a/src/post/deinterlace/plugins/greedy.c +++ b/src/post/deinterlace/plugins/greedy.c @@ -34,6 +34,7 @@ #include <xine/attributes.h> #include <xine/xineutils.h> +#include "xine_mmx.h" #include "deinterlace.h" #include "speedtools.h" #include "speedy.h" diff --git a/src/post/deinterlace/plugins/linearblend.c b/src/post/deinterlace/plugins/linearblend.c index 4664a4969..2c60f112f 100644 --- a/src/post/deinterlace/plugins/linearblend.c +++ b/src/post/deinterlace/plugins/linearblend.c @@ -33,6 +33,7 @@ #include <xine/attributes.h> #include <xine/xineutils.h> +#include "xine_mmx.h" #include "speedtools.h" #include "speedy.h" #include "deinterlace.h" diff --git a/src/post/deinterlace/plugins/vfir.c b/src/post/deinterlace/plugins/vfir.c index d66c92952..89ea1d0e5 100644 --- a/src/post/deinterlace/plugins/vfir.c +++ b/src/post/deinterlace/plugins/vfir.c @@ -36,6 +36,7 @@ #include <xine/attributes.h> #include <xine/xineutils.h> +#include "xine_mmx.h" #include "speedy.h" #include "deinterlace.h" #include "plugins.h" diff --git a/src/post/deinterlace/speedy.c b/src/post/deinterlace/speedy.c index d93b56c7b..5dc564b26 100644 --- a/src/post/deinterlace/speedy.c +++ b/src/post/deinterlace/speedy.c @@ -64,6 +64,7 @@ #include <xine/attributes.h> #include <xine/xineutils.h> +#include "xine_mmx.h" #include "speedtools.h" #include "speedy.h" diff --git a/src/video_dec/libmpeg2/cpu_state.c b/src/video_dec/libmpeg2/cpu_state.c index 12963644c..d1507eec1 100644 --- a/src/video_dec/libmpeg2/cpu_state.c +++ b/src/video_dec/libmpeg2/cpu_state.c @@ -28,6 +28,7 @@ #include "mpeg2_internal.h" #include <xine/xineutils.h> +#include "xine_mmx.h" void (* mpeg2_cpu_state_save) (cpu_state_t * state) = NULL; void (* mpeg2_cpu_state_restore) (cpu_state_t * state) = NULL; diff --git a/src/video_dec/libmpeg2/idct_mmx.c b/src/video_dec/libmpeg2/idct_mmx.c index 6bb4bfbf0..92ae365b4 100644 --- a/src/video_dec/libmpeg2/idct_mmx.c +++ b/src/video_dec/libmpeg2/idct_mmx.c @@ -29,6 +29,7 @@ #include "mpeg2_internal.h" #include <xine/xineutils.h> +#include "xine_mmx.h" #define ROW_SHIFT 11 #define COL_SHIFT 6 diff --git a/src/video_dec/libmpeg2/motion_comp_mmx.c b/src/video_dec/libmpeg2/motion_comp_mmx.c index f9b1f085d..9c5ab455d 100644 --- a/src/video_dec/libmpeg2/motion_comp_mmx.c +++ b/src/video_dec/libmpeg2/motion_comp_mmx.c @@ -29,6 +29,7 @@ #include "mpeg2_internal.h" #include <xine/xineutils.h> +#include "xine_mmx.h" #define CPU_MMXEXT 0 #define CPU_3DNOW 1 diff --git a/src/video_out/yuv2rgb_mmx.c b/src/video_out/yuv2rgb_mmx.c index 08b288f22..4d127e6a7 100644 --- a/src/video_out/yuv2rgb_mmx.c +++ b/src/video_out/yuv2rgb_mmx.c @@ -39,6 +39,7 @@ #include "yuv2rgb.h" #include <xine/xineutils.h> +#include "xine_mmx.h" #define CPU_MMXEXT 0 #define CPU_MMX 1 diff --git a/src/xine-utils/color.c b/src/xine-utils/color.c index fac998ad3..69bba01c9 100644 --- a/src/xine-utils/color.c +++ b/src/xine-utils/color.c @@ -63,6 +63,7 @@ */ #include <xine/xine_internal.h> +#include "xine_mmx.h" /* * In search of the perfect colorspace conversion formulae... diff --git a/src/xine-utils/xine_mmx.h b/src/xine-utils/xine_mmx.h new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/src/xine-utils/xine_mmx.h |