Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(701)

Side by Side Diff: source/libvpx/vpx_dsp/vpx_dsp.mk

Issue 1124333011: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: only update to last nights LKGR Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/libvpx/vpx_dsp/sad.c ('k') | source/libvpx/vpx_dsp/vpx_dsp_rtcd.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 ##
2 ## Copyright (c) 2015 The WebM project authors. All Rights Reserved.
3 ##
4 ## Use of this source code is governed by a BSD-style license
5 ## that can be found in the LICENSE file in the root of the source
6 ## tree. An additional intellectual property rights grant can be found
7 ## in the file PATENTS. All contributing project authors may
8 ## be found in the AUTHORS file in the root of the source tree.
9 ##
10
11 DSP_SRCS-yes += vpx_dsp.mk
12
13 ifeq ($(CONFIG_ENCODERS),yes)
14 DSP_SRCS-yes += sad.c
15
16 DSP_SRCS-$(HAVE_MEDIA) += arm/sad_media$(ASM)
17 DSP_SRCS-$(HAVE_NEON) += arm/sad4d_neon.c
18 DSP_SRCS-$(HAVE_NEON) += arm/sad_neon.c
19
20 DSP_SRCS-$(HAVE_MMX) += x86/sad_mmx.asm
21 DSP_SRCS-$(HAVE_SSE2) += x86/sad4d_sse2.asm
22 DSP_SRCS-$(HAVE_SSE2) += x86/sad_sse2.asm
23 DSP_SRCS-$(HAVE_SSE3) += x86/sad_sse3.asm
24 DSP_SRCS-$(HAVE_SSSE3) += x86/sad_ssse3.asm
25 DSP_SRCS-$(HAVE_SSE4_1) += x86/sad_sse4.asm
26 DSP_SRCS-$(HAVE_AVX2) += x86/sad4d_avx2.c
27 DSP_SRCS-$(HAVE_AVX2) += x86/sad_avx2.c
28
29 ifeq ($(CONFIG_VP9_HIGHBITDEPTH),yes)
30 DSP_SRCS-$(HAVE_SSE2) += x86/highbd_sad4d_sse2.asm
31 DSP_SRCS-$(HAVE_SSE2) += x86/highbd_sad_sse2.asm
32 endif # CONFIG_VP9_HIGHBITDEPTH
33 endif # CONFIG_ENCODERS
34
35 DSP_SRCS-no += $(DSP_SRCS_REMOVE-yes)
36
37 DSP_SRCS-yes += vpx_dsp_rtcd.c
38 DSP_SRCS-yes += vpx_dsp_rtcd_defs.pl
39
40 $(eval $(call rtcd_h_template,vpx_dsp_rtcd,vpx_dsp/vpx_dsp_rtcd_defs.pl))
OLDNEW
« no previous file with comments | « source/libvpx/vpx_dsp/sad.c ('k') | source/libvpx/vpx_dsp/vpx_dsp_rtcd.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698