diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2015-10-05 07:39:04 -0400 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2015-10-05 16:51:05 -0400 |
commit | cb912b452192009683ec0dad2ea7a9daa5bd6958 (patch) | |
tree | 5642c99ffa41473c96a029e0d4c3281e4823059b /libavcodec | |
parent | 8deb1fdac84e58691d4ca940a7b815feee67bc3e (diff) | |
download | ffmpeg-cb912b452192009683ec0dad2ea7a9daa5bd6958.tar.gz |
vp9: fix msvc build by using 6 GPRs on 32bit if stack!=aligned.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/vp9intrapred_16bpp.asm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libavcodec/x86/vp9intrapred_16bpp.asm b/libavcodec/x86/vp9intrapred_16bpp.asm index 0dca645601..3653469d9f 100644 --- a/libavcodec/x86/vp9intrapred_16bpp.asm +++ b/libavcodec/x86/vp9intrapred_16bpp.asm @@ -1634,8 +1634,13 @@ cglobal vp9_ipred_hu_16x16_16, 3, 4, 6 + notcpuflag(ssse3), dst, stride, l, a jg .loop RET +%if ARCH_X86_64 || HAVE_ALIGNED_STACK cglobal vp9_ipred_hu_32x32_16, 3, 7, 10 + notcpuflag(ssse3), \ %1 * mmsize * ARCH_X86_32, dst, stride, l, a +%else +cglobal vp9_ipred_hu_32x32_16, 3, 6, 10 + notcpuflag(ssse3), \ + %1 * mmsize * ARCH_X86_32, dst, stride, l, a +%endif mova m2, [lq+mmsize*0+0] movu m1, [lq+mmsize*0+2] movu m0, [lq+mmsize*0+4] @@ -1666,7 +1671,12 @@ cglobal vp9_ipred_hu_32x32_16, 3, 7, 10 + notcpuflag(ssse3), \ SBUTTERFLY wd, 7, 6, 0 pshufd m1, m1, q3333 UNSCRATCH 0, 9, rsp+1*mmsize +%if ARCH_X86_64 || HAVE_ALIGNED_STACK DEFINE_ARGS dst, stride, cnt, stride3, stride4, stride20, stride28 +%else + DEFINE_ARGS dst, stride, stride3, stride4, stride20, stride28 +%define cntd dword r0m +%endif lea stride3q, [strideq*3] lea stride4q, [strideq*4] lea stride28q, [stride4q*8] |