summaryrefslogtreecommitdiff
path: root/src/video_out/yuv2rgb.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2001-10-21 00:18:22 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2001-10-21 00:18:22 +0000
commitf6a5ce6f826295e677b55aebb9571db5fd17fe22 (patch)
treee2bfd362c831cf3b8441bdb9431e7d9725a5dfbc /src/video_out/yuv2rgb.c
parent9813284b8994e87505472857f5dacd903d4e234f (diff)
downloadxine-lib-f6a5ce6f826295e677b55aebb9571db5fd17fe22.tar.gz
xine-lib-f6a5ce6f826295e677b55aebb9571db5fd17fe22.tar.bz2
more memcpy stuff
CVS patchset: 846 CVS date: 2001/10/21 00:18:22
Diffstat (limited to 'src/video_out/yuv2rgb.c')
-rw-r--r--src/video_out/yuv2rgb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_out/yuv2rgb.c b/src/video_out/yuv2rgb.c
index 573989200..b7b28adfb 100644
--- a/src/video_out/yuv2rgb.c
+++ b/src/video_out/yuv2rgb.c
@@ -22,7 +22,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
- * $Id: yuv2rgb.c,v 1.24 2001/10/09 22:20:11 miguelfreitas Exp $
+ * $Id: yuv2rgb.c,v 1.25 2001/10/21 00:18:22 miguelfreitas Exp $
*/
#include "config.h"
@@ -37,7 +37,7 @@
#include "cpu_accel.h"
#include "monitor.h"
#include "utils.h"
-
+#include "memcpy.h"
static int prof_scale_line = -1;
@@ -1131,7 +1131,7 @@ static void scale_line_1_1 (uint8_t *source, uint8_t *dest,
int width, int step) {
profiler_start_count(prof_scale_line);
- memcpy(dest, source, width);
+ fast_memcpy(dest, source, width);
profiler_stop_count(prof_scale_line);
}