summaryrefslogtreecommitdiffstats
path: root/libvo/vo_directx.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/vo_directx.c')
-rw-r--r--libvo/vo_directx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_directx.c b/libvo/vo_directx.c
index 3521f9dfeb..cb36a2ba2b 100644
--- a/libvo/vo_directx.c
+++ b/libvo/vo_directx.c
@@ -1179,7 +1179,7 @@ static void flip_page(void)
static int draw_frame(uint8_t *src[])
{
- memcpy( image, *src, dstride * image_height );
+ fast_memcpy( image, *src, dstride * image_height );
return 0;
}
@@ -1262,7 +1262,7 @@ static uint32_t put_image(mp_image_t *mpi){
}
else //packed
{
- memcpy( image, mpi->planes[0], image_height * dstride);
+ fast_memcpy( image, mpi->planes[0], image_height * dstride);
}
return VO_TRUE;
}