Mercurial > libavcodec.hg
comparison dct-test.c @ 11408:4b6b3ffbaee3 libavcodec
Move dctref prototypes to a header file
| author | mru |
|---|---|
| date | Mon, 08 Mar 2010 18:43:33 +0000 |
| parents | 34a65026fa06 |
| children | 9b1db41afb30 |
comparison
equal
deleted
inserted
replaced
| 11407:fb94047e23d2 | 11408:4b6b3ffbaee3 |
|---|---|
| 38 #include "simple_idct.h" | 38 #include "simple_idct.h" |
| 39 #include "aandcttab.h" | 39 #include "aandcttab.h" |
| 40 #include "faandct.h" | 40 #include "faandct.h" |
| 41 #include "faanidct.h" | 41 #include "faanidct.h" |
| 42 #include "x86/idct_xvid.h" | 42 #include "x86/idct_xvid.h" |
| 43 #include "dctref.h" | |
| 43 | 44 |
| 44 #undef printf | 45 #undef printf |
| 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 /* reference fdct/idct */ | |
| 49 void ff_ref_fdct(DCTELEM *block); | |
| 50 void ff_ref_idct(DCTELEM *block); | |
| 51 void ff_ref_dct_init(void); | |
| 52 | 48 |
| 53 void ff_mmx_idct(DCTELEM *data); | 49 void ff_mmx_idct(DCTELEM *data); |
| 54 void ff_mmxext_idct(DCTELEM *data); | 50 void ff_mmxext_idct(DCTELEM *data); |
| 55 | 51 |
| 56 void odivx_idct_c(short *block); | 52 void odivx_idct_c(short *block); |
