1
0
Fork 0

avcodec/pcm: Remove unnecessary emms_c()

The floating point dsp code does not use MMX registers
since 2718a3be1f.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2023-08-31 21:34:36 +02:00
parent 30e8ab8bc4
commit 13c988556b
1 changed files with 0 additions and 1 deletions

View File

@ -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;