summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_down3dright.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-11-09 01:31:49 +0100
committerwm4 <wm4@nowhere>2012-11-11 17:56:42 +0100
commiteb6688724ceb0e222ccc9f1de6640bfabdd67a43 (patch)
tree99dcbb85b09157415d0aa0fc9d2deb5c6bd90b36 /libmpcodecs/vf_down3dright.c
parent34649dbd1da2ce07a6e952bec10f52dfae5a257d (diff)
downloadmpv-eb6688724ceb0e222ccc9f1de6640bfabdd67a43.tar.bz2
mpv-eb6688724ceb0e222ccc9f1de6640bfabdd67a43.tar.xz
Replace fast_memcpy() uses
fast_memcpy, defined in fastmemcpy.h, used to be mplayer's "optimized" memcpy. It has been removed from this fork, and fast_memcpy has been reduced to an alias for memcpy. Replace all remaining uses of the fast_memcpy macro alias.
Diffstat (limited to 'libmpcodecs/vf_down3dright.c')
-rw-r--r--libmpcodecs/vf_down3dright.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpcodecs/vf_down3dright.c b/libmpcodecs/vf_down3dright.c
index a263661592..561bc898d0 100644
--- a/libmpcodecs/vf_down3dright.c
+++ b/libmpcodecs/vf_down3dright.c
@@ -85,7 +85,7 @@ static void toright(unsigned char *dst[3], unsigned char *src[3],
*t++ = *sR++;
}
if (p->scaleh == 1) {
- fast_memcpy(to + dst, to, dst);
+ memcpy(to + dst, to, dst);
to += dst;
}
to += dst;