Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Yushin Cho
aom-rav1e
Commits
345b11cd
Commit
345b11cd
authored
Aug 12, 2015
by
James Zern
Committed by
Gerrit Code Review
Aug 12, 2015
Browse files
Merge "fix build w/only mmx+sse enabled"
parents
be6c031f
23532eb7
Changes
1
Hide whitespace changes
Inline
Side-by-side
vpx_dsp/vpx_dsp.mk
View file @
345b11cd
...
...
@@ -40,12 +40,14 @@ ifneq ($(filter yes,$(CONFIG_VP9) $(CONFIG_VP10)),)
DSP_SRCS-yes
+=
intrapred.c
ifeq
($(CONFIG_USE_X86INC),yes)
DSP_SRCS-$(HAVE_SSE)
+=
x86/intrapred_sse2.asm
DSP_SRCS-$(HAVE_SSE2)
+=
x86/intrapred_sse2.asm
DSP_SRCS-$(HAVE_SSSE3)
+=
x86/intrapred_ssse3.asm
endif
# CONFIG_USE_X86INC
ifeq
($(CONFIG_VP9_HIGHBITDEPTH),yes)
ifeq
($(CONFIG_USE_X86INC),yes)
DSP_SRCS-$(HAVE_SSE)
+=
x86/highbd_intrapred_sse2.asm
DSP_SRCS-$(HAVE_SSE2)
+=
x86/highbd_intrapred_sse2.asm
endif
# CONFIG_USE_X86INC
endif
# CONFIG_VP9_HIGHBITDEPTH
...
...
@@ -265,6 +267,8 @@ DSP_SRCS-$(HAVE_AVX2) += x86/sad4d_avx2.c
DSP_SRCS-$(HAVE_AVX2)
+=
x86/sad_avx2.c
ifeq
($(CONFIG_USE_X86INC),yes)
DSP_SRCS-$(HAVE_SSE)
+=
x86/sad4d_sse2.asm
DSP_SRCS-$(HAVE_SSE)
+=
x86/sad_sse2.asm
DSP_SRCS-$(HAVE_SSE2)
+=
x86/sad4d_sse2.asm
DSP_SRCS-$(HAVE_SSE2)
+=
x86/sad_sse2.asm
DSP_SRCS-$(HAVE_SSE2)
+=
x86/subtract_sse2.asm
...
...
@@ -295,6 +299,7 @@ DSP_SRCS-$(HAVE_MSA) += mips/sub_pixel_variance_msa.c
DSP_SRCS-$(HAVE_MMX)
+=
x86/variance_mmx.c
DSP_SRCS-$(HAVE_MMX)
+=
x86/variance_impl_mmx.asm
DSP_SRCS-$(HAVE_SSE)
+=
x86/variance_sse2.c
DSP_SRCS-$(HAVE_SSE2)
+=
x86/variance_sse2.c
# Contains SSE2 and SSSE3
DSP_SRCS-$(HAVE_AVX2)
+=
x86/variance_avx2.c
DSP_SRCS-$(HAVE_AVX2)
+=
x86/variance_impl_avx2.c
...
...
@@ -304,6 +309,7 @@ DSP_SRCS-$(HAVE_SSE2) += x86/ssim_opt_x86_64.asm
endif
# ARCH_X86_64
ifeq
($(CONFIG_USE_X86INC),yes)
DSP_SRCS-$(HAVE_SSE)
+=
x86/subpel_variance_sse2.asm
DSP_SRCS-$(HAVE_SSE2)
+=
x86/subpel_variance_sse2.asm
# Contains SSE2 and SSSE3
endif
# CONFIG_USE_X86INC
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment