mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01: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 sincebfb28b5ce8and 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
1 changed files with 0 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue