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

Side by Side Diff: source/libvpx/vp8/vp8cx.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/vp8_dx_iface.c ('k') | source/libvpx/vp9/common/arm/neon/vp9_convolve_neon.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
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 VP8_CX_SRCS_REMOVE-yes += encoder/temporal_filter.c 82 VP8_CX_SRCS_REMOVE-yes += encoder/temporal_filter.c
83 endif 83 endif
84 84
85 VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/dct_mmx.asm 85 VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/dct_mmx.asm
86 VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/subtract_mmx.asm 86 VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/subtract_mmx.asm
87 VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/vp8_enc_stubs_mmx.c 87 VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/vp8_enc_stubs_mmx.c
88 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/dct_sse2.asm 88 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/dct_sse2.asm
89 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/fwalsh_sse2.asm 89 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/fwalsh_sse2.asm
90 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/quantize_sse2.c 90 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/quantize_sse2.c
91 VP8_CX_SRCS-$(HAVE_SSSE3) += encoder/x86/quantize_ssse3.c 91 VP8_CX_SRCS-$(HAVE_SSSE3) += encoder/x86/quantize_ssse3.c
92 VP8_CX_SRCS-$(HAVE_SSE4_1) += encoder/x86/quantize_sse4.c
92 93
93 ifeq ($(CONFIG_TEMPORAL_DENOISING),yes) 94 ifeq ($(CONFIG_TEMPORAL_DENOISING),yes)
94 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/denoising_sse2.c 95 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/denoising_sse2.c
95 endif 96 endif
96 97
97 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/subtract_sse2.asm 98 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/subtract_sse2.asm
98 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/temporal_filter_apply_sse2.asm 99 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/temporal_filter_apply_sse2.asm
99 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/vp8_enc_stubs_sse2.c 100 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/vp8_enc_stubs_sse2.c
100 VP8_CX_SRCS-$(HAVE_SSE4_1) += encoder/x86/quantize_sse4.asm
101 VP8_CX_SRCS-$(ARCH_X86)$(ARCH_X86_64) += encoder/x86/quantize_mmx.asm 101 VP8_CX_SRCS-$(ARCH_X86)$(ARCH_X86_64) += encoder/x86/quantize_mmx.asm
102 VP8_CX_SRCS-$(ARCH_X86)$(ARCH_X86_64) += encoder/x86/encodeopt.asm 102 VP8_CX_SRCS-$(ARCH_X86)$(ARCH_X86_64) += encoder/x86/encodeopt.asm
103 VP8_CX_SRCS-$(ARCH_X86_64) += encoder/x86/ssim_opt.asm 103 VP8_CX_SRCS-$(ARCH_X86_64) += encoder/x86/ssim_opt_x86_64.asm
104 104
105 ifeq ($(CONFIG_REALTIME_ONLY),yes) 105 ifeq ($(CONFIG_REALTIME_ONLY),yes)
106 VP8_CX_SRCS_REMOVE-$(HAVE_SSE2) += encoder/x86/temporal_filter_apply_sse2.asm 106 VP8_CX_SRCS_REMOVE-$(HAVE_SSE2) += encoder/x86/temporal_filter_apply_sse2.asm
107 endif 107 endif
108 108
109 VP8_CX_SRCS-yes := $(filter-out $(VP8_CX_SRCS_REMOVE-yes),$(VP8_CX_SRCS-yes)) 109 VP8_CX_SRCS-yes := $(filter-out $(VP8_CX_SRCS_REMOVE-yes),$(VP8_CX_SRCS-yes))
110 110
111 $(eval $(call asm_offsets_template,\ 111 $(eval $(call asm_offsets_template,\
112 vp8_asm_enc_offsets.asm, $(VP8_PREFIX)encoder/vp8_asm_enc_offsets.c)) 112 vp8_asm_enc_offsets.asm, $(VP8_PREFIX)encoder/vp8_asm_enc_offsets.c))
OLDNEW
« no previous file with comments | « source/libvpx/vp8/vp8_dx_iface.c ('k') | source/libvpx/vp9/common/arm/neon/vp9_convolve_neon.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698