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

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

Issue 181493009: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 9 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
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 VP8_CX_SRCS-yes += encoder/encodeintra.h 43 VP8_CX_SRCS-yes += encoder/encodeintra.h
44 VP8_CX_SRCS-yes += encoder/encodemb.h 44 VP8_CX_SRCS-yes += encoder/encodemb.h
45 VP8_CX_SRCS-yes += encoder/encodemv.h 45 VP8_CX_SRCS-yes += encoder/encodemv.h
46 VP8_CX_SRCS-yes += encoder/firstpass.h 46 VP8_CX_SRCS-yes += encoder/firstpass.h
47 VP8_CX_SRCS-yes += encoder/lookahead.c 47 VP8_CX_SRCS-yes += encoder/lookahead.c
48 VP8_CX_SRCS-yes += encoder/lookahead.h 48 VP8_CX_SRCS-yes += encoder/lookahead.h
49 VP8_CX_SRCS-yes += encoder/mcomp.h 49 VP8_CX_SRCS-yes += encoder/mcomp.h
50 VP8_CX_SRCS-yes += encoder/modecosts.h 50 VP8_CX_SRCS-yes += encoder/modecosts.h
51 VP8_CX_SRCS-yes += encoder/onyx_int.h 51 VP8_CX_SRCS-yes += encoder/onyx_int.h
52 VP8_CX_SRCS-yes += encoder/pickinter.h 52 VP8_CX_SRCS-yes += encoder/pickinter.h
53 VP8_CX_SRCS-yes += encoder/psnr.h
54 VP8_CX_SRCS-yes += encoder/quantize.h 53 VP8_CX_SRCS-yes += encoder/quantize.h
55 VP8_CX_SRCS-yes += encoder/ratectrl.h 54 VP8_CX_SRCS-yes += encoder/ratectrl.h
56 VP8_CX_SRCS-yes += encoder/rdopt.h 55 VP8_CX_SRCS-yes += encoder/rdopt.h
57 VP8_CX_SRCS-yes += encoder/tokenize.h 56 VP8_CX_SRCS-yes += encoder/tokenize.h
58 VP8_CX_SRCS-yes += encoder/treewriter.h 57 VP8_CX_SRCS-yes += encoder/treewriter.h
59 VP8_CX_SRCS-yes += encoder/mcomp.c 58 VP8_CX_SRCS-yes += encoder/mcomp.c
60 VP8_CX_SRCS-yes += encoder/modecosts.c 59 VP8_CX_SRCS-yes += encoder/modecosts.c
61 VP8_CX_SRCS-yes += encoder/onyx_if.c 60 VP8_CX_SRCS-yes += encoder/onyx_if.c
62 VP8_CX_SRCS-yes += encoder/pickinter.c 61 VP8_CX_SRCS-yes += encoder/pickinter.c
63 VP8_CX_SRCS-yes += encoder/picklpf.c 62 VP8_CX_SRCS-yes += encoder/picklpf.c
64 VP8_CX_SRCS-yes += encoder/psnr.c
65 VP8_CX_SRCS-yes += encoder/quantize.c 63 VP8_CX_SRCS-yes += encoder/quantize.c
66 VP8_CX_SRCS-yes += encoder/ratectrl.c 64 VP8_CX_SRCS-yes += encoder/ratectrl.c
67 VP8_CX_SRCS-yes += encoder/rdopt.c 65 VP8_CX_SRCS-yes += encoder/rdopt.c
68 VP8_CX_SRCS-yes += encoder/segmentation.c 66 VP8_CX_SRCS-yes += encoder/segmentation.c
69 VP8_CX_SRCS-yes += encoder/segmentation.h 67 VP8_CX_SRCS-yes += encoder/segmentation.h
70 VP8_CX_SRCS-$(CONFIG_INTERNAL_STATS) += encoder/ssim.c 68 VP8_CX_SRCS-$(CONFIG_INTERNAL_STATS) += encoder/ssim.c
71 VP8_CX_SRCS-yes += encoder/tokenize.c 69 VP8_CX_SRCS-yes += encoder/tokenize.c
72 VP8_CX_SRCS-yes += encoder/dct_value_cost.h 70 VP8_CX_SRCS-yes += encoder/dct_value_cost.h
73 VP8_CX_SRCS-yes += encoder/dct_value_tokens.h 71 VP8_CX_SRCS-yes += encoder/dct_value_tokens.h
74 VP8_CX_SRCS-yes += encoder/treewriter.c 72 VP8_CX_SRCS-yes += encoder/treewriter.c
(...skipping 30 matching lines...) Expand all
105 VP8_CX_SRCS-$(ARCH_X86_64) += encoder/x86/ssim_opt.asm 103 VP8_CX_SRCS-$(ARCH_X86_64) += encoder/x86/ssim_opt.asm
106 104
107 ifeq ($(CONFIG_REALTIME_ONLY),yes) 105 ifeq ($(CONFIG_REALTIME_ONLY),yes)
108 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
109 endif 107 endif
110 108
111 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))
112 110
113 $(eval $(call asm_offsets_template,\ 111 $(eval $(call asm_offsets_template,\
114 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_cx_iface.c ('k') | source/libvpx/vp9/common/arm/neon/vp9_idct32x32_add_neon.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698