This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
swscale/x86/yuv2yuvX: use movq to load 8 bytes in all non-AVX2 functions
mova expands to movq on non-XMM functions Signed-off-by: James Almer <jamrial@gmail.com>
tags/n4.4
James Almer
5 years ago
parent
d512ebbaed
commit
ebb48d85a0
1 changed files
with
1 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-3
libswscale/x86/yuv2yuvX.asm
+ 1
- 3
libswscale/x86/yuv2yuvX.asm
View File
@@ -47,10 +47,8 @@ cglobal yuv2yuvX, 7, 7, 8, filter, filterSize, src, dest, dstW, dither, offset
%endif ; x86-64
%if cpuflag(avx2)
vpbroadcastq m3, [ditherq]
%elif cpuflag(sse3)
movq xmm3, [ditherq]
%else
mov
a
m3, [ditherq]
movq xm3, [ditherq]
%endif ; avx2
cmp offsetd, 0
jz .offset
Write
Preview
Loading…
Cancel
Save