diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-08-02 18:48:17 +0000 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-05-13 10:34:01 +0200 |
commit | 50e0bcebdbf64632c1bb8747b3428ac928049f10 (patch) | |
tree | 5755a6295922a4be2357d6ec1920dc388b86c931 /gst/deinterlace2/tvtime/scalerbob.c | |
parent | 71185cf5c33b031e23084a0343ddaa7a287e18d0 (diff) |
[MOVED FROM BAD 39/56] 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/scalerbob.c')
-rw-r--r-- | gst/deinterlace2/tvtime/scalerbob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/deinterlace2/tvtime/scalerbob.c b/gst/deinterlace2/tvtime/scalerbob.c index 5443b5fe..b2546e23 100644 --- a/gst/deinterlace2/tvtime/scalerbob.c +++ b/gst/deinterlace2/tvtime/scalerbob.c @@ -46,7 +46,7 @@ deinterlace_scanline_scaler_bob (GstDeinterlaceMethod * self, GstDeinterlace2 * parent, guint8 * out, GstDeinterlaceScanlineData * scanlines, gint width) { - memcpy (out, scanlines->t0, parent->line_length); + oil_memcpy (out, scanlines->t0, parent->line_length); } G_DEFINE_TYPE (GstDeinterlaceMethodScalerBob, gst_deinterlace_method_scaler_bob, |