aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/x86/proresdsp_init.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-01-12 02:28:16 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-01-14 15:59:00 +0100
commitcb613657ee464a770a44e67540eef04f6a25f0cc (patch)
tree0806a3603ba5329559006fc96490a322bc06813f /libavcodec/x86/proresdsp_init.c
parent4b0cad6596bcbce5833251c9ba2a60617186a39c (diff)
downloadffmpeg-cb613657ee464a770a44e67540eef04f6a25f0cc.tar.gz
avcodec/x86/proresdsp_init: x86 prores IDCT is bitexact again
reenable it for for bitexact mode Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/x86/proresdsp_init.c')
-rw-r--r--libavcodec/x86/proresdsp_init.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/x86/proresdsp_init.c b/libavcodec/x86/proresdsp_init.c
index 0273d6141a..fa4a2d48e3 100644
--- a/libavcodec/x86/proresdsp_init.c
+++ b/libavcodec/x86/proresdsp_init.c
@@ -37,9 +37,6 @@ av_cold void ff_proresdsp_x86_init(ProresDSPContext *dsp, AVCodecContext *avctx)
#if ARCH_X86_64
int cpu_flags = av_get_cpu_flags();
- if(avctx->flags & CODEC_FLAG_BITEXACT)
- return;
-
if (EXTERNAL_SSE2(cpu_flags)) {
dsp->idct_permutation_type = FF_TRANSPOSE_IDCT_PERM;
dsp->idct_put = ff_prores_idct_put_10_sse2;