]> git.sesse.net Git - ffmpeg/commitdiff
Disable MMX
authorVladimir Voroshilov <voroshil@gmail.com>
Thu, 18 Jun 2009 01:16:03 +0000 (08:16 +0700)
committerMichael Niedermayer <michaelni@gmx.at>
Sat, 24 Sep 2011 19:11:01 +0000 (21:11 +0200)
libavcodec/g729dec.c

index 20276f2a7e39942d9879ba7ae89301ee983d1602..f68cafac99baa6e99930245e7fb07ae98857496d 100644 (file)
@@ -370,6 +370,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;
     dsputil_init(&ctx->dsp, avctx);
 
     return 0;