diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2003-10-25 00:32:54 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2003-10-25 00:32:54 +0000 |
commit | 48b1f80012102847fb961c8d3dfb846b5665681c (patch) | |
tree | f38f606cb0aa9f296051cd0487daed4f63e99231 /libavcodec/dsputil.c | |
parent | b292469633752def3d03341edd956ffd542b777e (diff) | |
download | ffmpeg-48b1f80012102847fb961c8d3dfb846b5665681c.tar.gz |
* adding integer/floating point AAN implementations for DCT 2-4-8
Originally committed as revision 2430 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 90a652cbd9..02184ebb87 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -2884,11 +2884,11 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx) #ifdef CONFIG_ENCODERS if(avctx->dct_algo==FF_DCT_FASTINT) { c->fdct = fdct_ifast; - c->fdct248 = ff_fdct248_islow; // FIXME: need an optimized version + c->fdct248 = fdct_ifast248; } else if(avctx->dct_algo==FF_DCT_FAAN) { c->fdct = ff_faandct; - c->fdct248 = ff_fdct248_islow; // FIXME: need an optimized version + c->fdct248 = ff_faandct248; } else { c->fdct = ff_jpeg_fdct_islow; //slow/accurate/default |