1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Merge commit 'aa8d89536d35af0a0c8d8bac2b452ffe7b82cae5'

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

Conflicts:
	libavcodec/bfin/vp3_bfin.c

Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-04-08 12:18:29 +02:00
commit 1090f69386

View File

@ -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
// if (!(flags & CODEC_FLAG_BITEXACT)) {
// c->idct_add = ff_bfin_vp3_idct_add;
// c->idct_put = ff_bfin_vp3_idct_put;
// }
}