From 43e05685f225f5e14262ed64f9569e70997e38d3 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 24 Sep 2011 20:56:01 +0200 Subject: [PATCH] g729dec: disable all cpu acceleration, the code does not provide any alignment. Signed-off-by: Michael Niedermayer --- libavcodec/g729dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/g729dec.c b/libavcodec/g729dec.c index 155bf14a56..62be55e5ac 100644 --- a/libavcodec/g729dec.c +++ b/libavcodec/g729dec.c @@ -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;