From 1274ea8dbaec44355bde07f6bb31fec0c4e6fd2d Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 28 Aug 2014 19:32:45 -0700 Subject: Split off floating point AAN (I)DCT into separate components --- libavcodec/idctdsp.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/idctdsp.c') diff --git a/libavcodec/idctdsp.c b/libavcodec/idctdsp.c index 2a979bc581..a9b8727468 100644 --- a/libavcodec/idctdsp.c +++ b/libavcodec/idctdsp.c @@ -158,11 +158,13 @@ av_cold void ff_idctdsp_init(IDCTDSPContext *c, AVCodecContext *avctx) c->idct_add = ff_jref_idct_add; c->idct = ff_j_rev_dct; c->perm_type = FF_IDCT_PERM_LIBMPEG2; +#if CONFIG_FAANIDCT } else if (avctx->idct_algo == FF_IDCT_FAAN) { c->idct_put = ff_faanidct_put; c->idct_add = ff_faanidct_add; c->idct = ff_faanidct; c->perm_type = FF_IDCT_PERM_NONE; +#endif /* CONFIG_FAANIDCT */ } else { // accurate/default c->idct_put = ff_simple_idct_put_8; c->idct_add = ff_simple_idct_add_8; -- cgit v1.2.3