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

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

Issue 1255053007: Rename vp8 loopfilter_mmx.asm (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 4 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_loopfilter_mmx.asm ('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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/filter_x86.h 74 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/filter_x86.h
75 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/vp8_asm_stubs.c 75 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/vp8_asm_stubs.c
76 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/loopfilter_x86.c 76 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/loopfilter_x86.c
77 VP8_COMMON_SRCS-$(CONFIG_POSTPROC) += common/mfqe.c 77 VP8_COMMON_SRCS-$(CONFIG_POSTPROC) += common/mfqe.c
78 VP8_COMMON_SRCS-$(CONFIG_POSTPROC) += common/postproc.h 78 VP8_COMMON_SRCS-$(CONFIG_POSTPROC) += common/postproc.h
79 VP8_COMMON_SRCS-$(CONFIG_POSTPROC) += common/postproc.c 79 VP8_COMMON_SRCS-$(CONFIG_POSTPROC) += common/postproc.c
80 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/dequantize_mmx.asm 80 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/dequantize_mmx.asm
81 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/idct_blk_mmx.c 81 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/idct_blk_mmx.c
82 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/idctllm_mmx.asm 82 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/idctllm_mmx.asm
83 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/iwalsh_mmx.asm 83 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/iwalsh_mmx.asm
84 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/loopfilter_mmx.asm 84 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/vp8_loopfilter_mmx.asm
85 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/recon_mmx.asm 85 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/recon_mmx.asm
86 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/subpixel_mmx.asm 86 VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/subpixel_mmx.asm
87 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/copy_sse2.asm 87 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/copy_sse2.asm
88 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/idct_blk_sse2.c 88 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/idct_blk_sse2.c
89 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/idctllm_sse2.asm 89 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/idctllm_sse2.asm
90 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/recon_sse2.asm 90 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/recon_sse2.asm
91 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/recon_wrapper_sse2.c 91 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/recon_wrapper_sse2.c
92 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/subpixel_sse2.asm 92 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/subpixel_sse2.asm
93 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/loopfilter_sse2.asm 93 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/loopfilter_sse2.asm
94 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/iwalsh_sse2.asm 94 VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/iwalsh_sse2.asm
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/iwalsh_neon.c 163 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/iwalsh_neon.c
164 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/loopfilter_neon.c 164 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/loopfilter_neon.c
165 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/loopfiltersimplehorizontaledge_ neon.c 165 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/loopfiltersimplehorizontaledge_ neon.c
166 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/loopfiltersimpleverticaledge_ne on.c 166 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/loopfiltersimpleverticaledge_ne on.c
167 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/mbloopfilter_neon.c 167 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/mbloopfilter_neon.c
168 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/reconintra_neon.c 168 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/reconintra_neon.c
169 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/shortidct4x4llm_neon.c 169 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/shortidct4x4llm_neon.c
170 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/sixtappredict_neon.c 170 VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/sixtappredict_neon.c
171 171
172 $(eval $(call rtcd_h_template,vp8_rtcd,vp8/common/rtcd_defs.pl)) 172 $(eval $(call rtcd_h_template,vp8_rtcd,vp8/common/rtcd_defs.pl))
OLDNEW
« no previous file with comments | « source/libvpx/vp8/common/x86/vp8_loopfilter_mmx.asm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698