comparison libswscale/rgb2rgb_template.c @ 27666:9936b7fa9e63

Remove MPlayer-specific MP_WORDSIZE hack.
author diego
date Sat, 04 Oct 2008 09:52:07 +0000
parents fe28a794c04f
children 49d5420c5698
comparison
equal deleted inserted replaced
27665:b00d2e388fe0 27666:9936b7fa9e63
27 * under the LGPL license. 27 * under the LGPL license.
28 */ 28 */
29 29
30 #include <stddef.h> 30 #include <stddef.h>
31 #include <inttypes.h> /* for __WORDSIZE */ 31 #include <inttypes.h> /* for __WORDSIZE */
32
33 #ifndef __WORDSIZE
34 // #warning You have a misconfigured system and will probably lose performance!
35 #define __WORDSIZE MP_WORDSIZE
36 #endif
37 32
38 #undef PREFETCH 33 #undef PREFETCH
39 #undef MOVNTQ 34 #undef MOVNTQ
40 #undef EMMS 35 #undef EMMS
41 #undef SFENCE 36 #undef SFENCE