diff options
author | Matthias Dahl <matt2000@users.sourceforge.net> | 2001-10-30 19:54:17 +0000 |
---|---|---|
committer | Matthias Dahl <matt2000@users.sourceforge.net> | 2001-10-30 19:54:17 +0000 |
commit | 5f1d79bcee5c7eb3746c6faabe8ef197e50be09b (patch) | |
tree | 6f722155f0f9e69877e5d60effc0a86acaf04088 /src | |
parent | 4fcaad3cc22fcbefa85987502ece8b48628c7110 (diff) | |
download | xine-lib-5f1d79bcee5c7eb3746c6faabe8ef197e50be09b.tar.gz xine-lib-5f1d79bcee5c7eb3746c6faabe8ef197e50be09b.tar.bz2 |
fixing memcpy probing for some systems
CVS patchset: 917
CVS date: 2001/10/30 19:54:17
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-utils/memcpy.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xine-utils/memcpy.c b/src/xine-utils/memcpy.c index 511dd38ef..bf5a9556a 100644 --- a/src/xine-utils/memcpy.c +++ b/src/xine-utils/memcpy.c @@ -432,8 +432,10 @@ static int config_flags = -1; continue; t = rdtsc(); - for(j=0;j<100;j++) + for(j=0;j<50;j++) { + memcpy_method[i].function(buf2,buf1,BUFSIZE); memcpy_method[i].function(buf1,buf2,BUFSIZE); + } t = rdtsc() - t; memcpy_method[i].time = t; |