Commit 43e05685 authored by Michael Niedermayer's avatar Michael Niedermayer

g729dec: disable all cpu acceleration, the code does not provide any alignment.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 91c5f81b
......@@ -371,7 +371,7 @@ static av_cold int decoder_init(AVCodecContext * avctx)
for(i=0; i<4; i++)
ctx->quant_energy[i] = -14336; // -14 in (5.10)
avctx->dsp_mask = FF_MM_MMX | FF_MM_SSE2;
avctx->dsp_mask= ~AV_CPU_FLAG_FORCE;
dsputil_init(&ctx->dsp, avctx);
return 0;
......
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