From: Jingning Han Date: Tue, 4 Aug 2015 16:44:26 +0000 (-0700) Subject: Exclude inv_txfm dspr2 files from make file when highbd is on X-Git-Tag: v1.5.0~329 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5f138986fcf3c40bcdd3058c4f42c7e35a606885;p=platform%2Fupstream%2Flibvpx.git Exclude inv_txfm dspr2 files from make file when highbd is on Add a guard to exclud dspr2 inverse transform files from vpx_dsp make file, when high bit-depth is turned on. This fixes the jenkins nightly build. Change-Id: Ibacd86563af1ec4810c550905b3fa0397baeeafc --- diff --git a/vpx_dsp/vpx_dsp.mk b/vpx_dsp/vpx_dsp.mk index 6c2e520..4a420f2 100644 --- a/vpx_dsp/vpx_dsp.mk +++ b/vpx_dsp/vpx_dsp.mk @@ -214,12 +214,14 @@ DSP_SRCS-$(HAVE_MSA) += mips/idct8x8_msa.c DSP_SRCS-$(HAVE_MSA) += mips/idct16x16_msa.c DSP_SRCS-$(HAVE_MSA) += mips/idct32x32_msa.c +ifneq ($(CONFIG_VP9_HIGHBITDEPTH),yes) DSP_SRCS-$(HAVE_DSPR2) += mips/inv_txfm_dspr2.h DSP_SRCS-$(HAVE_DSPR2) += mips/itrans4_dspr2.c DSP_SRCS-$(HAVE_DSPR2) += mips/itrans8_dspr2.c DSP_SRCS-$(HAVE_DSPR2) += mips/itrans16_dspr2.c DSP_SRCS-$(HAVE_DSPR2) += mips/itrans32_dspr2.c DSP_SRCS-$(HAVE_DSPR2) += mips/itrans32_cols_dspr2.c +endif # CONFIG_VP9_HIGHBITDEPTH endif # CONFIG_VP9 # quantization