diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-08-28 19:32:45 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-09-07 13:36:26 -0700 |
commit | 1274ea8dbaec44355bde07f6bb31fec0c4e6fd2d (patch) | |
tree | c517d38cce7cf1e78e232c114ebe63f0429cd873 /libavcodec/idctdsp.c | |
parent | fcf597625c7a991ca389f3a9b8ff4f5e383301c0 (diff) | |
download | ffmpeg-1274ea8dbaec44355bde07f6bb31fec0c4e6fd2d.tar.gz |
Split off floating point AAN (I)DCT into separate components
Diffstat (limited to 'libavcodec/idctdsp.c')
-rw-r--r-- | libavcodec/idctdsp.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; |