Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Voroshilov <voroshil@gmail.com>2009-06-18 05:16:03 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-09-24 23:11:01 +0400
commit5d5b3e527aa1702754c645cbdbbb26eb6b81c983 (patch)
treedc9e2cf5a5cb17c1b11dfceb4faff1b31265c433 /libavcodec/g729dec.c
parent8db3b85616186ef0bc06f10ffba34631dc5b2621 (diff)
Disable MMX
Diffstat (limited to 'libavcodec/g729dec.c')
-rw-r--r--libavcodec/g729dec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/g729dec.c b/libavcodec/g729dec.c
index 20276f2a7e..f68cafac99 100644
--- a/libavcodec/g729dec.c
+++ b/libavcodec/g729dec.c
@@ -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;