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

Side by Side Diff: source/libvpx/vp8/vp8_common.mk

Issue 341293003: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « source/libvpx/vp8/encoder/x86/ssim_opt_x86_64.asm ('k') | source/libvpx/vp8/vp8_cx_iface.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1 ##
2 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved. 2 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3 ## 3 ##
4 ## Use of this source code is governed by a BSD-style license 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 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 6 ## tree. An additional intellectual property rights grant can be found
7 ## in the file PATENTS. All contributing project authors may 7 ## in the file PATENTS. All contributing project authors may
8 ## be found in the AUTHORS file in the root of the source tree. 8 ## be found in the AUTHORS file in the root of the source tree.
9 ## 9 ##
10 10
11 VP8_COMMON_SRCS-yes += vp8_common.mk 11 VP8_COMMON_SRCS-yes += vp8_common.mk
12 VP8_COMMON_SRCS-yes += common/pragmas.h
13 VP8_COMMON_SRCS-yes += common/ppflags.h 12 VP8_COMMON_SRCS-yes += common/ppflags.h
14 VP8_COMMON_SRCS-yes += common/onyx.h 13 VP8_COMMON_SRCS-yes += common/onyx.h
15 VP8_COMMON_SRCS-yes += common/onyxd.h 14 VP8_COMMON_SRCS-yes += common/onyxd.h
16 VP8_COMMON_SRCS-yes += common/alloccommon.c 15 VP8_COMMON_SRCS-yes += common/alloccommon.c
17 VP8_COMMON_SRCS-yes += common/blockd.c 16 VP8_COMMON_SRCS-yes += common/blockd.c
18 VP8_COMMON_SRCS-yes += common/coefupdateprobs.h 17 VP8_COMMON_SRCS-yes += common/coefupdateprobs.h
19 VP8_COMMON_SRCS-yes += common/debugmodes.c 18 VP8_COMMON_SRCS-yes += common/debugmodes.c
20 VP8_COMMON_SRCS-yes += common/default_coef_probs.h 19 VP8_COMMON_SRCS-yes += common/default_coef_probs.h
21 VP8_COMMON_SRCS-yes += common/dequantize.c 20 VP8_COMMON_SRCS-yes += common/dequantize.c
22 VP8_COMMON_SRCS-yes += common/entropy.c 21 VP8_COMMON_SRCS-yes += common/entropy.c
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/variance_sse2.c 100 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/variance_sse2.c
102 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/variance_impl_sse2.asm 101 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/variance_impl_sse2.asm
103 VP8_COMMON_SRCS-$(HAVE_SSE3) += common/x86/sad_sse3.asm 102 VP8_COMMON_SRCS-$(HAVE_SSE3) += common/x86/sad_sse3.asm
104 VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/sad_ssse3.asm 103 VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/sad_ssse3.asm
105 VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/subpixel_ssse3.asm 104 VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/subpixel_ssse3.asm
106 VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/variance_ssse3.c 105 VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/variance_ssse3.c
107 VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/variance_impl_ssse3.asm 106 VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/variance_impl_ssse3.asm
108 VP8_COMMON_SRCS-$(HAVE_SSE4_1) += common/x86/sad_sse4.asm 107 VP8_COMMON_SRCS-$(HAVE_SSE4_1) += common/x86/sad_sse4.asm
109 108
110 ifeq ($(CONFIG_POSTPROC),yes) 109 ifeq ($(CONFIG_POSTPROC),yes)
111 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/postproc_x86.c
112 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/postproc_mmx.asm 110 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/postproc_mmx.asm
113 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/mfqe_sse2.asm 111 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/mfqe_sse2.asm
114 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/postproc_sse2.asm 112 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/postproc_sse2.asm
115 endif 113 endif
116 114
117 ifeq ($(ARCH_X86_64),yes) 115 ifeq ($(ARCH_X86_64),yes)
118 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/loopfilter_block_sse2.asm 116 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/loopfilter_block_sse2_x86_64.asm
119 endif 117 endif
120 118
121 # common (c) 119 # common (c)
122 VP8_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/idctllm_dspr2.c 120 VP8_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/idctllm_dspr2.c
123 VP8_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/filter_dspr2.c 121 VP8_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/filter_dspr2.c
124 VP8_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/loopfilter_filters_dspr2.c 122 VP8_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/loopfilter_filters_dspr2.c
125 VP8_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/reconinter_dspr2.c 123 VP8_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/reconinter_dspr2.c
126 VP8_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/idct_blk_dspr2.c 124 VP8_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/idct_blk_dspr2.c
127 VP8_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/dequantize_dspr2.c 125 VP8_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/dequantize_dspr2.c
128 126
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/dequantizeb_neon.c 175 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/dequantizeb_neon.c
178 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/iwalsh_neon.c 176 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/iwalsh_neon.c
179 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/loopfiltersimplehorizontaledge_ neon.c 177 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/loopfiltersimplehorizontaledge_ neon.c
180 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/mbloopfilter_neon.c 178 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/mbloopfilter_neon.c
181 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/sad_neon.c 179 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/sad_neon.c
182 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/shortidct4x4llm_neon.c 180 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/shortidct4x4llm_neon.c
183 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/sixtappredict_neon.c 181 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/sixtappredict_neon.c
184 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/variance_neon.c 182 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/variance_neon.c
185 183
186 $(eval $(call rtcd_h_template,vp8_rtcd,vp8/common/rtcd_defs.pl)) 184 $(eval $(call rtcd_h_template,vp8_rtcd,vp8/common/rtcd_defs.pl))
OLDNEW
« no previous file with comments | « source/libvpx/vp8/encoder/x86/ssim_opt_x86_64.asm ('k') | source/libvpx/vp8/vp8_cx_iface.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698