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

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

Issue 290653003: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 7 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 vpxenc.SRCS += vpx_ports/mem_ops_aligned.h 60 vpxenc.SRCS += vpx_ports/mem_ops_aligned.h
61 vpxenc.SRCS += vpx_ports/vpx_timer.h 61 vpxenc.SRCS += vpx_ports/vpx_timer.h
62 vpxenc.SRCS += vpxstats.c vpxstats.h 62 vpxenc.SRCS += vpxstats.c vpxstats.h
63 vpxenc.SRCS += $(LIBYUV_SRCS) 63 vpxenc.SRCS += $(LIBYUV_SRCS)
64 ifeq ($(CONFIG_WEBM_IO),yes) 64 ifeq ($(CONFIG_WEBM_IO),yes)
65 vpxenc.SRCS += $(LIBWEBM_MUXER_SRCS) 65 vpxenc.SRCS += $(LIBWEBM_MUXER_SRCS)
66 vpxenc.SRCS += webmenc.cc webmenc.h 66 vpxenc.SRCS += webmenc.cc webmenc.h
67 endif 67 endif
68 vpxenc.GUID = 548DEC74-7A15-4B2B-AFC3-AA102E7C25C1 68 vpxenc.GUID = 548DEC74-7A15-4B2B-AFC3-AA102E7C25C1
69 vpxenc.DESCRIPTION = Full featured encoder 69 vpxenc.DESCRIPTION = Full featured encoder
70 EXAMPLES-$(CONFIG_VP9_ENCODER) += vp9_spatial_scalable_encoder.c 70 EXAMPLES-$(CONFIG_VP9_ENCODER) += vp9_spatial_svc_encoder.c
71 vp9_spatial_scalable_encoder.SRCS += args.c args.h 71 vp9_spatial_svc_encoder.SRCS += args.c args.h
72 vp9_spatial_scalable_encoder.SRCS += ivfenc.c ivfenc.h 72 vp9_spatial_svc_encoder.SRCS += ivfenc.c ivfenc.h
73 vp9_spatial_scalable_encoder.SRCS += tools_common.c tools_common.h 73 vp9_spatial_svc_encoder.SRCS += tools_common.c tools_common.h
74 vp9_spatial_scalable_encoder.SRCS += video_common.h 74 vp9_spatial_svc_encoder.SRCS += video_common.h
75 vp9_spatial_scalable_encoder.SRCS += video_writer.h video_writer.c 75 vp9_spatial_svc_encoder.SRCS += video_writer.h video_writer.c
76 vp9_spatial_scalable_encoder.SRCS += vpxstats.c vpxstats.h 76 vp9_spatial_svc_encoder.SRCS += vpxstats.c vpxstats.h
77 vp9_spatial_scalable_encoder.GUID = 4A38598D-627D-4505-9C7B-D4020C84100D 77 vp9_spatial_svc_encoder.GUID = 4A38598D-627D-4505-9C7B-D4020C84100D
78 vp9_spatial_scalable_encoder.DESCRIPTION = Spatial Scalable Encoder 78 vp9_spatial_svc_encoder.DESCRIPTION = VP9 Spatial SVC Encoder
79 79
80 ifneq ($(CONFIG_SHARED),yes) 80 ifneq ($(CONFIG_SHARED),yes)
81 EXAMPLES-$(CONFIG_VP9_ENCODER) += resize_util.c 81 EXAMPLES-$(CONFIG_VP9_ENCODER) += resize_util.c
82 endif 82 endif
83 83
84 # XMA example disabled for now, not used in VP8 84 EXAMPLES-$(CONFIG_ENCODERS) += vpx_temporal_svc_encoder.c
85 #UTILS-$(CONFIG_DECODERS) += example_xma.c 85 vpx_temporal_svc_encoder.SRCS += ivfenc.c ivfenc.h
86 #example_xma.GUID = A955FC4A-73F1-44F7-135E-30D84D32F022 86 vpx_temporal_svc_encoder.SRCS += tools_common.c tools_common.h
87 #example_xma.DESCRIPTION = External Memory Allocation mode usage 87 vpx_temporal_svc_encoder.SRCS += video_common.h
88 88 vpx_temporal_svc_encoder.SRCS += video_writer.h video_writer.c
89 EXAMPLES-$(CONFIG_ENCODERS) += vpx_temporal_scalable_patterns.c 89 vpx_temporal_svc_encoder.GUID = B18C08F2-A439-4502-A78E-849BE3D60947
90 vpx_temporal_scalable_patterns.SRCS += ivfenc.c ivfenc.h 90 vpx_temporal_svc_encoder.DESCRIPTION = Temporal SVC Encoder
91 vpx_temporal_scalable_patterns.SRCS += tools_common.c tools_common.h
92 vpx_temporal_scalable_patterns.SRCS += video_common.h
93 vpx_temporal_scalable_patterns.SRCS += video_writer.h video_writer.c
94 vpx_temporal_scalable_patterns.GUID = B18C08F2-A439-4502-A78E-849BE3D60947
95 vpx_temporal_scalable_patterns.DESCRIPTION = Temporal Scalability Encoder
96 EXAMPLES-$(CONFIG_VP8_DECODER) += simple_decoder.c 91 EXAMPLES-$(CONFIG_VP8_DECODER) += simple_decoder.c
97 simple_decoder.GUID = D3BBF1E9-2427-450D-BBFF-B2843C1D44CC 92 simple_decoder.GUID = D3BBF1E9-2427-450D-BBFF-B2843C1D44CC
98 simple_decoder.SRCS += ivfdec.h ivfdec.c 93 simple_decoder.SRCS += ivfdec.h ivfdec.c
99 simple_decoder.SRCS += tools_common.h tools_common.c 94 simple_decoder.SRCS += tools_common.h tools_common.c
100 simple_decoder.SRCS += video_common.h 95 simple_decoder.SRCS += video_common.h
101 simple_decoder.SRCS += video_reader.h video_reader.c 96 simple_decoder.SRCS += video_reader.h video_reader.c
102 simple_decoder.SRCS += vpx_ports/mem_ops.h 97 simple_decoder.SRCS += vpx_ports/mem_ops.h
103 simple_decoder.SRCS += vpx_ports/mem_ops_aligned.h 98 simple_decoder.SRCS += vpx_ports/mem_ops_aligned.h
104 simple_decoder.DESCRIPTION = Simplified decoder loop 99 simple_decoder.DESCRIPTION = Simplified decoder loop
105 EXAMPLES-$(CONFIG_VP8_DECODER) += postproc.c 100 EXAMPLES-$(CONFIG_VP8_DECODER) += postproc.c
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 EXAMPLES-$(CONFIG_VP8_ENCODER) += decode_with_drops.c 134 EXAMPLES-$(CONFIG_VP8_ENCODER) += decode_with_drops.c
140 decode_with_drops.SRCS += ivfdec.h ivfdec.c 135 decode_with_drops.SRCS += ivfdec.h ivfdec.c
141 decode_with_drops.SRCS += tools_common.h tools_common.c 136 decode_with_drops.SRCS += tools_common.h tools_common.c
142 decode_with_drops.SRCS += video_common.h 137 decode_with_drops.SRCS += video_common.h
143 decode_with_drops.SRCS += video_reader.h video_reader.c 138 decode_with_drops.SRCS += video_reader.h video_reader.c
144 decode_with_drops.SRCS += vpx_ports/mem_ops.h 139 decode_with_drops.SRCS += vpx_ports/mem_ops.h
145 decode_with_drops.SRCS += vpx_ports/mem_ops_aligned.h 140 decode_with_drops.SRCS += vpx_ports/mem_ops_aligned.h
146 endif 141 endif
147 decode_with_drops.GUID = CE5C53C4-8DDA-438A-86ED-0DDD3CDB8D26 142 decode_with_drops.GUID = CE5C53C4-8DDA-438A-86ED-0DDD3CDB8D26
148 decode_with_drops.DESCRIPTION = Drops frames while decoding 143 decode_with_drops.DESCRIPTION = Drops frames while decoding
149 ifeq ($(CONFIG_VP8_DECODER),yes)
150 EXAMPLES-$(CONFIG_ERROR_CONCEALMENT) += decode_with_partial_drops.c
151 endif
152 decode_with_partial_drops.GUID = 61C2D026-5754-46AC-916F-1343ECC5537E
153 decode_with_partial_drops.DESCRIPTION = Drops parts of frames while decoding
154 EXAMPLES-$(CONFIG_ENCODERS) += set_maps.c 144 EXAMPLES-$(CONFIG_ENCODERS) += set_maps.c
155 set_maps.SRCS += ivfenc.h ivfenc.c 145 set_maps.SRCS += ivfenc.h ivfenc.c
156 set_maps.SRCS += tools_common.h tools_common.c 146 set_maps.SRCS += tools_common.h tools_common.c
157 set_maps.SRCS += video_common.h 147 set_maps.SRCS += video_common.h
158 set_maps.SRCS += video_writer.h video_writer.c 148 set_maps.SRCS += video_writer.h video_writer.c
159 set_maps.GUID = ECB2D24D-98B8-4015-A465-A4AF3DCC145F 149 set_maps.GUID = ECB2D24D-98B8-4015-A465-A4AF3DCC145F
160 set_maps.DESCRIPTION = Set active and ROI maps 150 set_maps.DESCRIPTION = Set active and ROI maps
161 EXAMPLES-$(CONFIG_VP8_ENCODER) += vp8cx_set_ref.c 151 EXAMPLES-$(CONFIG_VP8_ENCODER) += vp8cx_set_ref.c
162 vp8cx_set_ref.SRCS += ivfenc.h ivfenc.c 152 vp8cx_set_ref.SRCS += ivfenc.h ivfenc.c
163 vp8cx_set_ref.SRCS += tools_common.h tools_common.c 153 vp8cx_set_ref.SRCS += tools_common.h tools_common.c
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 "pieces like the samples are. Their source is included here"\ 320 "pieces like the samples are. Their source is included here"\
331 "for reference. The following utilities are included:" >> $@ 321 "for reference. The following utilities are included:" >> $@
332 @$(foreach ex,$(sort $(UTILS:.c=)),\ 322 @$(foreach ex,$(sort $(UTILS:.c=)),\
333 echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;) 323 echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;)
334 @echo "*/" >> $@ 324 @echo "*/" >> $@
335 325
336 CLEAN-OBJS += examples.doxy samples.dox $(ALL_EXAMPLES:.c=.dox) 326 CLEAN-OBJS += examples.doxy samples.dox $(ALL_EXAMPLES:.c=.dox)
337 DOCS-yes += examples.doxy samples.dox 327 DOCS-yes += examples.doxy samples.dox
338 examples.doxy: samples.dox $(ALL_EXAMPLES:.c=.dox) 328 examples.doxy: samples.dox $(ALL_EXAMPLES:.c=.dox)
339 @echo "INPUT += $^" > $@ 329 @echo "INPUT += $^" > $@
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698