diff options
author | Arpi <arpi@thot.banki.hu> | 2002-09-19 22:14:53 +0000 |
---|---|---|
committer | Arpi <arpi@thot.banki.hu> | 2002-09-19 22:14:53 +0000 |
commit | 3f09f52adf1ccdb93873f57570d8389316dc13ed (patch) | |
tree | c9ae3cb072c52045654db4fc53901dce25fd3b17 /libavcodec/dct-test.c | |
parent | b3a391e8b8498b3156849dafe164c859fbfbbcd2 (diff) | |
download | ffmpeg-3f09f52adf1ccdb93873f57570d8389316dc13ed.tar.gz |
fdct_mmx -> ff_fdct_mmx (renamed to avoid namespace conflict with xvid)
[found by Kim Minh Kaplan]
Originally committed as revision 960 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r-- | libavcodec/dct-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index a46223ed27..bff77d9cd0 100644 --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -307,7 +307,7 @@ int main(int argc, char **argv) dct_error("REF-DBL", 0, fdct, fdct, test); /* only to verify code ! */ dct_error("IJG-AAN-INT", 0, fdct_ifast, fdct, test); dct_error("IJG-LLM-INT", 0, ff_jpeg_fdct_islow, fdct, test); - dct_error("MMX", 0, fdct_mmx, fdct, test); + dct_error("MMX", 0, ff_fdct_mmx, fdct, test); } else { dct_error("REF-DBL", 1, idct, idct, test); dct_error("INT", 1, j_rev_dct, idct, test); |