diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-06-23 23:45:20 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-23 23:45:20 +0200 |
commit | 49bf712a892901bd6a2e8815d085487180894d8c (patch) | |
tree | 8c7106e8fdce98bd0e6fd0bd21c51cc6b5034e33 /libavcodec | |
parent | 476bd3c7e41f4e9cc96a4d4f7a9e4f8a8237a48c (diff) | |
download | ffmpeg-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.c | 1 |
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) |