Mercurial > mplayer.hg
annotate libvo/fastmemcpy.h @ 722:b570318ac2f4
audio_reset nosound fix
author | arpi_esp |
---|---|
date | Tue, 08 May 2001 01:58:59 +0000 |
parents | f0fbf1a9bf31 |
children | dc6cdb87229a |
rev | line source |
---|---|
477 | 1 #ifndef __MPLAYER_MEMCPY |
644
88eb1a3f7bfb
Changed code, should be faster on Athlon/K6 but slower on PIII with SSE, more portable.
atmosfear
parents:
581
diff
changeset
|
2 #define __MPLAYER_MEMCPY 1 |
88eb1a3f7bfb
Changed code, should be faster on Athlon/K6 but slower on PIII with SSE, more portable.
atmosfear
parents:
581
diff
changeset
|
3 |
698
f0fbf1a9bf31
Moving fast_memcpy to separate file (Size optimization)
nickols_k
parents:
685
diff
changeset
|
4 #if defined( HAVE_MMX2 ) || defined( HAVE_3DNOW ) || defined( HAVE_MMX ) |
644
88eb1a3f7bfb
Changed code, should be faster on Athlon/K6 but slower on PIII with SSE, more portable.
atmosfear
parents:
581
diff
changeset
|
5 #include <stddef.h> |
477 | 6 |
698
f0fbf1a9bf31
Moving fast_memcpy to separate file (Size optimization)
nickols_k
parents:
685
diff
changeset
|
7 extern void * fast_memcpy(void * to, const void * from, size_t len); |
376 | 8 #define memcpy(a,b,c) fast_memcpy(a,b,c) |
513 | 9 |
358 | 10 #endif |
11 | |
478 | 12 #endif |