OLD | NEW |
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 VP8_CX_SRCS-$(CONFIG_INTERNAL_STATS) += encoder/ssim.c | 68 VP8_CX_SRCS-$(CONFIG_INTERNAL_STATS) += encoder/ssim.c |
69 VP8_CX_SRCS-yes += encoder/tokenize.c | 69 VP8_CX_SRCS-yes += encoder/tokenize.c |
70 VP8_CX_SRCS-yes += encoder/dct_value_cost.h | 70 VP8_CX_SRCS-yes += encoder/dct_value_cost.h |
71 VP8_CX_SRCS-yes += encoder/dct_value_tokens.h | 71 VP8_CX_SRCS-yes += encoder/dct_value_tokens.h |
72 VP8_CX_SRCS-yes += encoder/treewriter.c | 72 VP8_CX_SRCS-yes += encoder/treewriter.c |
73 VP8_CX_SRCS-$(CONFIG_INTERNAL_STATS) += common/postproc.h | 73 VP8_CX_SRCS-$(CONFIG_INTERNAL_STATS) += common/postproc.h |
74 VP8_CX_SRCS-$(CONFIG_INTERNAL_STATS) += common/postproc.c | 74 VP8_CX_SRCS-$(CONFIG_INTERNAL_STATS) += common/postproc.c |
75 VP8_CX_SRCS-yes += encoder/temporal_filter.c | 75 VP8_CX_SRCS-yes += encoder/temporal_filter.c |
76 VP8_CX_SRCS-$(CONFIG_MULTI_RES_ENCODING) += encoder/mr_dissim.c | 76 VP8_CX_SRCS-$(CONFIG_MULTI_RES_ENCODING) += encoder/mr_dissim.c |
77 VP8_CX_SRCS-$(CONFIG_MULTI_RES_ENCODING) += encoder/mr_dissim.h | 77 VP8_CX_SRCS-$(CONFIG_MULTI_RES_ENCODING) += encoder/mr_dissim.h |
78 VP8_CX_SRCS-yes += encoder/vp8_asm_enc_offsets.c | |
79 | 78 |
80 ifeq ($(CONFIG_REALTIME_ONLY),yes) | 79 ifeq ($(CONFIG_REALTIME_ONLY),yes) |
81 VP8_CX_SRCS_REMOVE-yes += encoder/firstpass.c | 80 VP8_CX_SRCS_REMOVE-yes += encoder/firstpass.c |
82 VP8_CX_SRCS_REMOVE-yes += encoder/temporal_filter.c | 81 VP8_CX_SRCS_REMOVE-yes += encoder/temporal_filter.c |
83 endif | 82 endif |
84 | 83 |
85 VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/dct_mmx.asm | 84 VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/dct_mmx.asm |
86 VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/subtract_mmx.asm | 85 VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/subtract_mmx.asm |
87 VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/vp8_enc_stubs_mmx.c | 86 VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/vp8_enc_stubs_mmx.c |
88 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/dct_sse2.asm | 87 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/dct_sse2.asm |
(...skipping 11 matching lines...) Expand all Loading... |
100 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/vp8_enc_stubs_sse2.c | 99 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/vp8_enc_stubs_sse2.c |
101 VP8_CX_SRCS-$(ARCH_X86)$(ARCH_X86_64) += encoder/x86/quantize_mmx.asm | 100 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 | 101 VP8_CX_SRCS-$(ARCH_X86)$(ARCH_X86_64) += encoder/x86/encodeopt.asm |
103 VP8_CX_SRCS-$(ARCH_X86_64) += encoder/x86/ssim_opt_x86_64.asm | 102 VP8_CX_SRCS-$(ARCH_X86_64) += encoder/x86/ssim_opt_x86_64.asm |
104 | 103 |
105 ifeq ($(CONFIG_REALTIME_ONLY),yes) | 104 ifeq ($(CONFIG_REALTIME_ONLY),yes) |
106 VP8_CX_SRCS_REMOVE-$(HAVE_SSE2) += encoder/x86/temporal_filter_apply_sse2.asm | 105 VP8_CX_SRCS_REMOVE-$(HAVE_SSE2) += encoder/x86/temporal_filter_apply_sse2.asm |
107 endif | 106 endif |
108 | 107 |
109 VP8_CX_SRCS-yes := $(filter-out $(VP8_CX_SRCS_REMOVE-yes),$(VP8_CX_SRCS-yes)) | 108 VP8_CX_SRCS-yes := $(filter-out $(VP8_CX_SRCS_REMOVE-yes),$(VP8_CX_SRCS-yes)) |
110 | |
111 $(eval $(call asm_offsets_template,\ | |
112 vp8_asm_enc_offsets.asm, $(VP8_PREFIX)encoder/vp8_asm_enc_offsets.c)) | |
OLD | NEW |