Commit 1090f693 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'aa8d8953'

* commit 'aa8d8953':
  bfin: Don't use the vp3 idct functions if bitexact behaviour is expected

Conflicts:
	libavcodec/bfin/vp3_bfin.c
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 018cc6f0 aa8d8953
......@@ -55,6 +55,8 @@ av_cold void ff_vp3dsp_init_bfin(VP3DSPContext *c, int flags)
{
// FIXME: these functions are disabled because they expect unpermutated
// IDCT coefficients as input, but the coefficients are transposed
//c->idct_add = ff_bfin_vp3_idct_add;
//c->idct_put = ff_bfin_vp3_idct_put;
// if (!(flags & CODEC_FLAG_BITEXACT)) {
// c->idct_add = ff_bfin_vp3_idct_add;
// c->idct_put = ff_bfin_vp3_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