5fddefbced
Currently vp8 is not using the intra prediction functions in vpx_dsp. Change-Id: I1522b5f5cb12a81999fb126cf7c62c70259e7a52
200 lines
6.6 KiB
Makefile
200 lines
6.6 KiB
Makefile
##
|
|
## Copyright (c) 2015 The WebM project authors. All Rights Reserved.
|
|
##
|
|
## Use of this source code is governed by a BSD-style license
|
|
## that can be found in the LICENSE file in the root of the source
|
|
## tree. An additional intellectual property rights grant can be found
|
|
## in the file PATENTS. All contributing project authors may
|
|
## be found in the AUTHORS file in the root of the source tree.
|
|
##
|
|
|
|
DSP_SRCS-yes += vpx_dsp.mk
|
|
DSP_SRCS-yes += vpx_dsp_common.h
|
|
|
|
DSP_SRCS-$(HAVE_MSA) += mips/macros_msa.h
|
|
|
|
# bit reader
|
|
DSP_SRCS-yes += prob.h
|
|
DSP_SRCS-yes += prob.c
|
|
|
|
ifeq ($(CONFIG_ENCODERS),yes)
|
|
DSP_SRCS-yes += bitwriter.h
|
|
DSP_SRCS-yes += bitwriter.c
|
|
DSP_SRCS-yes += bitwriter_buffer.c
|
|
DSP_SRCS-yes += bitwriter_buffer.h
|
|
endif
|
|
|
|
ifeq ($(CONFIG_DECODERS),yes)
|
|
DSP_SRCS-yes += bitreader.h
|
|
DSP_SRCS-yes += bitreader.c
|
|
DSP_SRCS-yes += bitreader_buffer.c
|
|
DSP_SRCS-yes += bitreader_buffer.h
|
|
endif
|
|
|
|
# intra predictions
|
|
ifeq ($(CONFIG_VP9),yes)
|
|
DSP_SRCS-yes += intrapred.c
|
|
|
|
ifeq ($(CONFIG_USE_X86INC),yes)
|
|
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_SSE2) += x86/highbd_intrapred_sse2.asm
|
|
endif # CONFIG_USE_X86INC
|
|
endif # CONFIG_VP9_HIGHBITDEPTH
|
|
|
|
DSP_SRCS-$(HAVE_NEON_ASM) += arm/intrapred_neon_asm$(ASM)
|
|
DSP_SRCS-$(HAVE_NEON) += arm/intrapred_neon.c
|
|
DSP_SRCS-$(HAVE_MSA) += mips/intrapred_msa.c
|
|
DSP_SRCS-$(HAVE_DSPR2) += mips/intrapred4_dspr2.c
|
|
DSP_SRCS-$(HAVE_DSPR2) += mips/intrapred8_dspr2.c
|
|
DSP_SRCS-$(HAVE_DSPR2) += mips/intrapred16_dspr2.c
|
|
endif # CONFIG_VP9
|
|
|
|
# loop filters
|
|
DSP_SRCS-yes += loopfilter.c
|
|
|
|
DSP_SRCS-$(ARCH_X86)$(ARCH_X86_64) += x86/loopfilter_sse2.c
|
|
DSP_SRCS-$(HAVE_AVX2) += x86/loopfilter_avx2.c
|
|
DSP_SRCS-$(HAVE_MMX) += x86/loopfilter_mmx.asm
|
|
|
|
DSP_SRCS-$(HAVE_NEON) += arm/loopfilter_neon.c
|
|
ifeq ($(HAVE_NEON_ASM),yes)
|
|
DSP_SRCS-yes += arm/loopfilter_mb_neon$(ASM)
|
|
DSP_SRCS-yes += arm/loopfilter_16_neon$(ASM)
|
|
DSP_SRCS-yes += arm/loopfilter_8_neon$(ASM)
|
|
DSP_SRCS-yes += arm/loopfilter_4_neon$(ASM)
|
|
else
|
|
ifeq ($(HAVE_NEON),yes)
|
|
DSP_SRCS-yes += arm/loopfilter_16_neon.c
|
|
DSP_SRCS-yes += arm/loopfilter_8_neon.c
|
|
DSP_SRCS-yes += arm/loopfilter_4_neon.c
|
|
endif # HAVE_NEON
|
|
endif # HAVE_NEON_ASM
|
|
|
|
DSP_SRCS-$(HAVE_MSA) += mips/loopfilter_msa.h
|
|
DSP_SRCS-$(HAVE_MSA) += mips/loopfilter_16_msa.c
|
|
DSP_SRCS-$(HAVE_MSA) += mips/loopfilter_8_msa.c
|
|
DSP_SRCS-$(HAVE_MSA) += mips/loopfilter_4_msa.c
|
|
|
|
ifeq ($(CONFIG_VP9_HIGHBITDEPTH),yes)
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/highbd_loopfilter_sse2.c
|
|
endif # CONFIG_VP9_HIGHBITDEPTH
|
|
|
|
DSP_SRCS-yes += txfm_common.h
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/txfm_common_sse2.h
|
|
DSP_SRCS-$(HAVE_MSA) += mips/txfm_macros_msa.h
|
|
# forward transform
|
|
ifeq ($(CONFIG_VP9_ENCODER),yes)
|
|
DSP_SRCS-yes += fwd_txfm.c
|
|
DSP_SRCS-yes += fwd_txfm.h
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/fwd_txfm_sse2.h
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/fwd_txfm_sse2.c
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/fwd_txfm_impl_sse2.h
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/fwd_dct32x32_impl_sse2.h
|
|
ifeq ($(ARCH_X86_64),yes)
|
|
ifeq ($(CONFIG_USE_X86INC),yes)
|
|
DSP_SRCS-$(HAVE_SSSE3) += x86/fwd_txfm_ssse3_x86_64.asm
|
|
endif
|
|
endif
|
|
DSP_SRCS-$(HAVE_AVX2) += x86/fwd_txfm_avx2.c
|
|
DSP_SRCS-$(HAVE_AVX2) += x86/fwd_dct32x32_impl_avx2.h
|
|
DSP_SRCS-$(HAVE_NEON) += arm/fwd_txfm_neon.c
|
|
DSP_SRCS-$(HAVE_MSA) += mips/fwd_txfm_msa.h
|
|
DSP_SRCS-$(HAVE_MSA) += mips/fwd_txfm_msa.c
|
|
DSP_SRCS-$(HAVE_MSA) += mips/fwd_dct32x32_msa.c
|
|
endif # CONFIG_VP9_ENCODER
|
|
|
|
# quantization
|
|
ifeq ($(CONFIG_VP9_ENCODER),yes)
|
|
DSP_SRCS-yes += quantize.c
|
|
DSP_SRCS-yes += quantize.h
|
|
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/quantize_sse2.c
|
|
ifeq ($(CONFIG_VP9_HIGHBITDEPTH),yes)
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/highbd_quantize_intrin_sse2.c
|
|
endif
|
|
ifeq ($(ARCH_X86_64),yes)
|
|
ifeq ($(CONFIG_USE_X86INC),yes)
|
|
DSP_SRCS-$(HAVE_SSSE3) += x86/quantize_ssse3_x86_64.asm
|
|
endif
|
|
endif
|
|
endif # CONFIG_VP9_ENCODER
|
|
|
|
ifeq ($(CONFIG_ENCODERS),yes)
|
|
DSP_SRCS-yes += sad.c
|
|
DSP_SRCS-yes += subtract.c
|
|
|
|
DSP_SRCS-$(HAVE_MEDIA) += arm/sad_media$(ASM)
|
|
DSP_SRCS-$(HAVE_NEON) += arm/sad4d_neon.c
|
|
DSP_SRCS-$(HAVE_NEON) += arm/sad_neon.c
|
|
DSP_SRCS-$(HAVE_NEON) += arm/subtract_neon.c
|
|
|
|
DSP_SRCS-$(HAVE_MSA) += mips/sad_msa.c
|
|
DSP_SRCS-$(HAVE_MSA) += mips/subtract_msa.c
|
|
|
|
DSP_SRCS-$(HAVE_MMX) += x86/sad_mmx.asm
|
|
DSP_SRCS-$(HAVE_SSE3) += x86/sad_sse3.asm
|
|
DSP_SRCS-$(HAVE_SSSE3) += x86/sad_ssse3.asm
|
|
DSP_SRCS-$(HAVE_SSE4_1) += x86/sad_sse4.asm
|
|
DSP_SRCS-$(HAVE_AVX2) += x86/sad4d_avx2.c
|
|
DSP_SRCS-$(HAVE_AVX2) += x86/sad_avx2.c
|
|
|
|
ifeq ($(CONFIG_USE_X86INC),yes)
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/sad4d_sse2.asm
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/sad_sse2.asm
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/subtract_sse2.asm
|
|
|
|
ifeq ($(CONFIG_VP9_HIGHBITDEPTH),yes)
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/highbd_sad4d_sse2.asm
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/highbd_sad_sse2.asm
|
|
endif # CONFIG_VP9_HIGHBITDEPTH
|
|
endif # CONFIG_USE_X86INC
|
|
|
|
endif # CONFIG_ENCODERS
|
|
|
|
ifneq ($(filter yes,$(CONFIG_ENCODERS) $(CONFIG_POSTPROC) $(CONFIG_VP9_POSTPROC)),)
|
|
DSP_SRCS-yes += variance.c
|
|
DSP_SRCS-yes += variance.h
|
|
|
|
DSP_SRCS-$(HAVE_MEDIA) += arm/bilinear_filter_media$(ASM)
|
|
DSP_SRCS-$(HAVE_MEDIA) += arm/subpel_variance_media.c
|
|
DSP_SRCS-$(HAVE_MEDIA) += arm/variance_halfpixvar16x16_h_media$(ASM)
|
|
DSP_SRCS-$(HAVE_MEDIA) += arm/variance_halfpixvar16x16_hv_media$(ASM)
|
|
DSP_SRCS-$(HAVE_MEDIA) += arm/variance_halfpixvar16x16_v_media$(ASM)
|
|
DSP_SRCS-$(HAVE_MEDIA) += arm/variance_media$(ASM)
|
|
DSP_SRCS-$(HAVE_NEON) += arm/subpel_variance_neon.c
|
|
DSP_SRCS-$(HAVE_NEON) += arm/variance_neon.c
|
|
|
|
DSP_SRCS-$(HAVE_MSA) += mips/variance_msa.c
|
|
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_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
|
|
|
|
ifeq ($(CONFIG_USE_X86INC),yes)
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/subpel_variance_sse2.asm # Contains SSE2 and SSSE3
|
|
endif # CONFIG_USE_X86INC
|
|
|
|
ifeq ($(CONFIG_VP9_HIGHBITDEPTH),yes)
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/highbd_variance_sse2.c
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/highbd_variance_impl_sse2.asm
|
|
ifeq ($(CONFIG_USE_X86INC),yes)
|
|
DSP_SRCS-$(HAVE_SSE2) += x86/highbd_subpel_variance_impl_sse2.asm
|
|
endif # CONFIG_USE_X86INC
|
|
endif # CONFIG_VP9_HIGHBITDEPTH
|
|
endif # CONFIG_ENCODERS || CONFIG_POSTPROC || CONFIG_VP9_POSTPROC
|
|
|
|
DSP_SRCS-no += $(DSP_SRCS_REMOVE-yes)
|
|
|
|
DSP_SRCS-yes += vpx_dsp_rtcd.c
|
|
DSP_SRCS-yes += vpx_dsp_rtcd_defs.pl
|
|
|
|
$(eval $(call rtcd_h_template,vpx_dsp_rtcd,vpx_dsp/vpx_dsp_rtcd_defs.pl))
|