mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avcodec/asvdec: Remove unnecessary emms_c()
This codec uses BswapDSP, BlockDSP and IDCTDSP. The former never used MMX, the latter does not use it for idct_put sincebfb28b5ce8
and BlockDSP does not use it since commitee551a21dd
. Therefore this emms_c() is can be removed. (It was actually always redundant, because its caller (decode_simple_internal()) calls emms_c() itself afterwards.) Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
af94ae7dc7
commit
ebcaa24274
@ -293,8 +293,6 @@ static int decode_frame(AVCodecContext *avctx, AVFrame *p,
|
||||
|
||||
*got_frame = 1;
|
||||
|
||||
emms_c();
|
||||
|
||||
return (get_bits_count(&a->gb) + 31) / 32 * 4;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user