diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-03-27 16:42:23 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-03-28 09:38:31 +0200 |
commit | 856c8e0a049dc7069b7504d3aaa48549c75852de (patch) | |
tree | eca57e084ce4855c88d9130c77093e117be0708b /libavcodec/dct-test.c | |
parent | a839dbb94ed9244a1678339dbb05355d8257a126 (diff) | |
download | ffmpeg-856c8e0a049dc7069b7504d3aaa48549c75852de.tar.gz |
faandct: Remove FAAN_POSTSCALE define and related code.
It is not a user-accessible option and unlikely to ever be changed.
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r-- | libavcodec/dct-test.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index 1787ef668a..bc5f2c5aaa 100644 --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -74,17 +74,11 @@ struct algo { int nonspec; }; -#ifndef FAAN_POSTSCALE -#define FAAN_SCALE SCALE_PERM -#else -#define FAAN_SCALE NO_PERM -#endif - static int cpu_flags; static const struct algo fdct_tab[] = { { "REF-DBL", ff_ref_fdct, NO_PERM }, - { "FAAN", ff_faandct, FAAN_SCALE }, + { "FAAN", ff_faandct, NO_PERM }, { "IJG-AAN-INT", ff_fdct_ifast, SCALE_PERM }, { "IJG-LLM-INT", ff_jpeg_fdct_islow_8, NO_PERM }, |