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

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

Issue 1154153005: Rename variance files (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 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
« no previous file with comments | « source/libvpx/vp8/common/x86/vp8_variance_sse2.c ('k') | no next file » | 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
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 VP8_COMMON_SRCS-$(CONFIG_POSTPROC) += common/mfqe.c 79 VP8_COMMON_SRCS-$(CONFIG_POSTPROC) += common/mfqe.c
80 VP8_COMMON_SRCS-$(CONFIG_POSTPROC) += common/postproc.h 80 VP8_COMMON_SRCS-$(CONFIG_POSTPROC) += common/postproc.h
81 VP8_COMMON_SRCS-$(CONFIG_POSTPROC) += common/postproc.c 81 VP8_COMMON_SRCS-$(CONFIG_POSTPROC) += common/postproc.c
82 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/dequantize_mmx.asm 82 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/dequantize_mmx.asm
83 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/idct_blk_mmx.c 83 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/idct_blk_mmx.c
84 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/idctllm_mmx.asm 84 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/idctllm_mmx.asm
85 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/iwalsh_mmx.asm 85 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/iwalsh_mmx.asm
86 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/loopfilter_mmx.asm 86 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/loopfilter_mmx.asm
87 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/recon_mmx.asm 87 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/recon_mmx.asm
88 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/subpixel_mmx.asm 88 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/subpixel_mmx.asm
89 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/variance_mmx.c 89 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/vp8_variance_mmx.c
90 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/variance_impl_mmx.asm 90 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/vp8_variance_impl_mmx.asm
91 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/copy_sse2.asm 91 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/copy_sse2.asm
92 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/idct_blk_sse2.c 92 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/idct_blk_sse2.c
93 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/idctllm_sse2.asm 93 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/idctllm_sse2.asm
94 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/recon_sse2.asm 94 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/recon_sse2.asm
95 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/recon_wrapper_sse2.c 95 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/recon_wrapper_sse2.c
96 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/subpixel_sse2.asm 96 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/subpixel_sse2.asm
97 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/loopfilter_sse2.asm 97 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/loopfilter_sse2.asm
98 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/iwalsh_sse2.asm 98 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/iwalsh_sse2.asm
99 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/variance_sse2.c 99 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/vp8_variance_sse2.c
100 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/variance_impl_sse2.asm 100 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/variance_impl_sse2.asm
101 VP8_COMMON_SRCS-$(HAVE_SSE3) += common/x86/copy_sse3.asm 101 VP8_COMMON_SRCS-$(HAVE_SSE3) += common/x86/copy_sse3.asm
102 VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/subpixel_ssse3.asm 102 VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/subpixel_ssse3.asm
103 VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/variance_ssse3.c 103 VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/variance_ssse3.c
104 VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/variance_impl_ssse3.asm 104 VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/variance_impl_ssse3.asm
105 105
106 ifeq ($(CONFIG_POSTPROC),yes) 106 ifeq ($(CONFIG_POSTPROC),yes)
107 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/postproc_mmx.asm 107 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/postproc_mmx.asm
108 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/mfqe_sse2.asm 108 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/mfqe_sse2.asm
109 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/postproc_sse2.asm 109 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/postproc_sse2.asm
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/loopfilter_neon.c 162 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/loopfilter_neon.c
163 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/loopfiltersimplehorizontaledge_ neon.c 163 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/loopfiltersimplehorizontaledge_ neon.c
164 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/loopfiltersimpleverticaledge_ne on.c 164 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/loopfiltersimpleverticaledge_ne on.c
165 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/mbloopfilter_neon.c 165 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/mbloopfilter_neon.c
166 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/reconintra_neon.c 166 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/reconintra_neon.c
167 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/shortidct4x4llm_neon.c 167 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/shortidct4x4llm_neon.c
168 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/sixtappredict_neon.c 168 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/sixtappredict_neon.c
169 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/vp8_subpixelvariance_neon.c 169 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/vp8_subpixelvariance_neon.c
170 170
171 $(eval $(call rtcd_h_template,vp8_rtcd,vp8/common/rtcd_defs.pl)) 171 $(eval $(call rtcd_h_template,vp8_rtcd,vp8/common/rtcd_defs.pl))
OLDNEW
« no previous file with comments | « source/libvpx/vp8/common/x86/vp8_variance_sse2.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698