summaryrefslogtreecommitdiff
path: root/libavcodec/dct-test.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-03-27 16:42:23 +0200
committerDiego Biurrun <diego@biurrun.de>2012-03-28 09:38:31 +0200
commit856c8e0a049dc7069b7504d3aaa48549c75852de (patch)
treeeca57e084ce4855c88d9130c77093e117be0708b /libavcodec/dct-test.c
parenta839dbb94ed9244a1678339dbb05355d8257a126 (diff)
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.c8
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 },