1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-28 20:53:54 +02:00

vf_ssim: Fix loading doubles to float registers on i386

This fixes the tests filter-refcmp-ssim-yuv and filter-refcmp-ssim-rgb
on i386 after breaking in fcc0424c93.

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö 2020-02-05 13:29:32 +02:00
parent e6891d1b7c
commit 0815a22dcc

View File

@ -255,6 +255,6 @@ cglobal ssim_end_line, 3, 3, 7, sum0, sum1, w
addpd m0, m4
%if ARCH_X86_32
movsd r0m, m0
fld r0mp
fld qword r0m
%endif
RET