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

Side by Side Diff: source/libvpx/examples.mk

Issue 554673004: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 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/configure ('k') | source/libvpx/examples/set_maps.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 13 matching lines...) Expand all
24 third_party/libyuv/source/row_common.cc \ 24 third_party/libyuv/source/row_common.cc \
25 third_party/libyuv/source/row_mips.cc \ 25 third_party/libyuv/source/row_mips.cc \
26 third_party/libyuv/source/row_neon.cc \ 26 third_party/libyuv/source/row_neon.cc \
27 third_party/libyuv/source/row_neon64.cc \ 27 third_party/libyuv/source/row_neon64.cc \
28 third_party/libyuv/source/row_posix.cc \ 28 third_party/libyuv/source/row_posix.cc \
29 third_party/libyuv/source/row_win.cc \ 29 third_party/libyuv/source/row_win.cc \
30 third_party/libyuv/source/scale.cc \ 30 third_party/libyuv/source/scale.cc \
31 third_party/libyuv/source/scale_common.cc \ 31 third_party/libyuv/source/scale_common.cc \
32 third_party/libyuv/source/scale_mips.cc \ 32 third_party/libyuv/source/scale_mips.cc \
33 third_party/libyuv/source/scale_neon.cc \ 33 third_party/libyuv/source/scale_neon.cc \
34 third_party/libyuv/source/scale_neon64.cc \
34 third_party/libyuv/source/scale_posix.cc \ 35 third_party/libyuv/source/scale_posix.cc \
35 third_party/libyuv/source/scale_win.cc \ 36 third_party/libyuv/source/scale_win.cc \
36 37
37 LIBWEBM_MUXER_SRCS += third_party/libwebm/mkvmuxer.cpp \ 38 LIBWEBM_MUXER_SRCS += third_party/libwebm/mkvmuxer.cpp \
38 third_party/libwebm/mkvmuxerutil.cpp \ 39 third_party/libwebm/mkvmuxerutil.cpp \
39 third_party/libwebm/mkvwriter.cpp \ 40 third_party/libwebm/mkvwriter.cpp \
40 third_party/libwebm/mkvmuxer.hpp \ 41 third_party/libwebm/mkvmuxer.hpp \
41 third_party/libwebm/mkvmuxertypes.hpp \ 42 third_party/libwebm/mkvmuxertypes.hpp \
42 third_party/libwebm/mkvmuxerutil.hpp \ 43 third_party/libwebm/mkvmuxerutil.hpp \
43 third_party/libwebm/mkvparser.hpp \ 44 third_party/libwebm/mkvparser.hpp \
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 vp8cx_set_ref.SRCS += tools_common.h tools_common.c 179 vp8cx_set_ref.SRCS += tools_common.h tools_common.c
179 vp8cx_set_ref.SRCS += video_common.h 180 vp8cx_set_ref.SRCS += video_common.h
180 vp8cx_set_ref.SRCS += video_writer.h video_writer.c 181 vp8cx_set_ref.SRCS += video_writer.h video_writer.c
181 vp8cx_set_ref.GUID = C5E31F7F-96F6-48BD-BD3E-10EBF6E8057A 182 vp8cx_set_ref.GUID = C5E31F7F-96F6-48BD-BD3E-10EBF6E8057A
182 vp8cx_set_ref.DESCRIPTION = VP8 set encoder reference frame 183 vp8cx_set_ref.DESCRIPTION = VP8 set encoder reference frame
183 184
184 185
185 ifeq ($(CONFIG_MULTI_RES_ENCODING),yes) 186 ifeq ($(CONFIG_MULTI_RES_ENCODING),yes)
186 ifeq ($(CONFIG_LIBYUV),yes) 187 ifeq ($(CONFIG_LIBYUV),yes)
187 EXAMPLES-$(CONFIG_VP8_ENCODER) += vp8_multi_resolution_encoder.c 188 EXAMPLES-$(CONFIG_VP8_ENCODER) += vp8_multi_resolution_encoder.c
189 vp8_multi_resolution_encoder.SRCS += ivfenc.h ivfenc.c
188 vp8_multi_resolution_encoder.SRCS += tools_common.h tools_common.c 190 vp8_multi_resolution_encoder.SRCS += tools_common.h tools_common.c
191 vp8_multi_resolution_encoder.SRCS += video_writer.h video_writer.c
189 vp8_multi_resolution_encoder.SRCS += $(LIBYUV_SRCS) 192 vp8_multi_resolution_encoder.SRCS += $(LIBYUV_SRCS)
190 vp8_multi_resolution_encoder.GUID = 04f8738e-63c8-423b-90fa-7c2703a374de 193 vp8_multi_resolution_encoder.GUID = 04f8738e-63c8-423b-90fa-7c2703a374de
191 vp8_multi_resolution_encoder.DESCRIPTION = VP8 Multiple-resolution Encoding 194 vp8_multi_resolution_encoder.DESCRIPTION = VP8 Multiple-resolution Encoding
192 endif 195 endif
193 endif 196 endif
194 197
195 # Handle extra library flags depending on codec configuration 198 # Handle extra library flags depending on codec configuration
196 199
197 # We should not link to math library (libm) on RVCT 200 # We should not link to math library (libm) on RVCT
198 # when building for bare-metal targets 201 # when building for bare-metal targets
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 "pieces like the samples are. Their source is included here"\ 353 "pieces like the samples are. Their source is included here"\
351 "for reference. The following utilities are included:" >> $@ 354 "for reference. The following utilities are included:" >> $@
352 @$(foreach ex,$(sort $(UTILS:.c=)),\ 355 @$(foreach ex,$(sort $(UTILS:.c=)),\
353 echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;) 356 echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;)
354 @echo "*/" >> $@ 357 @echo "*/" >> $@
355 358
356 CLEAN-OBJS += examples.doxy samples.dox $(ALL_EXAMPLES:.c=.dox) 359 CLEAN-OBJS += examples.doxy samples.dox $(ALL_EXAMPLES:.c=.dox)
357 DOCS-yes += examples.doxy samples.dox 360 DOCS-yes += examples.doxy samples.dox
358 examples.doxy: samples.dox $(ALL_EXAMPLES:.c=.dox) 361 examples.doxy: samples.dox $(ALL_EXAMPLES:.c=.dox)
359 @echo "INPUT += $^" > $@ 362 @echo "INPUT += $^" > $@
OLDNEW
« no previous file with comments | « source/libvpx/configure ('k') | source/libvpx/examples/set_maps.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698