diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-08-31 21:34:36 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-04 11:04:45 +0200 |
commit | 13c988556b3247375dca08dc56298f4bbfab3bfd (patch) | |
tree | 8b23b21e4ec7dc65fdd93662a5c03e588da3fd96 /libavcodec | |
parent | 30e8ab8bc4782dc8ddfe2bb1b80e9b64bf221c98 (diff) | |
download | ffmpeg-13c988556b3247375dca08dc56298f4bbfab3bfd.tar.gz |
avcodec/pcm: Remove unnecessary emms_c()
The floating point dsp code does not use MMX registers
since 2718a3be1f8867fd4f6cb3f452d6917838b1ed88.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/pcm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c index 467ecb4fe0..4abca7cc07 100644 --- a/libavcodec/pcm.c +++ b/libavcodec/pcm.c @@ -538,7 +538,6 @@ static int pcm_decode_frame(AVCodecContext *avctx, AVFrame *frame, s->vector_fmul_scalar((float *)frame->extended_data[0], (const float *)frame->extended_data[0], s->scale, FFALIGN(frame->nb_samples * avctx->ch_layout.nb_channels, 4)); - emms_c(); } *got_frame_ptr = 1; |