diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-06-04 12:58:40 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-06-04 12:58:40 +0000 |
commit | 03c94ede9365c22855c4f63941a13d0a4574f7a4 (patch) | |
tree | 1621e197b4d6e7d37c2acabb5b748648407b5bc3 /libavcodec/dct-test.c | |
parent | c3aea5c424052ea4972922b68b1bc35de276fc30 (diff) | |
download | ffmpeg-03c94ede9365c22855c4f63941a13d0a4574f7a4.tar.gz |
avoid name clash with libjpeg - added missing externs
Originally committed as revision 660 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r-- | libavcodec/dct-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index 2a26b475f4..561a7875e1 100644 --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -90,7 +90,7 @@ void dct_error(const char *name, int is_idct, fdct_func(block); emms(); /* for ff_mmx_idct */ - if (fdct_func == jpeg_fdct_ifast) { + if (fdct_func == fdct_ifast) { for(i=0; i<64; i++) { scale = (1 << (AANSCALE_BITS + 11)) / aanscales[i]; block[i] = (block[i] * scale) >> AANSCALE_BITS; @@ -173,7 +173,7 @@ int main(int argc, char **argv) if (!test_idct) { dct_error("REF", 0, fdct, fdct); /* only to verify code ! */ - dct_error("AAN", 0, jpeg_fdct_ifast, fdct); + dct_error("AAN", 0, fdct_ifast, fdct); dct_error("MMX", 0, fdct_mmx, fdct); } else { dct_error("REF", 1, idct, idct); |