summaryrefslogtreecommitdiff
path: root/src/video_out/yuv2rgb_mmx.c
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-11-17 14:26:36 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-11-17 14:26:36 +0000
commitbacac99192b65faed1a0047a8be5b95abf15873d (patch)
treec1ca0949f9cb222c8ef6305d8150ca4d9e85b4a7 /src/video_out/yuv2rgb_mmx.c
parent75a1024fb27dbff9c4bfc948392910af94797683 (diff)
downloadxine-lib-bacac99192b65faed1a0047a8be5b95abf15873d.tar.gz
xine-lib-bacac99192b65faed1a0047a8be5b95abf15873d.tar.bz2
Add 'xine_' prefix to all of xine-utils functions (what about cpu
acceleration?). Merge xine-utils header files to a new one "xineutils.h". Update xine-lib C/headers to reflect those changes. dxr3 headers are no more installed ine $includdir, but $includdir/xine. CVS patchset: 1054 CVS date: 2001/11/17 14:26:36
Diffstat (limited to 'src/video_out/yuv2rgb_mmx.c')
-rw-r--r--src/video_out/yuv2rgb_mmx.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/video_out/yuv2rgb_mmx.c b/src/video_out/yuv2rgb_mmx.c
index d085fc635..8c94e5cb5 100644
--- a/src/video_out/yuv2rgb_mmx.c
+++ b/src/video_out/yuv2rgb_mmx.c
@@ -31,10 +31,8 @@
#include <string.h>
#include <inttypes.h>
-#include "attributes.h"
-#include "cpu_accel.h"
#include "yuv2rgb.h"
-#include "memcpy.h"
+#include "xineutils.h"
#define CPU_MMXEXT 0
#define CPU_MMX 1
@@ -453,7 +451,7 @@ static inline void yuv420_rgb16 (yuv2rgb_t *this,
while (--dst_height > 0 && dy < 32768) {
- fast_memcpy (image, image-rgb_stride, this->dest_width*2);
+ xine_fast_memcpy (image, image-rgb_stride, this->dest_width*2);
dy += this->step_dy;
image += rgb_stride;
@@ -561,7 +559,7 @@ static inline void yuv420_rgb15 (yuv2rgb_t *this,
while (--dst_height > 0 && dy < 32768) {
- fast_memcpy (image, image-rgb_stride, this->dest_width*2);
+ xine_fast_memcpy (image, image-rgb_stride, this->dest_width*2);
dy += this->step_dy;
image += rgb_stride;
@@ -668,7 +666,7 @@ static inline void yuv420_rgb24 (yuv2rgb_t *this,
while (--dst_height > 0 && dy < 32768) {
- fast_memcpy (image, image-rgb_stride, this->dest_width*3);
+ xine_fast_memcpy (image, image-rgb_stride, this->dest_width*3);
dy += this->step_dy;
image += rgb_stride;
@@ -776,7 +774,7 @@ static inline void yuv420_argb32 (yuv2rgb_t *this,
while (--dst_height > 0 && dy < 32768) {
- fast_memcpy (image, image-rgb_stride, this->dest_width*4);
+ xine_fast_memcpy (image, image-rgb_stride, this->dest_width*4);
dy += this->step_dy;
image += rgb_stride;
@@ -884,7 +882,7 @@ static inline void yuv420_abgr32 (yuv2rgb_t *this,
while (--dst_height > 0 && dy < 32768) {
- fast_memcpy (image, image-rgb_stride, this->dest_width*4);
+ xine_fast_memcpy (image, image-rgb_stride, this->dest_width*4);
dy += this->step_dy;
image += rgb_stride;