Commit 6e70a6cc authored by mhoffman's avatar mhoffman

special handling for vp3 idct, use the c reference

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10105 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent bd69a6d4
......@@ -279,10 +279,12 @@ void dsputil_init_bfin( DSPContext* c, AVCodecContext *avctx )
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;
c->idct_put = bfin_idct_put;
c->fdct = ff_bfin_fdct;
if (avctx->idct_algo!=FF_IDCT_VP3) {
c->idct = ff_bfin_idct;
c->idct_add = bfin_idct_add;
c->idct_put = bfin_idct_put;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment