Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Hoffman <mmhoffm@gmail.com>2007-06-12 23:06:39 +0400
committerMarc Hoffman <mmhoffm@gmail.com>2007-06-12 23:06:39 +0400
commitea6ad30ce9f1a5dbdb18748f4c3c24745f6513fe (patch)
treef1ec31579f6696ca37cef4ea6830fcc713b87074 /libavcodec/bfin
parent90b5b51eab008ddb24701bb95aa4c017e62bb111 (diff)
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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/bfin/dsputil_bfin.c b/libavcodec/bfin/dsputil_bfin.c
index 312c06c3a8..9736d569f0 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;