Mercurial > mplayer.hg
annotate libaf/af_mp.h @ 26703:d62192604c6d
Factorize "int i".
author | michael |
---|---|
date | Sun, 11 May 2008 12:37:04 +0000 |
parents | 4129c8cfa742 |
children | 72d0b1444141 |
rev | line source |
---|---|
8167 | 1 /* Include file for mplayer specific defines and includes */ |
26029 | 2 #ifndef MPLAYER_AF_MP_H |
3 #define MPLAYER_AF_MP_H | |
8167 | 4 |
16982 | 5 #include "config.h" |
6 #include "mp_msg.h" | |
7 #include "cpudetect.h" | |
8167 | 8 |
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 | |
15 | |
16 #ifdef af_msg | |
17 #undef af_msg | |
18 #endif | |
19 #define af_msg(lev, args... ) \ | |
8957
36a5cdca733b
bunkus: Encapsulated arguments to #define in ( ... ) so that the #defines can be safely used like functions: mydef(flag ? val1 : val2)
mosu
parents:
8735
diff
changeset
|
20 mp_msg(MSGT_AFILTER,(((lev)<0)?((lev)+3):(((lev)==0)?MSGL_INFO:((lev)+5))), ##args ) |
8167 | 21 |
26029 | 22 #endif /* MPLAYER_AF_MP_H */ |