Mercurial > libavcodec.hg
diff common.h @ 2140:cd1a71898311 libavcodec
TIMER dummies for non-x86
| author | michael |
|---|---|
| date | Mon, 26 Jul 2004 15:52:55 +0000 |
| parents | aba68a44e2ee |
| children | 3d4a1f8e6a27 |
line wrap: on
line diff
--- a/common.h Mon Jul 26 13:31:48 2004 +0000 +++ b/common.h Mon Jul 26 15:52:55 2004 +0000 @@ -1281,6 +1281,9 @@ av_log(NULL, AV_LOG_DEBUG, "%Ld dezicycles in %s, %d runs, %d skips\n", tsum*10/tcount, id, tcount, tskip_count);\ }\ } +#else +#define START_TIMER +#define STOP_TIMER(id) {} #endif #define CLAMP_TO_8BIT(d) ((d > 0xff) ? 0xff : (d < 0) ? 0 : d)
