Mercurial > mplayer.hg
view libvo/fastmemcpy.h @ 896:d46de26aef48
there is another format that get detected as vplayers.
Instead of tightening detection support that another format.
author | eyck |
---|---|
date | Mon, 28 May 2001 09:54:21 +0000 |
parents | dc6cdb87229a |
children | 30e6a115a088 |
line wrap: on
line source
#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