prores: use C idct for fate as the SSE code is not matching the SSE* code down at the bits
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -51,12 +51,12 @@ static void prores_idct_put_c(uint16_t *out, int linesize, DCTELEM *block, const
|
||||
put_pixels(out, linesize >> 1, block);
|
||||
}
|
||||
|
||||
void ff_proresdsp_init(ProresDSPContext *dsp)
|
||||
void ff_proresdsp_init(ProresDSPContext *dsp, AVCodecContext *avctx)
|
||||
{
|
||||
dsp->idct_put = prores_idct_put_c;
|
||||
dsp->idct_permutation_type = FF_NO_IDCT_PERM;
|
||||
|
||||
if (HAVE_MMX) ff_proresdsp_x86_init(dsp);
|
||||
if (HAVE_MMX) ff_proresdsp_x86_init(dsp, avctx);
|
||||
|
||||
ff_init_scantable_permutation(dsp->idct_permutation,
|
||||
dsp->idct_permutation_type);
|
||||
|
||||
Reference in New Issue
Block a user