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

Side by Side Diff: source/libvpx/examples.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
« no previous file with comments | « source/libvpx/docs.mk ('k') | source/libvpx/examples/decode_to_md5.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
11 LIBYUV_SRCS += third_party/libyuv/include/libyuv/basic_types.h \ 11 LIBYUV_SRCS += third_party/libyuv/include/libyuv/basic_types.h \
12 third_party/libyuv/include/libyuv/cpu_id.h \ 12 third_party/libyuv/include/libyuv/cpu_id.h \
13 third_party/libyuv/include/libyuv/scale.h \ 13 third_party/libyuv/include/libyuv/scale.h \
14 third_party/libyuv/source/row.h \ 14 third_party/libyuv/source/row.h \
15 third_party/libyuv/source/scale.c \ 15 third_party/libyuv/source/scale.c \
16 third_party/libyuv/source/cpu_id.c 16 third_party/libyuv/source/cpu_id.c
17 17
18 # List of examples to build. UTILS are tools meant for distribution 18 # List of examples to build. UTILS are tools meant for distribution
19 # while EXAMPLES demonstrate specific portions of the API. 19 # while EXAMPLES demonstrate specific portions of the API.
20 UTILS-$(CONFIG_DECODERS) += vpxdec.c 20 UTILS-$(CONFIG_DECODERS) += vpxdec.c
21 vpxdec.SRCS += md5_utils.c md5_utils.h 21 vpxdec.SRCS += md5_utils.c md5_utils.h
22 vpxdec.SRCS += vpx_ports/mem_ops.h
23 vpxdec.SRCS += vpx_ports/mem_ops_aligned.h
22 vpxdec.SRCS += vpx_ports/vpx_timer.h 24 vpxdec.SRCS += vpx_ports/vpx_timer.h
23 vpxdec.SRCS += vpx/vpx_integer.h 25 vpxdec.SRCS += vpx/vpx_integer.h
24 vpxdec.SRCS += args.c args.h 26 vpxdec.SRCS += args.c args.h
25 vpxdec.SRCS += ivfdec.c ivfdec.h 27 vpxdec.SRCS += ivfdec.c ivfdec.h
26 vpxdec.SRCS += tools_common.c tools_common.h 28 vpxdec.SRCS += tools_common.c tools_common.h
27 vpxdec.SRCS += webmdec.c webmdec.h 29 vpxdec.SRCS += webmdec.c webmdec.h
28 vpxdec.SRCS += y4menc.c y4menc.h 30 vpxdec.SRCS += y4menc.c y4menc.h
29 vpxdec.SRCS += nestegg/halloc/halloc.h 31 vpxdec.SRCS += third_party/nestegg/halloc/halloc.h
30 vpxdec.SRCS += nestegg/halloc/src/align.h 32 vpxdec.SRCS += third_party/nestegg/halloc/src/align.h
31 vpxdec.SRCS += nestegg/halloc/src/halloc.c 33 vpxdec.SRCS += third_party/nestegg/halloc/src/halloc.c
32 vpxdec.SRCS += nestegg/halloc/src/hlist.h 34 vpxdec.SRCS += third_party/nestegg/halloc/src/hlist.h
33 vpxdec.SRCS += nestegg/halloc/src/macros.h 35 vpxdec.SRCS += third_party/nestegg/halloc/src/macros.h
34 vpxdec.SRCS += nestegg/include/nestegg/nestegg.h 36 vpxdec.SRCS += third_party/nestegg/include/nestegg/nestegg.h
35 vpxdec.SRCS += nestegg/src/nestegg.c 37 vpxdec.SRCS += third_party/nestegg/src/nestegg.c
36 vpxdec.SRCS += $(LIBYUV_SRCS) 38 vpxdec.SRCS += $(LIBYUV_SRCS)
37 vpxdec.GUID = BA5FE66F-38DD-E034-F542-B1578C5FB950 39 vpxdec.GUID = BA5FE66F-38DD-E034-F542-B1578C5FB950
38 vpxdec.DESCRIPTION = Full featured decoder 40 vpxdec.DESCRIPTION = Full featured decoder
39 UTILS-$(CONFIG_ENCODERS) += vpxenc.c 41 UTILS-$(CONFIG_ENCODERS) += vpxenc.c
40 vpxenc.SRCS += args.c args.h y4minput.c y4minput.h vpxenc.h 42 vpxenc.SRCS += args.c args.h y4minput.c y4minput.h vpxenc.h
41 vpxenc.SRCS += ivfdec.c ivfdec.h 43 vpxenc.SRCS += ivfdec.c ivfdec.h
42 vpxenc.SRCS += ivfenc.c ivfenc.h 44 vpxenc.SRCS += ivfenc.c ivfenc.h
43 vpxenc.SRCS += rate_hist.c rate_hist.h 45 vpxenc.SRCS += rate_hist.c rate_hist.h
44 vpxenc.SRCS += tools_common.c tools_common.h 46 vpxenc.SRCS += tools_common.c tools_common.h
45 vpxenc.SRCS += warnings.c warnings.h 47 vpxenc.SRCS += warnings.c warnings.h
46 vpxenc.SRCS += webmenc.c webmenc.h 48 vpxenc.SRCS += webmenc.c webmenc.h
47 vpxenc.SRCS += vpx_ports/mem_ops.h 49 vpxenc.SRCS += vpx_ports/mem_ops.h
48 vpxenc.SRCS += vpx_ports/mem_ops_aligned.h 50 vpxenc.SRCS += vpx_ports/mem_ops_aligned.h
49 vpxenc.SRCS += vpx_ports/vpx_timer.h 51 vpxenc.SRCS += vpx_ports/vpx_timer.h
50 vpxenc.SRCS += vpxstats.c vpxstats.h 52 vpxenc.SRCS += vpxstats.c vpxstats.h
51 vpxenc.SRCS += third_party/libmkv/EbmlIDs.h 53 vpxenc.SRCS += third_party/libmkv/EbmlIDs.h
52 vpxenc.SRCS += third_party/libmkv/EbmlWriter.c 54 vpxenc.SRCS += third_party/libmkv/EbmlWriter.c
53 vpxenc.SRCS += third_party/libmkv/EbmlWriter.h 55 vpxenc.SRCS += third_party/libmkv/EbmlWriter.h
54 vpxenc.SRCS += $(LIBYUV_SRCS) 56 vpxenc.SRCS += $(LIBYUV_SRCS)
55 vpxenc.GUID = 548DEC74-7A15-4B2B-AFC3-AA102E7C25C1 57 vpxenc.GUID = 548DEC74-7A15-4B2B-AFC3-AA102E7C25C1
56 vpxenc.DESCRIPTION = Full featured encoder 58 vpxenc.DESCRIPTION = Full featured encoder
57 UTILS-$(CONFIG_VP9_ENCODER) += vp9_spatial_scalable_encoder.c 59 EXAMPLES-$(CONFIG_VP9_ENCODER) += vp9_spatial_scalable_encoder.c
58 vp9_spatial_scalable_encoder.SRCS += args.c args.h 60 vp9_spatial_scalable_encoder.SRCS += args.c args.h
59 vp9_spatial_scalable_encoder.SRCS += ivfenc.c ivfenc.h 61 vp9_spatial_scalable_encoder.SRCS += ivfenc.c ivfenc.h
60 vp9_spatial_scalable_encoder.SRCS += tools_common.c tools_common.h 62 vp9_spatial_scalable_encoder.SRCS += tools_common.c tools_common.h
61 vp9_spatial_scalable_encoder.SRCS += video_common.h 63 vp9_spatial_scalable_encoder.SRCS += video_common.h
62 vp9_spatial_scalable_encoder.SRCS += video_writer.h video_writer.c 64 vp9_spatial_scalable_encoder.SRCS += video_writer.h video_writer.c
63 vp9_spatial_scalable_encoder.GUID = 4A38598D-627D-4505-9C7B-D4020C84100D 65 vp9_spatial_scalable_encoder.GUID = 4A38598D-627D-4505-9C7B-D4020C84100D
64 vp9_spatial_scalable_encoder.DESCRIPTION = Spatial Scalable Encoder 66 vp9_spatial_scalable_encoder.DESCRIPTION = Spatial Scalable Encoder
65 67
66 ifeq ($(CONFIG_SHARED),no) 68 ifeq ($(CONFIG_SHARED),no)
67 UTILS-$(CONFIG_VP9_ENCODER) += resize_util.c 69 UTILS-$(CONFIG_VP9_ENCODER) += resize_util.c
(...skipping 10 matching lines...) Expand all
78 vpx_temporal_scalable_patterns.SRCS += video_common.h 80 vpx_temporal_scalable_patterns.SRCS += video_common.h
79 vpx_temporal_scalable_patterns.SRCS += video_writer.h video_writer.c 81 vpx_temporal_scalable_patterns.SRCS += video_writer.h video_writer.c
80 vpx_temporal_scalable_patterns.GUID = B18C08F2-A439-4502-A78E-849BE3D60947 82 vpx_temporal_scalable_patterns.GUID = B18C08F2-A439-4502-A78E-849BE3D60947
81 vpx_temporal_scalable_patterns.DESCRIPTION = Temporal Scalability Encoder 83 vpx_temporal_scalable_patterns.DESCRIPTION = Temporal Scalability Encoder
82 EXAMPLES-$(CONFIG_VP8_DECODER) += simple_decoder.c 84 EXAMPLES-$(CONFIG_VP8_DECODER) += simple_decoder.c
83 simple_decoder.GUID = D3BBF1E9-2427-450D-BBFF-B2843C1D44CC 85 simple_decoder.GUID = D3BBF1E9-2427-450D-BBFF-B2843C1D44CC
84 simple_decoder.SRCS += ivfdec.h ivfdec.c 86 simple_decoder.SRCS += ivfdec.h ivfdec.c
85 simple_decoder.SRCS += tools_common.h tools_common.c 87 simple_decoder.SRCS += tools_common.h tools_common.c
86 simple_decoder.SRCS += video_common.h 88 simple_decoder.SRCS += video_common.h
87 simple_decoder.SRCS += video_reader.h video_reader.c 89 simple_decoder.SRCS += video_reader.h video_reader.c
90 simple_decoder.SRCS += vpx_ports/mem_ops.h
91 simple_decoder.SRCS += vpx_ports/mem_ops_aligned.h
88 simple_decoder.DESCRIPTION = Simplified decoder loop 92 simple_decoder.DESCRIPTION = Simplified decoder loop
89 EXAMPLES-$(CONFIG_VP8_DECODER) += postproc.c 93 EXAMPLES-$(CONFIG_VP8_DECODER) += postproc.c
90 postproc.SRCS += ivfdec.h ivfdec.c 94 postproc.SRCS += ivfdec.h ivfdec.c
91 postproc.SRCS += tools_common.h tools_common.c 95 postproc.SRCS += tools_common.h tools_common.c
92 postproc.SRCS += video_common.h 96 postproc.SRCS += video_common.h
93 postproc.SRCS += video_reader.h video_reader.c 97 postproc.SRCS += video_reader.h video_reader.c
98 postproc.SRCS += vpx_ports/mem_ops.h
99 postproc.SRCS += vpx_ports/mem_ops_aligned.h
94 postproc.GUID = 65E33355-F35E-4088-884D-3FD4905881D7 100 postproc.GUID = 65E33355-F35E-4088-884D-3FD4905881D7
95 postproc.DESCRIPTION = Decoder postprocessor control 101 postproc.DESCRIPTION = Decoder postprocessor control
96 EXAMPLES-$(CONFIG_VP8_DECODER) += decode_to_md5.c 102 EXAMPLES-$(CONFIG_VP8_DECODER) += decode_to_md5.c
97 decode_to_md5.SRCS += md5_utils.h md5_utils.c 103 decode_to_md5.SRCS += md5_utils.h md5_utils.c
98 decode_to_md5.SRCS += ivfdec.h ivfdec.c 104 decode_to_md5.SRCS += ivfdec.h ivfdec.c
99 decode_to_md5.SRCS += tools_common.h tools_common.c 105 decode_to_md5.SRCS += tools_common.h tools_common.c
100 decode_to_md5.SRCS += video_common.h 106 decode_to_md5.SRCS += video_common.h
101 decode_to_md5.SRCS += video_reader.h video_reader.c 107 decode_to_md5.SRCS += video_reader.h video_reader.c
108 decode_to_md5.SRCS += vpx_ports/mem_ops.h
109 decode_to_md5.SRCS += vpx_ports/mem_ops_aligned.h
102 decode_to_md5.GUID = 59120B9B-2735-4BFE-B022-146CA340FE42 110 decode_to_md5.GUID = 59120B9B-2735-4BFE-B022-146CA340FE42
103 decode_to_md5.DESCRIPTION = Frame by frame MD5 checksum 111 decode_to_md5.DESCRIPTION = Frame by frame MD5 checksum
104 EXAMPLES-$(CONFIG_VP8_ENCODER) += simple_encoder.c 112 EXAMPLES-$(CONFIG_VP8_ENCODER) += simple_encoder.c
105 simple_encoder.SRCS += ivfenc.h ivfenc.c 113 simple_encoder.SRCS += ivfenc.h ivfenc.c
106 simple_encoder.SRCS += tools_common.h tools_common.c 114 simple_encoder.SRCS += tools_common.h tools_common.c
107 simple_encoder.SRCS += video_common.h 115 simple_encoder.SRCS += video_common.h
108 simple_encoder.SRCS += video_writer.h video_writer.c 116 simple_encoder.SRCS += video_writer.h video_writer.c
109 simple_encoder.GUID = 4607D299-8A71-4D2C-9B1D-071899B6FBFD 117 simple_encoder.GUID = 4607D299-8A71-4D2C-9B1D-071899B6FBFD
110 simple_encoder.DESCRIPTION = Simplified encoder loop 118 simple_encoder.DESCRIPTION = Simplified encoder loop
111 EXAMPLES-$(CONFIG_VP8_ENCODER) += twopass_encoder.c 119 EXAMPLES-$(CONFIG_VP8_ENCODER) += twopass_encoder.c
112 twopass_encoder.SRCS += ivfenc.h ivfenc.c 120 twopass_encoder.SRCS += ivfenc.h ivfenc.c
113 twopass_encoder.SRCS += tools_common.h tools_common.c 121 twopass_encoder.SRCS += tools_common.h tools_common.c
114 twopass_encoder.SRCS += video_common.h 122 twopass_encoder.SRCS += video_common.h
115 twopass_encoder.SRCS += video_writer.h video_writer.c 123 twopass_encoder.SRCS += video_writer.h video_writer.c
116 twopass_encoder.GUID = 73494FA6-4AF9-4763-8FBB-265C92402FD8 124 twopass_encoder.GUID = 73494FA6-4AF9-4763-8FBB-265C92402FD8
117 twopass_encoder.DESCRIPTION = Two-pass encoder loop 125 twopass_encoder.DESCRIPTION = Two-pass encoder loop
118 EXAMPLES-$(CONFIG_VP8_ENCODER) += force_keyframe.c 126 EXAMPLES-$(CONFIG_VP8_ENCODER) += force_keyframe.c
119 force_keyframe.GUID = 3C67CADF-029F-4C86-81F5-D6D4F51177F0 127 force_keyframe.GUID = 3C67CADF-029F-4C86-81F5-D6D4F51177F0
120 force_keyframe.DESCRIPTION = Force generation of keyframes 128 force_keyframe.DESCRIPTION = Force generation of keyframes
121 ifeq ($(CONFIG_DECODERS),yes) 129 ifeq ($(CONFIG_DECODERS),yes)
122 EXAMPLES-$(CONFIG_VP8_ENCODER) += decode_with_drops.c 130 EXAMPLES-$(CONFIG_VP8_ENCODER) += decode_with_drops.c
123 decode_with_drops.SRCS += ivfdec.h ivfdec.c 131 decode_with_drops.SRCS += ivfdec.h ivfdec.c
124 decode_with_drops.SRCS += tools_common.h tools_common.c 132 decode_with_drops.SRCS += tools_common.h tools_common.c
125 decode_with_drops.SRCS += video_common.h 133 decode_with_drops.SRCS += video_common.h
126 decode_with_drops.SRCS += video_reader.h video_reader.c 134 decode_with_drops.SRCS += video_reader.h video_reader.c
135 decode_with_drops.SRCS += vpx_ports/mem_ops.h
136 decode_with_drops.SRCS += vpx_ports/mem_ops_aligned.h
127 endif 137 endif
128 decode_with_drops.GUID = CE5C53C4-8DDA-438A-86ED-0DDD3CDB8D26 138 decode_with_drops.GUID = CE5C53C4-8DDA-438A-86ED-0DDD3CDB8D26
129 decode_with_drops.DESCRIPTION = Drops frames while decoding 139 decode_with_drops.DESCRIPTION = Drops frames while decoding
130 ifeq ($(CONFIG_VP8_DECODER),yes) 140 ifeq ($(CONFIG_VP8_DECODER),yes)
131 EXAMPLES-$(CONFIG_ERROR_CONCEALMENT) += decode_with_partial_drops.c 141 EXAMPLES-$(CONFIG_ERROR_CONCEALMENT) += decode_with_partial_drops.c
132 endif 142 endif
133 decode_with_partial_drops.GUID = 61C2D026-5754-46AC-916F-1343ECC5537E 143 decode_with_partial_drops.GUID = 61C2D026-5754-46AC-916F-1343ECC5537E
134 decode_with_partial_drops.DESCRIPTION = Drops parts of frames while decoding 144 decode_with_partial_drops.DESCRIPTION = Drops parts of frames while decoding
135 EXAMPLES-$(CONFIG_VP8_ENCODER) += error_resilient.c
136 error_resilient.GUID = DF5837B9-4145-4F92-A031-44E4F832E00C
137 error_resilient.DESCRIPTION = Error Resiliency Feature
138
139 EXAMPLES-$(CONFIG_VP8_ENCODER) += vp8_set_maps.c 145 EXAMPLES-$(CONFIG_VP8_ENCODER) += vp8_set_maps.c
146 vp8_set_maps.SRCS += ivfenc.h ivfenc.c
147 vp8_set_maps.SRCS += tools_common.h tools_common.c
148 vp8_set_maps.SRCS += video_common.h
149 vp8_set_maps.SRCS += video_writer.h video_writer.c
140 vp8_set_maps.GUID = ECB2D24D-98B8-4015-A465-A4AF3DCC145F 150 vp8_set_maps.GUID = ECB2D24D-98B8-4015-A465-A4AF3DCC145F
141 vp8_set_maps.DESCRIPTION = VP8 set active and ROI maps 151 vp8_set_maps.DESCRIPTION = VP8 set active and ROI maps
142 EXAMPLES-$(CONFIG_VP8_ENCODER) += vp8cx_set_ref.c 152 EXAMPLES-$(CONFIG_VP8_ENCODER) += vp8cx_set_ref.c
143 vp8cx_set_ref.GUID = C5E31F7F-96F6-48BD-BD3E-10EBF6E8057A 153 vp8cx_set_ref.GUID = C5E31F7F-96F6-48BD-BD3E-10EBF6E8057A
144 vp8cx_set_ref.DESCRIPTION = VP8 set encoder reference frame 154 vp8cx_set_ref.DESCRIPTION = VP8 set encoder reference frame
145 155
146 156
147 ifeq ($(CONFIG_MULTI_RES_ENCODING),yes) 157 ifeq ($(CONFIG_MULTI_RES_ENCODING),yes)
148 EXAMPLES-$(CONFIG_VP8_DECODER) += vp8_multi_resolution_encoder.c 158 EXAMPLES-$(CONFIG_VP8_DECODER) += vp8_multi_resolution_encoder.c
149 vp8_multi_resolution_encoder.SRCS += $(LIBYUV_SRCS) 159 vp8_multi_resolution_encoder.SRCS += $(LIBYUV_SRCS)
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 $$(if $$(CONFIG_STATIC_MSVCRT),--static-crt) \ 284 $$(if $$(CONFIG_STATIC_MSVCRT),--static-crt) \
275 --out=$$@ $$(INTERNAL_CFLAGS) $$(CFLAGS) \ 285 --out=$$@ $$(INTERNAL_CFLAGS) $$(CFLAGS) \
276 $$(INTERNAL_LDFLAGS) $$(LDFLAGS) -l$$(CODEC_LIB) $$^ 286 $$(INTERNAL_LDFLAGS) $$(LDFLAGS) -l$$(CODEC_LIB) $$^
277 endef 287 endef
278 ALL_EXAMPLES_BASENAME := $(notdir $(ALL_EXAMPLES)) 288 ALL_EXAMPLES_BASENAME := $(notdir $(ALL_EXAMPLES))
279 PROJECTS-$(CONFIG_MSVS) += $(ALL_EXAMPLES_BASENAME:.c=.$(VCPROJ_SFX)) 289 PROJECTS-$(CONFIG_MSVS) += $(ALL_EXAMPLES_BASENAME:.c=.$(VCPROJ_SFX))
280 INSTALL-BINS-$(CONFIG_MSVS) += $(foreach p,$(VS_PLATFORMS),\ 290 INSTALL-BINS-$(CONFIG_MSVS) += $(foreach p,$(VS_PLATFORMS),\
281 $(addprefix bin/$(p)/,$(ALL_EXAMPLES_BASENAME:.c= .exe))) 291 $(addprefix bin/$(p)/,$(ALL_EXAMPLES_BASENAME:.c= .exe)))
282 $(foreach proj,$(call enabled,PROJECTS),\ 292 $(foreach proj,$(call enabled,PROJECTS),\
283 $(eval $(call vcproj_template,$(proj)))) 293 $(eval $(call vcproj_template,$(proj))))
294
295 #
296 # Documentation Rules
297 #
298 %.dox: %.c
299 @echo " [DOXY] $@"
300 @echo "/*!\page example_$(@F:.dox=) $(@F:.dox=)" > $@
301 @echo " \includelineno $(<F)" >> $@
302 @echo "*/" >> $@
303
304 samples.dox: examples.mk
305 @echo " [DOXY] $@"
306 @echo "/*!\page samples Sample Code" > $@
307 @echo " This SDK includes a number of sample applications."\
308 "Each sample documents a feature of the SDK in both prose"\
309 "and the associated C code."\
310 "The following samples are included: ">>$@
311 @$(foreach ex,$(sort $(notdir $(EXAMPLES:.c=))),\
312 echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;)
313 @echo >> $@
314 @echo " In addition, the SDK contains a number of utilities."\
315 "Since these utilities are built upon the concepts described"\
316 "in the sample code listed above, they are not documented in"\
317 "pieces like the samples are. Their source is included here"\
318 "for reference. The following utilities are included:" >> $@
319 @$(foreach ex,$(sort $(UTILS:.c=)),\
320 echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;)
321 @echo "*/" >> $@
322
323 CLEAN-OBJS += examples.doxy samples.dox $(ALL_EXAMPLES:.c=.dox)
324 DOCS-yes += examples.doxy samples.dox
325 examples.doxy: samples.dox $(ALL_EXAMPLES:.c=.dox)
326 @echo "INPUT += $^" > $@
OLDNEW
« no previous file with comments | « source/libvpx/docs.mk ('k') | source/libvpx/examples/decode_to_md5.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698