Mercurial > mplayer.hg
annotate libaf/af_mp.h @ 19170:7e689bb31c07
Add simple edit list support to mov demuxer, it supports delay of audio and video tracks at the beginning of the file. E.g. video starts at 0.0s audio at 4.0s. It uses mplayers a/v-delay to achieve sync so please use with -framedrop for fastest sync. More Details in my mail to dev-eng from 2006-07-22.
author | atmos4 |
---|---|
date | Sun, 23 Jul 2006 22:34:02 +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__ */ |