comparison libvo/aclib.c @ 1123:5b69dabe5823

Issues about P3 performance and SSE2 support.
author nickols_k
date Wed, 13 Jun 2001 16:12:14 +0000
parents f0fbf1a9bf31
children 99f6db3255aa
comparison
equal deleted inserted replaced
1122:fe9ef743be91 1123:5b69dabe5823
6 This file contains functions which improve and expand standard C-library 6 This file contains functions which improve and expand standard C-library
7 */ 7 */
8 8
9 #include <stddef.h> 9 #include <stddef.h>
10 10
11 /* Enable this code, if SSE version works (faster) for you! */ 11 #ifndef HAVE_SSE2
12 #if 1 12 /*
13 P3 processor has only one SSE decoder so can execute only 1 sse insn per
14 cpu clock, but it has 3 mmx decoders (include load/store unit)
15 and executes 3 mmx insns per cpu clock.
16 P4 processor has some chances, but after reading:
17 http://www.emulators.com/pentium4.htm
18 I have doubts. Anyway SSE2 version of this code can be written better.
19 */
13 #undef HAVE_SSE 20 #undef HAVE_SSE
14 #endif 21 #endif
15 22
16 23
17 /* 24 /*