summaryrefslogtreecommitdiffstats
path: root/libvo/vo_fbdev2.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/vo_fbdev2.c')
-rw-r--r--libvo/vo_fbdev2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_fbdev2.c b/libvo/vo_fbdev2.c
index 053c193526..f303832e59 100644
--- a/libvo/vo_fbdev2.c
+++ b/libvo/vo_fbdev2.c
@@ -354,7 +354,7 @@ static int draw_slice(uint8_t *src[], int stride[], int w, int h, int x, int y)
int i;
for (i = 0; i < h; i++) {
- memcpy(dest, in, w * fb_pixel_size);
+ fast_memcpy(dest, in, w * fb_pixel_size);
dest += next;
in += stride[0];
}
@@ -371,7 +371,7 @@ static void flip_page(void)
int i, out_offset = 0, in_offset = 0;
for (i = 0; i < in_height; i++) {
- memcpy(center + out_offset, next_frame + in_offset,
+ fast_memcpy(center + out_offset, next_frame + in_offset,
in_width * fb_pixel_size);
out_offset += fb_line_len;
in_offset += in_width * fb_pixel_size;