diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-22 12:33:50 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-24 03:42:38 +0200 |
commit | 4a699858d56261b87afad98f03ca3f9de4b196be (patch) | |
tree | dec59f51e3dffc7a3f090bc8b0e6d0227528332f /libavcodec/ffv1dec.c | |
parent | 73f024aa581ddbc49e6db9d39d944ce64b9d8a1c (diff) | |
download | ffmpeg-4a699858d56261b87afad98f03ca3f9de4b196be.tar.gz |
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>
Diffstat (limited to 'libavcodec/ffv1dec.c')
-rw-r--r-- | libavcodec/ffv1dec.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/ffv1dec.c b/libavcodec/ffv1dec.c index 4fe1738dea..fd549c7913 100644 --- a/libavcodec/ffv1dec.c +++ b/libavcodec/ffv1dec.c @@ -360,8 +360,6 @@ static int decode_slice(AVCodecContext *c, void *arg) } } - emms_c(); - ff_thread_report_progress(&f->picture, si, 0); return 0; |