diff options
author | Marc Hoffman <mmhoffm@gmail.com> | 2007-06-12 19:06:39 +0000 |
---|---|---|
committer | Marc Hoffman <mmhoffm@gmail.com> | 2007-06-12 19:06:39 +0000 |
commit | ea6ad30ce9f1a5dbdb18748f4c3c24745f6513fe (patch) | |
tree | f1ec31579f6696ca37cef4ea6830fcc713b87074 /libavcodec/bfin | |
parent | 90b5b51eab008ddb24701bb95aa4c017e62bb111 (diff) | |
download | ffmpeg-streaming-ea6ad30ce9f1a5dbdb18748f4c3c24745f6513fe.zip ffmpeg-streaming-ea6ad30ce9f1a5dbdb18748f4c3c24745f6513fe.tar.gz |
Blackfin IDCT has no special permutation it uses normal order
Originally committed as revision 9292 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/bfin')
-rw-r--r-- | libavcodec/bfin/dsputil_bfin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/bfin/dsputil_bfin.c b/libavcodec/bfin/dsputil_bfin.c index 312c06c..9736d56 100644 --- a/libavcodec/bfin/dsputil_bfin.c +++ b/libavcodec/bfin/dsputil_bfin.c @@ -285,6 +285,7 @@ void dsputil_init_bfin( DSPContext* c, AVCodecContext *avctx ) c->put_no_rnd_pixels_tab[0][2] = bfin_put_pixels16_y2_nornd; c->put_no_rnd_pixels_tab[0][3] = ff_bfin_put_pixels16_xy2_nornd; + c->idct_permutation_type = FF_NO_IDCT_PERM; c->fdct = ff_bfin_fdct; c->idct = ff_bfin_idct; c->idct_add = bfin_idct_add; |