Skip to content

Commit

Permalink
g729dec: disable all cpu acceleration, the code does not provide any …
Browse files Browse the repository at this point in the history
…alignment.

Signed-off-by: Michael Niedermayer <[email protected]>
  • Loading branch information
michaelni committed Sep 24, 2011
1 parent 91c5f81 commit 43e0568
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavcodec/g729dec.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 43e0568

Please sign in to comment.