Mercurial > libavcodec.hg
comparison dct-test.c @ 5379:e9f8a337c5ce libavcodec
Fix the compilation of dct-test, fft-test and motion-test which are using
random().
| author | takis |
|---|---|
| date | Thu, 19 Jul 2007 08:46:28 +0000 |
| parents | 4dbe6578f811 |
| children | f4859c13426b |
comparison
equal
deleted
inserted
replaced
| 5378:d7fde453d208 | 5379:e9f8a337c5ce |
|---|---|
| 40 #ifndef MAX | 40 #ifndef MAX |
| 41 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) | 41 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) |
| 42 #endif | 42 #endif |
| 43 | 43 |
| 44 #undef printf | 44 #undef printf |
| 45 #undef random | |
| 45 | 46 |
| 46 void *fast_memcpy(void *a, const void *b, size_t c){return memcpy(a,b,c);}; | 47 void *fast_memcpy(void *a, const void *b, size_t c){return memcpy(a,b,c);}; |
| 47 | 48 |
| 48 /* reference fdct/idct */ | 49 /* reference fdct/idct */ |
| 49 extern void fdct(DCTELEM *block); | 50 extern void fdct(DCTELEM *block); |
