UltraSPARC T1 (Niagara) support, patch by Derek E. Lewis /dlewis (gobble) solnetworks...
[mplayer/glamo.git] / libaf / af_mp.h
blobf2ddd873fc9f6b21cc503c4a15c8b9eefa8b3d15
1 /* Include file for mplayer specific defines and includes */
2 #ifndef __af_mp_h__
3 #define __af_mp_h__
5 #include "config.h"
6 #include "mp_msg.h"
7 #include "cpudetect.h"
9 /* Set the initialization type from mplayers cpudetect */
10 #ifdef AF_INIT_TYPE
11 #undef AF_INIT_TYPE
12 #define AF_INIT_TYPE \
13 ((gCpuCaps.has3DNow || gCpuCaps.hasSSE)?AF_INIT_FAST:AF_INIT_SLOW)
14 #endif
16 #ifdef af_msg
17 #undef af_msg
18 #endif
19 #define af_msg(lev, args... ) \
20 mp_msg(MSGT_AFILTER,(((lev)<0)?((lev)+3):(((lev)==0)?MSGL_INFO:((lev)+5))), ##args )
22 #endif /* __af_mp_h__ */