1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-02-04 06:08:26 +02:00

avcodec/ffv1(dec|enc): Remove unnecessary emms_c()

These codecs do not use MMX at all.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2022-08-22 12:33:50 +02:00
parent 73f024aa58
commit 4a699858d5
2 changed files with 0 additions and 3 deletions

View File

@ -360,8 +360,6 @@ static int decode_slice(AVCodecContext *c, void *arg)
}
}
emms_c();
ff_thread_report_progress(&f->picture, si, 0);
return 0;

View File

@ -1076,7 +1076,6 @@ retry:
} else {
ret = encode_rgb_frame(fs, planes, width, height, p->linesize);
}
emms_c();
if (ret < 0) {
av_assert0(fs->slice_coding_mode == 0);