summaryrefslogtreecommitdiffstats
path: root/gst/deinterlace2/tvtime/tomsmocomp.c
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-08-02 18:48:17 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2008-08-02 18:48:17 +0000
commit8a35b0101a703718e52a3b12c8a8777572b9f150 (patch)
treeaca372d79b11d7b8a54d810f63445be521844fb7 /gst/deinterlace2/tvtime/tomsmocomp.c
parentcedd09c9ff536bbac882e6e94e67b50b5e4cfb45 (diff)
downloadgst-plugins-bad-8a35b0101a703718e52a3b12c8a8777572b9f150.tar.gz
gst-plugins-bad-8a35b0101a703718e52a3b12c8a8777572b9f150.tar.bz2
gst-plugins-bad-8a35b0101a703718e52a3b12c8a8777572b9f150.zip
gst/deinterlace2/: Use oil_memcpy() instead of memcpy() as it's faster for the sizes that are usually used here.
Original commit message from CVS: * gst/deinterlace2/gstdeinterlace2.c: (gst_deinterlace_simple_method_interpolate_scanline), (gst_deinterlace_simple_method_copy_scanline), (gst_deinterlace_simple_method_deinterlace_frame): * gst/deinterlace2/tvtime/greedy.c: (deinterlace_frame_di_greedy): * gst/deinterlace2/tvtime/greedyh.c: (deinterlace_frame_di_greedyh): * gst/deinterlace2/tvtime/scalerbob.c: (deinterlace_scanline_scaler_bob): * gst/deinterlace2/tvtime/tomsmocomp.c: (Fieldcopy): * gst/deinterlace2/tvtime/weave.c: (deinterlace_scanline_weave), (copy_scanline): * gst/deinterlace2/tvtime/weavebff.c: (deinterlace_scanline_weave), (copy_scanline): * gst/deinterlace2/tvtime/weavetff.c: (deinterlace_scanline_weave), (copy_scanline): Use oil_memcpy() instead of memcpy() as it's faster for the sizes that are usually used here.
Diffstat (limited to 'gst/deinterlace2/tvtime/tomsmocomp.c')
-rw-r--r--gst/deinterlace2/tvtime/tomsmocomp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/deinterlace2/tvtime/tomsmocomp.c b/gst/deinterlace2/tvtime/tomsmocomp.c
index 3e2fb541..c27d4874 100644
--- a/gst/deinterlace2/tvtime/tomsmocomp.c
+++ b/gst/deinterlace2/tvtime/tomsmocomp.c
@@ -65,7 +65,7 @@ Fieldcopy (void *dest, const void *src, size_t count,
int i;
for (i = 0; i < rows; i++) {
- memcpy (pDest, pSrc, count);
+ oil_memcpy (pDest, pSrc, count);
pSrc += src_pitch;
pDest += dst_pitch;
}