OLD | NEW |
1 ## | 1 ## |
2 ## Copyright (c) 2010 The VP8 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 | 11 |
12 #add this file to the installed sources list | 12 #add this file to the installed sources list |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 VP8_COMMON_SRCS-yes += common/loopfilter_filters.c | 74 VP8_COMMON_SRCS-yes += common/loopfilter_filters.c |
75 VP8_COMMON_SRCS-yes += common/mbpitch.c | 75 VP8_COMMON_SRCS-yes += common/mbpitch.c |
76 VP8_COMMON_SRCS-yes += common/modecont.c | 76 VP8_COMMON_SRCS-yes += common/modecont.c |
77 VP8_COMMON_SRCS-yes += common/modecontext.c | 77 VP8_COMMON_SRCS-yes += common/modecontext.c |
78 VP8_COMMON_SRCS-yes += common/predictdc.c | 78 VP8_COMMON_SRCS-yes += common/predictdc.c |
79 VP8_COMMON_SRCS-yes += common/quant_common.c | 79 VP8_COMMON_SRCS-yes += common/quant_common.c |
80 VP8_COMMON_SRCS-yes += common/recon.c | 80 VP8_COMMON_SRCS-yes += common/recon.c |
81 VP8_COMMON_SRCS-yes += common/reconinter.c | 81 VP8_COMMON_SRCS-yes += common/reconinter.c |
82 VP8_COMMON_SRCS-yes += common/reconintra.c | 82 VP8_COMMON_SRCS-yes += common/reconintra.c |
83 VP8_COMMON_SRCS-yes += common/reconintra4x4.c | 83 VP8_COMMON_SRCS-yes += common/reconintra4x4.c |
| 84 VP8_COMMON_SRCS-yes += common/reconintra_mt.h |
| 85 VP8_COMMON_SRCS-yes += common/reconintra_mt.c |
84 VP8_COMMON_SRCS-yes += common/setupintrarecon.c | 86 VP8_COMMON_SRCS-yes += common/setupintrarecon.c |
85 VP8_COMMON_SRCS-yes += common/swapyv12buffer.c | 87 VP8_COMMON_SRCS-yes += common/swapyv12buffer.c |
86 VP8_COMMON_SRCS-yes += common/textblit.c | 88 VP8_COMMON_SRCS-yes += common/textblit.c |
87 VP8_COMMON_SRCS-yes += common/treecoder.c | 89 VP8_COMMON_SRCS-yes += common/treecoder.c |
88 | 90 |
89 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/idct_x86.h | 91 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/idct_x86.h |
90 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/subpixel_x86.h | 92 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/subpixel_x86.h |
91 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/recon_x86.h | 93 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/recon_x86.h |
92 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/loopfilter_x86.h | 94 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/loopfilter_x86.h |
93 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/postproc_x86.h | 95 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/postproc_x86.h |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 # Rule to extract assembly constants from C sources | 182 # Rule to extract assembly constants from C sources |
181 # | 183 # |
182 ifeq ($(ARCH_ARM),yes) | 184 ifeq ($(ARCH_ARM),yes) |
183 vpx_asm_offsets.asm: obj_int_extract | 185 vpx_asm_offsets.asm: obj_int_extract |
184 vpx_asm_offsets.asm: $(VP8_PREFIX)common/arm/vpx_asm_offsets.c.o | 186 vpx_asm_offsets.asm: $(VP8_PREFIX)common/arm/vpx_asm_offsets.c.o |
185 ./obj_int_extract rvds $< $(ADS2GAS) > $@ | 187 ./obj_int_extract rvds $< $(ADS2GAS) > $@ |
186 OBJS-yes += $(VP8_PREFIX)common/arm/vpx_asm_offsets.c.o | 188 OBJS-yes += $(VP8_PREFIX)common/arm/vpx_asm_offsets.c.o |
187 CLEAN-OBJS += vpx_asm_offsets.asm | 189 CLEAN-OBJS += vpx_asm_offsets.asm |
188 $(filter %$(ASM).o,$(OBJS-yes)): vpx_asm_offsets.asm | 190 $(filter %$(ASM).o,$(OBJS-yes)): vpx_asm_offsets.asm |
189 endif | 191 endif |
OLD | NEW |