aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-06-23 23:45:20 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-06-23 23:45:20 +0200
commit49bf712a892901bd6a2e8815d085487180894d8c (patch)
tree8c7106e8fdce98bd0e6fd0bd21c51cc6b5034e33 /libavcodec
parent476bd3c7e41f4e9cc96a4d4f7a9e4f8a8237a48c (diff)
downloadffmpeg-49bf712a892901bd6a2e8815d085487180894d8c.tar.gz
libavcodec/wmalosslessdec: add missing emms
prevent failure with mmx2 should fix fate failure on freebsd mmx2 client Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/wmalosslessdec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c
index ca62dc1cf9..8e2ac5ffc6 100644
--- a/libavcodec/wmalosslessdec.c
+++ b/libavcodec/wmalosslessdec.c
@@ -798,6 +798,7 @@ static void revert_cdlms(WmallDecodeCtx *s, int ch,
s->channel_residues[ch][icoef] = input;
}
}
+ emms_c();
}
static void revert_inter_ch_decorr(WmallDecodeCtx *s, int tile_size)