Mercurial > mplayer.hg
annotate libaf/af_mp.h @ 20970:5e7183c4d01c
r20972: defined MSGTR_OSDVideo
r20969: document new key binding for switching video streams in MPEG-TS
author | voroshil |
---|---|
date | Fri, 17 Nov 2006 14:57:12 +0000 |
parents | a9da2db9eb16 |
children | d88f5f82826e |
rev | line source |
---|---|
8167 | 1 /* Include file for mplayer specific defines and includes */ |
2 #ifndef __af_mp_h__ | |
3 #define __af_mp_h__ | |
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 |
22 #endif /* __af_mp_h__ */ |