mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avcodec/dct-test: correct output bias of prores idct
This way the output values make sense Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
0065d2d520
commit
2981f6a79f
@ -113,6 +113,10 @@ static void ff_prores_idct_put_10_sse2_wrap(int16_t *dst){
|
|||||||
tmp[i]= dst[i];
|
tmp[i]= dst[i];
|
||||||
}
|
}
|
||||||
ff_prores_idct_put_10_sse2(dst, 16, tmp, qmat);
|
ff_prores_idct_put_10_sse2(dst, 16, tmp, qmat);
|
||||||
|
|
||||||
|
for(i=0; i<64; i++) {
|
||||||
|
dst[i] -= 512;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user