summaryrefslogtreecommitdiff
path: root/libavcodec/apedec.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2009-12-04 08:18:13 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2009-12-04 08:18:13 +0000
commit1e68cefe546d8b8eda4248113f2635dbbf1df071 (patch)
treefebcd6bc915d5c8b93d138711b396fd25d88f4aa /libavcodec/apedec.c
parentccc4b918329c8c73bed7faf5429697eae83e3ba9 (diff)
100l trocadero: call emms_c() after doing decoding with SIMD in APE decoder
Originally committed as revision 20727 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/apedec.c')
-rw-r--r--libavcodec/apedec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/apedec.c b/libavcodec/apedec.c
index 3c7b1ea8de..3a0d172c9e 100644
--- a/libavcodec/apedec.c
+++ b/libavcodec/apedec.c
@@ -865,6 +865,7 @@ static int ape_decode_frame(AVCodecContext * avctx,
ape_unpack_mono(s, blockstodecode);
else
ape_unpack_stereo(s, blockstodecode);
+ emms_c();
if(s->error || s->ptr > s->data_end){
s->samples=0;