diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-08 18:43:33 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-08 18:43:33 +0000 |
commit | 6a81329593fcb10ab912de283a5a8f3e360fb815 (patch) | |
tree | a5ecaf69ede4f01875807a5bf81ce4f6f29ccaaf /libavcodec/dct-test.c | |
parent | 2f8ba7fc74848de65a2edfc88984438ab1a1aa8d (diff) | |
download | ffmpeg-6a81329593fcb10ab912de283a5a8f3e360fb815.tar.gz |
Move dctref prototypes to a header file
Originally committed as revision 22331 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r-- | libavcodec/dct-test.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index 80285476de..bc0dc1fdac 100644 --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -40,16 +40,12 @@ #include "faandct.h" #include "faanidct.h" #include "x86/idct_xvid.h" +#include "dctref.h" #undef printf void *fast_memcpy(void *a, const void *b, size_t c){return memcpy(a,b,c);}; -/* reference fdct/idct */ -void ff_ref_fdct(DCTELEM *block); -void ff_ref_idct(DCTELEM *block); -void ff_ref_dct_init(void); - void ff_mmx_idct(DCTELEM *data); void ff_mmxext_idct(DCTELEM *data); |