summaryrefslogtreecommitdiffstats
path: root/libvo/fastmemcpy.h
blob: bd42d8562b720b75262c2d792325767952eb4e1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __MPLAYER_MEMCPY
#define __MPLAYER_MEMCPY 1

#ifdef USE_FASTMEMCPY

#if defined( HAVE_MMX2 ) || defined( HAVE_3DNOW ) || defined( HAVE_MMX )
#include <stddef.h>

extern void * fast_memcpy(void * to, const void * from, size_t len);
#define memcpy(a,b,c) fast_memcpy(a,b,c)

#endif

#endif

#endif