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

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

Issue 3417017: Update libvpx sources to v0.9.2-35-ga8a38bc. ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 10 years, 3 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/vp8cx_arm.mk ('k') | source/libvpx/vp8/vp8dx_arm.mk » ('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 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 include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8_common.mk 12 include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8_common.mk
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 #INCLUDES += algo/vpx_common/vpx_mem/include 47 #INCLUDES += algo/vpx_common/vpx_mem/include
48 #INCLUDES += common 48 #INCLUDES += common
49 #INCLUDES += common 49 #INCLUDES += common
50 #INCLUDES += common 50 #INCLUDES += common
51 #INCLUDES += common 51 #INCLUDES += common
52 #INCLUDES += decoder 52 #INCLUDES += decoder
53 53
54 VP8_DX_SRCS-yes += decoder/dboolhuff.c 54 VP8_DX_SRCS-yes += decoder/dboolhuff.c
55 VP8_DX_SRCS-yes += decoder/decodemv.c 55 VP8_DX_SRCS-yes += decoder/decodemv.c
56 VP8_DX_SRCS-yes += decoder/decodframe.c 56 VP8_DX_SRCS-yes += decoder/decodframe.c
57 VP8_DX_SRCS-yes += decoder/demode.c
58 VP8_DX_SRCS-yes += decoder/dequantize.c 57 VP8_DX_SRCS-yes += decoder/dequantize.c
59 VP8_DX_SRCS-yes += decoder/detokenize.c 58 VP8_DX_SRCS-yes += decoder/detokenize.c
60 VP8_DX_SRCS-yes += decoder/generic/dsystemdependent.c 59 VP8_DX_SRCS-yes += decoder/generic/dsystemdependent.c
61 VP8_DX_SRCS-yes += decoder/dboolhuff.h 60 VP8_DX_SRCS-yes += decoder/dboolhuff.h
62 VP8_DX_SRCS-yes += decoder/decodemv.h 61 VP8_DX_SRCS-yes += decoder/decodemv.h
63 VP8_DX_SRCS-yes += decoder/decoderthreading.h 62 VP8_DX_SRCS-yes += decoder/decoderthreading.h
64 VP8_DX_SRCS-yes += decoder/demode.h
65 VP8_DX_SRCS-yes += decoder/dequantize.h 63 VP8_DX_SRCS-yes += decoder/dequantize.h
66 VP8_DX_SRCS-yes += decoder/detokenize.h 64 VP8_DX_SRCS-yes += decoder/detokenize.h
67 VP8_DX_SRCS-yes += decoder/onyxd_int.h 65 VP8_DX_SRCS-yes += decoder/onyxd_int.h
68 VP8_DX_SRCS-yes += decoder/treereader.h 66 VP8_DX_SRCS-yes += decoder/treereader.h
69 VP8_DX_SRCS-yes += decoder/onyxd_if.c 67 VP8_DX_SRCS-yes += decoder/onyxd_if.c
70 VP8_DX_SRCS-yes += decoder/threading.c 68 VP8_DX_SRCS-yes += decoder/threading.c
71 VP8_DX_SRCS-yes += decoder/idct_blk.c 69 VP8_DX_SRCS-yes += decoder/idct_blk.c
72 70
73 VP8_DX_SRCS-yes := $(filter-out $(VP8_DX_SRCS_REMOVE-yes),$(VP8_DX_SRCS-yes)) 71 VP8_DX_SRCS-yes := $(filter-out $(VP8_DX_SRCS_REMOVE-yes),$(VP8_DX_SRCS-yes))
74 72
75 VP8_DX_SRCS-$(ARCH_X86)$(ARCH_X86_64) += decoder/x86/dequantize_x86.h 73 VP8_DX_SRCS-$(ARCH_X86)$(ARCH_X86_64) += decoder/x86/dequantize_x86.h
76 VP8_DX_SRCS-$(ARCH_X86)$(ARCH_X86_64) += decoder/x86/x86_dsystemdependent.c 74 VP8_DX_SRCS-$(ARCH_X86)$(ARCH_X86_64) += decoder/x86/x86_dsystemdependent.c
77 VP8_DX_SRCS-$(HAVE_MMX) += decoder/x86/dequantize_mmx.asm 75 VP8_DX_SRCS-$(HAVE_MMX) += decoder/x86/dequantize_mmx.asm
78 VP8_DX_SRCS-$(HAVE_MMX) += decoder/x86/idct_blk_mmx.c 76 VP8_DX_SRCS-$(HAVE_MMX) += decoder/x86/idct_blk_mmx.c
79 VP8_DX_SRCS-$(HAVE_SSE2) += decoder/x86/idct_blk_sse2.c 77 VP8_DX_SRCS-$(HAVE_SSE2) += decoder/x86/idct_blk_sse2.c
OLDNEW
« no previous file with comments | « source/libvpx/vp8/vp8cx_arm.mk ('k') | source/libvpx/vp8/vp8dx_arm.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698