summaryrefslogtreecommitdiff
path: root/src/libvfill/xine_decoder.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/libvfill/xine_decoder.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/libvfill/xine_decoder.c')
-rw-r--r--src/libvfill/xine_decoder.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libvfill/xine_decoder.c b/src/libvfill/xine_decoder.c
index 328f1feb7..bc92b74bc 100644
--- a/src/libvfill/xine_decoder.c
+++ b/src/libvfill/xine_decoder.c
@@ -31,7 +31,7 @@
#include "video_out.h"
#include "buffer.h"
#include "xine_internal.h"
-#include "memcpy.h"
+#include "xineutils.h"
/* The videofill decoder's job in life is to copy the last frame displayed into
* the current display queue, incrementing the PTS value accordingly. It probably
@@ -79,9 +79,9 @@ static void videofill_decode_data (video_decoder_t *this_gen, buf_element_t *buf
image_size = last_img->width * last_img->height;
- fast_memcpy(img->base[0], last_img->base[0], image_size);
- fast_memcpy(img->base[1], last_img->base[1], image_size >> 2);
- fast_memcpy(img->base[2], last_img->base[2], image_size >> 2);
+ xine_fast_memcpy(img->base[0], last_img->base[0], image_size);
+ xine_fast_memcpy(img->base[1], last_img->base[1], image_size >> 2);
+ xine_fast_memcpy(img->base[2], last_img->base[2], image_size >> 2);
img->PTS = 0;
img->bad_frame = 0;