diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-12-04 08:18:13 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-12-04 08:18:13 +0000 |
commit | 1e68cefe546d8b8eda4248113f2635dbbf1df071 (patch) | |
tree | febcd6bc915d5c8b93d138711b396fd25d88f4aa | |
parent | ccc4b918329c8c73bed7faf5429697eae83e3ba9 (diff) | |
download | ffmpeg-1e68cefe546d8b8eda4248113f2635dbbf1df071.tar.gz |
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
-rw-r--r-- | libavcodec/apedec.c | 1 |
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; |