On Tue, 10 Jul 2012, Diego Biurrun wrote:
--- libavcodec/dct-test.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index 4647642..2abcbba 100644 --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -78,9 +78,11 @@ static int cpu_flags; static const struct algo fdct_tab[] = { { "REF-DBL", ff_ref_fdct, NO_PERM }, +#if CONFIG_ENCODERS { "FAAN", ff_faandct, NO_PERM }, { "IJG-AAN-INT", ff_fdct_ifast, SCALE_PERM }, { "IJG-LLM-INT", ff_jpeg_fdct_islow_8, NO_PERM }, +#endif #if HAVE_MMX { "MMX", ff_fdct_mmx, NO_PERM, AV_CPU_FLAG_MMX }, -- 1.7.1
Looks straightforward enough even though I don't know the different dcts well enough to know whether it is right or not.
// Martin _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
