summaryrefslogtreecommitdiffstats
path: root/libvo/vo_zr2.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/vo_zr2.c')
-rw-r--r--libvo/vo_zr2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libvo/vo_zr2.c b/libvo/vo_zr2.c
index 760294d87f..613496d48c 100644
--- a/libvo/vo_zr2.c
+++ b/libvo/vo_zr2.c
@@ -151,7 +151,7 @@ static uint32_t draw_image(mp_image_t *mpi) {
}
/* copy the jpeg image to the buffer which we acquired */
- memcpy(p->buf + p->zrq.size*p->frame, mpi->planes[0], size);
+ fast_memcpy(p->buf + p->zrq.size*p->frame, mpi->planes[0], size);
return VO_TRUE;
}
@@ -394,7 +394,7 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width,
* We make configuration changes to a temporary params structure,
* compare it with the old params structure and only apply the new
* config if it is different from the old one. */
- memcpy(&zptmp, &p->zp, sizeof(zptmp));
+ fast_memcpy(&zptmp, &p->zp, sizeof(zptmp));
/* translate the configuration to zoran understandable format */
zptmp.decimation = 0;
@@ -423,7 +423,7 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width,
if (memcmp(&zptmp, &p->zp, sizeof(zptmp))) {
/* config differs, we must update */
- memcpy(&p->zp, &zptmp, sizeof(zptmp));
+ fast_memcpy(&p->zp, &zptmp, sizeof(zptmp));
stop_playing(p);
if (ioctl(p->vdes, MJPIOC_S_PARAMS, &p->zp) < 0) {
ERROR("error writing display params to card\n");