John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1 | ## |
John Koleszar | c2140b8 | 2010-09-09 08:16:39 -0400 | [diff] [blame] | 2 | ## Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 3 | ## |
John Koleszar | 94c52e4 | 2010-06-18 12:39:21 -0400 | [diff] [blame] | 4 | ## Use of this source code is governed by a BSD-style license |
John Koleszar | 09202d8 | 2010-06-04 16:19:40 -0400 | [diff] [blame] | 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 |
John Koleszar | 94c52e4 | 2010-06-18 12:39:21 -0400 | [diff] [blame] | 7 | ## in the file PATENTS. All contributing project authors may |
John Koleszar | 09202d8 | 2010-06-04 16:19:40 -0400 | [diff] [blame] | 8 | ## be found in the AUTHORS file in the root of the source tree. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 9 | ## |
| 10 | |
John Koleszar | 7dfec96 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 11 | LIBYUV_SRCS += third_party/libyuv/include/libyuv/basic_types.h \ |
James Zern | 3a7d467 | 2014-08-10 16:15:18 -0700 | [diff] [blame] | 12 | third_party/libyuv/include/libyuv/convert.h \ |
| 13 | third_party/libyuv/include/libyuv/convert_argb.h \ |
| 14 | third_party/libyuv/include/libyuv/convert_from.h \ |
John Koleszar | 7dfec96 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 15 | third_party/libyuv/include/libyuv/cpu_id.h \ |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 16 | third_party/libyuv/include/libyuv/planar_functions.h \ |
James Zern | 3a7d467 | 2014-08-10 16:15:18 -0700 | [diff] [blame] | 17 | third_party/libyuv/include/libyuv/rotate.h \ |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 18 | third_party/libyuv/include/libyuv/row.h \ |
John Koleszar | 7dfec96 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 19 | third_party/libyuv/include/libyuv/scale.h \ |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 20 | third_party/libyuv/include/libyuv/scale_row.h \ |
| 21 | third_party/libyuv/source/cpu_id.cc \ |
| 22 | third_party/libyuv/source/planar_functions.cc \ |
| 23 | third_party/libyuv/source/row_any.cc \ |
| 24 | third_party/libyuv/source/row_common.cc \ |
| 25 | third_party/libyuv/source/row_mips.cc \ |
| 26 | third_party/libyuv/source/row_neon.cc \ |
James Zern | 3a7d467 | 2014-08-10 16:15:18 -0700 | [diff] [blame] | 27 | third_party/libyuv/source/row_neon64.cc \ |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 28 | third_party/libyuv/source/row_posix.cc \ |
| 29 | third_party/libyuv/source/row_win.cc \ |
James Zern | 3a7d467 | 2014-08-10 16:15:18 -0700 | [diff] [blame] | 30 | third_party/libyuv/source/scale.cc \ |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 31 | third_party/libyuv/source/scale_common.cc \ |
| 32 | third_party/libyuv/source/scale_mips.cc \ |
| 33 | third_party/libyuv/source/scale_neon.cc \ |
James Zern | 2f5e0fa | 2014-08-22 18:16:44 -0700 | [diff] [blame] | 34 | third_party/libyuv/source/scale_neon64.cc \ |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 35 | third_party/libyuv/source/scale_posix.cc \ |
James Zern | 3a7d467 | 2014-08-10 16:15:18 -0700 | [diff] [blame] | 36 | third_party/libyuv/source/scale_win.cc \ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 37 | |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 38 | LIBWEBM_MUXER_SRCS += third_party/libwebm/mkvmuxer.cpp \ |
| 39 | third_party/libwebm/mkvmuxerutil.cpp \ |
| 40 | third_party/libwebm/mkvwriter.cpp \ |
| 41 | third_party/libwebm/mkvmuxer.hpp \ |
| 42 | third_party/libwebm/mkvmuxertypes.hpp \ |
| 43 | third_party/libwebm/mkvmuxerutil.hpp \ |
| 44 | third_party/libwebm/mkvparser.hpp \ |
| 45 | third_party/libwebm/mkvwriter.hpp \ |
| 46 | third_party/libwebm/webmids.hpp |
| 47 | |
Vignesh Venkatasubramanian | dbd2471 | 2014-04-03 00:41:14 -0700 | [diff] [blame] | 48 | LIBWEBM_PARSER_SRCS = third_party/libwebm/mkvparser.cpp \ |
| 49 | third_party/libwebm/mkvreader.cpp \ |
| 50 | third_party/libwebm/mkvparser.hpp \ |
| 51 | third_party/libwebm/mkvreader.hpp |
| 52 | |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 53 | # List of examples to build. UTILS are tools meant for distribution |
| 54 | # while EXAMPLES demonstrate specific portions of the API. |
John Koleszar | ea68ee0 | 2010-10-21 15:02:10 -0400 | [diff] [blame] | 55 | UTILS-$(CONFIG_DECODERS) += vpxdec.c |
| 56 | vpxdec.SRCS += md5_utils.c md5_utils.h |
Dmitry Kovalev | 4334c07 | 2014-02-26 16:32:09 -0800 | [diff] [blame] | 57 | vpxdec.SRCS += vpx_ports/mem_ops.h |
| 58 | vpxdec.SRCS += vpx_ports/mem_ops_aligned.h |
Johann | cad0eca | 2015-05-07 16:41:33 -0700 | [diff] [blame] | 59 | vpxdec.SRCS += vpx_ports/msvc.h |
John Koleszar | ea68ee0 | 2010-10-21 15:02:10 -0400 | [diff] [blame] | 60 | vpxdec.SRCS += vpx_ports/vpx_timer.h |
| 61 | vpxdec.SRCS += vpx/vpx_integer.h |
Attila Nagy | 1a7d25a | 2011-09-15 15:34:12 +0300 | [diff] [blame] | 62 | vpxdec.SRCS += args.c args.h |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 63 | vpxdec.SRCS += ivfdec.c ivfdec.h |
John Koleszar | c377bf0 | 2010-11-02 09:11:57 -0400 | [diff] [blame] | 64 | vpxdec.SRCS += tools_common.c tools_common.h |
Dmitry Kovalev | 5ab6358 | 2014-01-17 17:02:37 -0800 | [diff] [blame] | 65 | vpxdec.SRCS += y4menc.c y4menc.h |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 66 | ifeq ($(CONFIG_LIBYUV),yes) |
| 67 | vpxdec.SRCS += $(LIBYUV_SRCS) |
| 68 | endif |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 69 | ifeq ($(CONFIG_WEBM_IO),yes) |
Vignesh Venkatasubramanian | dbd2471 | 2014-04-03 00:41:14 -0700 | [diff] [blame] | 70 | vpxdec.SRCS += $(LIBWEBM_PARSER_SRCS) |
| 71 | vpxdec.SRCS += webmdec.cc webmdec.h |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 72 | endif |
John Koleszar | ea68ee0 | 2010-10-21 15:02:10 -0400 | [diff] [blame] | 73 | vpxdec.GUID = BA5FE66F-38DD-E034-F542-B1578C5FB950 |
| 74 | vpxdec.DESCRIPTION = Full featured decoder |
| 75 | UTILS-$(CONFIG_ENCODERS) += vpxenc.c |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 76 | vpxenc.SRCS += args.c args.h y4minput.c y4minput.h vpxenc.h |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 77 | vpxenc.SRCS += ivfdec.c ivfdec.h |
| 78 | vpxenc.SRCS += ivfenc.c ivfenc.h |
Dmitry Kovalev | f11da2b | 2014-01-29 12:28:29 -0800 | [diff] [blame] | 79 | vpxenc.SRCS += rate_hist.c rate_hist.h |
John Koleszar | c377bf0 | 2010-11-02 09:11:57 -0400 | [diff] [blame] | 80 | vpxenc.SRCS += tools_common.c tools_common.h |
Tom Finegan | 249366b | 2013-11-25 12:05:19 -0800 | [diff] [blame] | 81 | vpxenc.SRCS += warnings.c warnings.h |
Attila Nagy | 1a7d25a | 2011-09-15 15:34:12 +0300 | [diff] [blame] | 82 | vpxenc.SRCS += vpx_ports/mem_ops.h |
John Koleszar | ea68ee0 | 2010-10-21 15:02:10 -0400 | [diff] [blame] | 83 | vpxenc.SRCS += vpx_ports/mem_ops_aligned.h |
Johann | cad0eca | 2015-05-07 16:41:33 -0700 | [diff] [blame] | 84 | vpxenc.SRCS += vpx_ports/msvc.h |
Johann | c459d37 | 2012-04-02 15:08:18 -0700 | [diff] [blame] | 85 | vpxenc.SRCS += vpx_ports/vpx_timer.h |
Tom Finegan | 78cb2e6 | 2013-11-07 21:28:45 -0800 | [diff] [blame] | 86 | vpxenc.SRCS += vpxstats.c vpxstats.h |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 87 | ifeq ($(CONFIG_LIBYUV),yes) |
| 88 | vpxenc.SRCS += $(LIBYUV_SRCS) |
| 89 | endif |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 90 | ifeq ($(CONFIG_WEBM_IO),yes) |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 91 | vpxenc.SRCS += $(LIBWEBM_MUXER_SRCS) |
| 92 | vpxenc.SRCS += webmenc.cc webmenc.h |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 93 | endif |
John Koleszar | ea68ee0 | 2010-10-21 15:02:10 -0400 | [diff] [blame] | 94 | vpxenc.GUID = 548DEC74-7A15-4B2B-AFC3-AA102E7C25C1 |
| 95 | vpxenc.DESCRIPTION = Full featured encoder |
James Zern | f12ebfc | 2014-05-14 19:45:20 -0700 | [diff] [blame] | 96 | ifeq ($(CONFIG_SPATIAL_SVC),yes) |
| 97 | EXAMPLES-$(CONFIG_VP9_ENCODER) += vp9_spatial_svc_encoder.c |
| 98 | vp9_spatial_svc_encoder.SRCS += args.c args.h |
| 99 | vp9_spatial_svc_encoder.SRCS += ivfenc.c ivfenc.h |
| 100 | vp9_spatial_svc_encoder.SRCS += tools_common.c tools_common.h |
| 101 | vp9_spatial_svc_encoder.SRCS += video_common.h |
| 102 | vp9_spatial_svc_encoder.SRCS += video_writer.h video_writer.c |
Johann | cad0eca | 2015-05-07 16:41:33 -0700 | [diff] [blame] | 103 | vp9_spatial_svc_encoder.SRCS += vpx_ports/msvc.h |
James Zern | f12ebfc | 2014-05-14 19:45:20 -0700 | [diff] [blame] | 104 | vp9_spatial_svc_encoder.SRCS += vpxstats.c vpxstats.h |
| 105 | vp9_spatial_svc_encoder.GUID = 4A38598D-627D-4505-9C7B-D4020C84100D |
| 106 | vp9_spatial_svc_encoder.DESCRIPTION = VP9 Spatial SVC Encoder |
| 107 | endif |
John Koleszar | ea68ee0 | 2010-10-21 15:02:10 -0400 | [diff] [blame] | 108 | |
Deb Mukherjee | 4298be3 | 2014-04-03 14:06:20 -0700 | [diff] [blame] | 109 | ifneq ($(CONFIG_SHARED),yes) |
James Zern | 98e16b1 | 2014-03-03 18:03:23 -0800 | [diff] [blame] | 110 | EXAMPLES-$(CONFIG_VP9_ENCODER) += resize_util.c |
Deb Mukherjee | cacea00 | 2014-01-23 14:53:53 -0800 | [diff] [blame] | 111 | endif |
| 112 | |
Tom Finegan | a77d6d0 | 2014-05-14 11:21:15 -0700 | [diff] [blame] | 113 | EXAMPLES-$(CONFIG_ENCODERS) += vpx_temporal_svc_encoder.c |
| 114 | vpx_temporal_svc_encoder.SRCS += ivfenc.c ivfenc.h |
| 115 | vpx_temporal_svc_encoder.SRCS += tools_common.c tools_common.h |
| 116 | vpx_temporal_svc_encoder.SRCS += video_common.h |
| 117 | vpx_temporal_svc_encoder.SRCS += video_writer.h video_writer.c |
Johann | cad0eca | 2015-05-07 16:41:33 -0700 | [diff] [blame] | 118 | vpx_temporal_svc_encoder.SRCS += vpx_ports/msvc.h |
Tom Finegan | a77d6d0 | 2014-05-14 11:21:15 -0700 | [diff] [blame] | 119 | vpx_temporal_svc_encoder.GUID = B18C08F2-A439-4502-A78E-849BE3D60947 |
| 120 | vpx_temporal_svc_encoder.DESCRIPTION = Temporal SVC Encoder |
Dmitry Kovalev | 5ba8c79 | 2014-09-11 15:46:37 -0700 | [diff] [blame] | 121 | EXAMPLES-$(CONFIG_DECODERS) += simple_decoder.c |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 122 | simple_decoder.GUID = D3BBF1E9-2427-450D-BBFF-B2843C1D44CC |
Dmitry Kovalev | 7ec2769 | 2014-01-27 13:40:29 -0800 | [diff] [blame] | 123 | simple_decoder.SRCS += ivfdec.h ivfdec.c |
| 124 | simple_decoder.SRCS += tools_common.h tools_common.c |
Dmitry Kovalev | 37e6fd3 | 2014-02-05 18:34:46 -0800 | [diff] [blame] | 125 | simple_decoder.SRCS += video_common.h |
| 126 | simple_decoder.SRCS += video_reader.h video_reader.c |
Dmitry Kovalev | 4334c07 | 2014-02-26 16:32:09 -0800 | [diff] [blame] | 127 | simple_decoder.SRCS += vpx_ports/mem_ops.h |
| 128 | simple_decoder.SRCS += vpx_ports/mem_ops_aligned.h |
Johann | cad0eca | 2015-05-07 16:41:33 -0700 | [diff] [blame] | 129 | simple_decoder.SRCS += vpx_ports/msvc.h |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 130 | simple_decoder.DESCRIPTION = Simplified decoder loop |
Dmitry Kovalev | 5ba8c79 | 2014-09-11 15:46:37 -0700 | [diff] [blame] | 131 | EXAMPLES-$(CONFIG_DECODERS) += postproc.c |
Dmitry Kovalev | 2e862ce | 2014-01-28 11:27:30 -0800 | [diff] [blame] | 132 | postproc.SRCS += ivfdec.h ivfdec.c |
| 133 | postproc.SRCS += tools_common.h tools_common.c |
Dmitry Kovalev | 37e6fd3 | 2014-02-05 18:34:46 -0800 | [diff] [blame] | 134 | postproc.SRCS += video_common.h |
| 135 | postproc.SRCS += video_reader.h video_reader.c |
Dmitry Kovalev | 4334c07 | 2014-02-26 16:32:09 -0800 | [diff] [blame] | 136 | postproc.SRCS += vpx_ports/mem_ops.h |
| 137 | postproc.SRCS += vpx_ports/mem_ops_aligned.h |
Johann | cad0eca | 2015-05-07 16:41:33 -0700 | [diff] [blame] | 138 | postproc.SRCS += vpx_ports/msvc.h |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 139 | postproc.GUID = 65E33355-F35E-4088-884D-3FD4905881D7 |
| 140 | postproc.DESCRIPTION = Decoder postprocessor control |
Dmitry Kovalev | 5ba8c79 | 2014-09-11 15:46:37 -0700 | [diff] [blame] | 141 | EXAMPLES-$(CONFIG_DECODERS) += decode_to_md5.c |
Dmitry Kovalev | c2b3368 | 2014-01-24 11:20:09 -0800 | [diff] [blame] | 142 | decode_to_md5.SRCS += md5_utils.h md5_utils.c |
| 143 | decode_to_md5.SRCS += ivfdec.h ivfdec.c |
| 144 | decode_to_md5.SRCS += tools_common.h tools_common.c |
Dmitry Kovalev | 37e6fd3 | 2014-02-05 18:34:46 -0800 | [diff] [blame] | 145 | decode_to_md5.SRCS += video_common.h |
| 146 | decode_to_md5.SRCS += video_reader.h video_reader.c |
Dmitry Kovalev | 4334c07 | 2014-02-26 16:32:09 -0800 | [diff] [blame] | 147 | decode_to_md5.SRCS += vpx_ports/mem_ops.h |
| 148 | decode_to_md5.SRCS += vpx_ports/mem_ops_aligned.h |
Johann | cad0eca | 2015-05-07 16:41:33 -0700 | [diff] [blame] | 149 | decode_to_md5.SRCS += vpx_ports/msvc.h |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 150 | decode_to_md5.GUID = 59120B9B-2735-4BFE-B022-146CA340FE42 |
| 151 | decode_to_md5.DESCRIPTION = Frame by frame MD5 checksum |
Dmitry Kovalev | 5ba8c79 | 2014-09-11 15:46:37 -0700 | [diff] [blame] | 152 | EXAMPLES-$(CONFIG_ENCODERS) += simple_encoder.c |
Dmitry Kovalev | 37e6fd3 | 2014-02-05 18:34:46 -0800 | [diff] [blame] | 153 | simple_encoder.SRCS += ivfenc.h ivfenc.c |
| 154 | simple_encoder.SRCS += tools_common.h tools_common.c |
| 155 | simple_encoder.SRCS += video_common.h |
| 156 | simple_encoder.SRCS += video_writer.h video_writer.c |
Johann | cad0eca | 2015-05-07 16:41:33 -0700 | [diff] [blame] | 157 | simple_encoder.SRCS += vpx_ports/msvc.h |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 158 | simple_encoder.GUID = 4607D299-8A71-4D2C-9B1D-071899B6FBFD |
| 159 | simple_encoder.DESCRIPTION = Simplified encoder loop |
Dmitry Kovalev | cb1f97e | 2014-09-09 18:51:41 -0700 | [diff] [blame] | 160 | EXAMPLES-$(CONFIG_VP9_ENCODER) += vp9_lossless_encoder.c |
| 161 | vp9_lossless_encoder.SRCS += ivfenc.h ivfenc.c |
| 162 | vp9_lossless_encoder.SRCS += tools_common.h tools_common.c |
| 163 | vp9_lossless_encoder.SRCS += video_common.h |
| 164 | vp9_lossless_encoder.SRCS += video_writer.h video_writer.c |
Johann | cad0eca | 2015-05-07 16:41:33 -0700 | [diff] [blame] | 165 | vp9_lossless_encoder.SRCS += vpx_ports/msvc.h |
Dmitry Kovalev | cb1f97e | 2014-09-09 18:51:41 -0700 | [diff] [blame] | 166 | vp9_lossless_encoder.GUID = B63C7C88-5348-46DC-A5A6-CC151EF93366 |
| 167 | vp9_lossless_encoder.DESCRIPTION = Simplified lossless VP9 encoder |
Dmitry Kovalev | 5ba8c79 | 2014-09-11 15:46:37 -0700 | [diff] [blame] | 168 | EXAMPLES-$(CONFIG_ENCODERS) += twopass_encoder.c |
Dmitry Kovalev | 592936b | 2014-02-07 11:37:39 -0800 | [diff] [blame] | 169 | twopass_encoder.SRCS += ivfenc.h ivfenc.c |
| 170 | twopass_encoder.SRCS += tools_common.h tools_common.c |
| 171 | twopass_encoder.SRCS += video_common.h |
| 172 | twopass_encoder.SRCS += video_writer.h video_writer.c |
Johann | cad0eca | 2015-05-07 16:41:33 -0700 | [diff] [blame] | 173 | twopass_encoder.SRCS += vpx_ports/msvc.h |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 174 | twopass_encoder.GUID = 73494FA6-4AF9-4763-8FBB-265C92402FD8 |
| 175 | twopass_encoder.DESCRIPTION = Two-pass encoder loop |
Dmitry Kovalev | 5ba8c79 | 2014-09-11 15:46:37 -0700 | [diff] [blame] | 176 | EXAMPLES-$(CONFIG_DECODERS) += decode_with_drops.c |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 177 | decode_with_drops.SRCS += ivfdec.h ivfdec.c |
| 178 | decode_with_drops.SRCS += tools_common.h tools_common.c |
Dmitry Kovalev | 37e6fd3 | 2014-02-05 18:34:46 -0800 | [diff] [blame] | 179 | decode_with_drops.SRCS += video_common.h |
| 180 | decode_with_drops.SRCS += video_reader.h video_reader.c |
Dmitry Kovalev | 4334c07 | 2014-02-26 16:32:09 -0800 | [diff] [blame] | 181 | decode_with_drops.SRCS += vpx_ports/mem_ops.h |
| 182 | decode_with_drops.SRCS += vpx_ports/mem_ops_aligned.h |
Johann | cad0eca | 2015-05-07 16:41:33 -0700 | [diff] [blame] | 183 | decode_with_drops.SRCS += vpx_ports/msvc.h |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 184 | decode_with_drops.GUID = CE5C53C4-8DDA-438A-86ED-0DDD3CDB8D26 |
| 185 | decode_with_drops.DESCRIPTION = Drops frames while decoding |
Alex Converse | 61ecd7f | 2014-03-10 16:13:49 -0700 | [diff] [blame] | 186 | EXAMPLES-$(CONFIG_ENCODERS) += set_maps.c |
| 187 | set_maps.SRCS += ivfenc.h ivfenc.c |
| 188 | set_maps.SRCS += tools_common.h tools_common.c |
| 189 | set_maps.SRCS += video_common.h |
| 190 | set_maps.SRCS += video_writer.h video_writer.c |
Johann | cad0eca | 2015-05-07 16:41:33 -0700 | [diff] [blame] | 191 | set_maps.SRCS += vpx_ports/msvc.h |
Alex Converse | 61ecd7f | 2014-03-10 16:13:49 -0700 | [diff] [blame] | 192 | set_maps.GUID = ECB2D24D-98B8-4015-A465-A4AF3DCC145F |
| 193 | set_maps.DESCRIPTION = Set active and ROI maps |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 194 | EXAMPLES-$(CONFIG_VP8_ENCODER) += vp8cx_set_ref.c |
Dmitry Kovalev | cb4eb79 | 2014-03-03 17:41:51 -0800 | [diff] [blame] | 195 | vp8cx_set_ref.SRCS += ivfenc.h ivfenc.c |
| 196 | vp8cx_set_ref.SRCS += tools_common.h tools_common.c |
| 197 | vp8cx_set_ref.SRCS += video_common.h |
| 198 | vp8cx_set_ref.SRCS += video_writer.h video_writer.c |
Johann | cad0eca | 2015-05-07 16:41:33 -0700 | [diff] [blame] | 199 | vp8cx_set_ref.SRCS += vpx_ports/msvc.h |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 200 | vp8cx_set_ref.GUID = C5E31F7F-96F6-48BD-BD3E-10EBF6E8057A |
| 201 | vp8cx_set_ref.DESCRIPTION = VP8 set encoder reference frame |
| 202 | |
Dmitry Kovalev | 98254a4 | 2014-01-17 16:56:04 -0800 | [diff] [blame] | 203 | |
| 204 | ifeq ($(CONFIG_MULTI_RES_ENCODING),yes) |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 205 | ifeq ($(CONFIG_LIBYUV),yes) |
Marco Paniconi | 5f732c2 | 2014-07-07 13:57:28 -0700 | [diff] [blame] | 206 | EXAMPLES-$(CONFIG_VP8_ENCODER) += vp8_multi_resolution_encoder.c |
Dmitry Kovalev | 0c1b9c7 | 2014-08-26 15:54:00 -0700 | [diff] [blame] | 207 | vp8_multi_resolution_encoder.SRCS += ivfenc.h ivfenc.c |
Marco Paniconi | 5f732c2 | 2014-07-07 13:57:28 -0700 | [diff] [blame] | 208 | vp8_multi_resolution_encoder.SRCS += tools_common.h tools_common.c |
Dmitry Kovalev | 0c1b9c7 | 2014-08-26 15:54:00 -0700 | [diff] [blame] | 209 | vp8_multi_resolution_encoder.SRCS += video_writer.h video_writer.c |
Johann | cad0eca | 2015-05-07 16:41:33 -0700 | [diff] [blame] | 210 | vp8_multi_resolution_encoder.SRCS += vpx_ports/msvc.h |
Dmitry Kovalev | 98254a4 | 2014-01-17 16:56:04 -0800 | [diff] [blame] | 211 | vp8_multi_resolution_encoder.SRCS += $(LIBYUV_SRCS) |
| 212 | vp8_multi_resolution_encoder.GUID = 04f8738e-63c8-423b-90fa-7c2703a374de |
| 213 | vp8_multi_resolution_encoder.DESCRIPTION = VP8 Multiple-resolution Encoding |
| 214 | endif |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 215 | endif |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 216 | |
| 217 | # Handle extra library flags depending on codec configuration |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 218 | |
Tero Rintaluoma | 11a222f | 2011-01-24 11:21:40 +0200 | [diff] [blame] | 219 | # We should not link to math library (libm) on RVCT |
| 220 | # when building for bare-metal targets |
| 221 | ifeq ($(CONFIG_OS_SUPPORT), yes) |
| 222 | CODEC_EXTRA_LIBS-$(CONFIG_VP8) += m |
Ronald S. Bultje | 4b2c2b9 | 2012-11-01 11:09:58 -0700 | [diff] [blame] | 223 | CODEC_EXTRA_LIBS-$(CONFIG_VP9) += m |
Tero Rintaluoma | 11a222f | 2011-01-24 11:21:40 +0200 | [diff] [blame] | 224 | else |
| 225 | ifeq ($(CONFIG_GCC), yes) |
| 226 | CODEC_EXTRA_LIBS-$(CONFIG_VP8) += m |
Ronald S. Bultje | 4b2c2b9 | 2012-11-01 11:09:58 -0700 | [diff] [blame] | 227 | CODEC_EXTRA_LIBS-$(CONFIG_VP9) += m |
Tero Rintaluoma | 11a222f | 2011-01-24 11:21:40 +0200 | [diff] [blame] | 228 | endif |
| 229 | endif |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 230 | # |
| 231 | # End of specified files. The rest of the build rules should happen |
| 232 | # automagically from here. |
| 233 | # |
| 234 | |
| 235 | |
| 236 | # Examples need different flags based on whether we're building |
| 237 | # from an installed tree or a version controlled tree. Determine |
| 238 | # the proper paths. |
| 239 | ifeq ($(HAVE_ALT_TREE_LAYOUT),yes) |
James Zern | 3a7d467 | 2014-08-10 16:15:18 -0700 | [diff] [blame] | 240 | LIB_PATH-yes := $(SRC_PATH_BARE)/../lib |
| 241 | INC_PATH-yes := $(SRC_PATH_BARE)/../include |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 242 | else |
| 243 | LIB_PATH-yes += $(if $(BUILD_PFX),$(BUILD_PFX),.) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 244 | INC_PATH-$(CONFIG_VP8_DECODER) += $(SRC_PATH_BARE)/vp8 |
| 245 | INC_PATH-$(CONFIG_VP8_ENCODER) += $(SRC_PATH_BARE)/vp8 |
Ronald S. Bultje | 4b2c2b9 | 2012-11-01 11:09:58 -0700 | [diff] [blame] | 246 | INC_PATH-$(CONFIG_VP9_DECODER) += $(SRC_PATH_BARE)/vp9 |
| 247 | INC_PATH-$(CONFIG_VP9_ENCODER) += $(SRC_PATH_BARE)/vp9 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 248 | endif |
James Zern | 3a7d467 | 2014-08-10 16:15:18 -0700 | [diff] [blame] | 249 | INC_PATH-$(CONFIG_LIBYUV) += $(SRC_PATH_BARE)/third_party/libyuv/include |
| 250 | LIB_PATH := $(call enabled,LIB_PATH) |
| 251 | INC_PATH := $(call enabled,INC_PATH) |
Ronald S. Bultje | bbf890f | 2011-05-02 13:56:41 -0400 | [diff] [blame] | 252 | INTERNAL_CFLAGS = $(addprefix -I,$(INC_PATH)) |
| 253 | INTERNAL_LDFLAGS += $(addprefix -L,$(LIB_PATH)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 254 | |
| 255 | |
| 256 | # Expand list of selected examples to build (as specified above) |
| 257 | UTILS = $(call enabled,UTILS) |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 258 | EXAMPLES = $(addprefix examples/,$(call enabled,EXAMPLES)) |
| 259 | ALL_EXAMPLES = $(UTILS) $(EXAMPLES) |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 260 | UTIL_SRCS = $(foreach ex,$(UTILS),$($(ex:.c=).SRCS)) |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 261 | ALL_SRCS = $(foreach ex,$(ALL_EXAMPLES),$($(notdir $(ex:.c=)).SRCS)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 262 | CODEC_EXTRA_LIBS=$(sort $(call enabled,CODEC_EXTRA_LIBS)) |
| 263 | |
| 264 | |
| 265 | # Expand all example sources into a variable containing all sources |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 266 | # for that example (not just them main one specified in UTILS/EXAMPLES) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 267 | # and add this file to the list (for MSVS workspace generation) |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 268 | $(foreach ex,$(ALL_EXAMPLES),$(eval $(notdir $(ex:.c=)).SRCS += $(ex) examples.mk)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 269 | |
| 270 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 271 | # Create build/install dependencies for all examples. The common case |
| 272 | # is handled here. The MSVS case is handled below. |
| 273 | NOT_MSVS = $(if $(CONFIG_MSVS),,yes) |
KO Myung-Hun | 2dad8d6 | 2012-02-03 13:31:11 +0900 | [diff] [blame] | 274 | DIST-BINS-$(NOT_MSVS) += $(addprefix bin/,$(ALL_EXAMPLES:.c=$(EXE_SFX))) |
| 275 | INSTALL-BINS-$(NOT_MSVS) += $(addprefix bin/,$(UTILS:.c=$(EXE_SFX))) |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 276 | DIST-SRCS-yes += $(ALL_SRCS) |
| 277 | INSTALL-SRCS-yes += $(UTIL_SRCS) |
Tom Finegan | 3d7063d | 2015-05-12 15:33:40 -0700 | [diff] [blame] | 278 | OBJS-$(NOT_MSVS) += $(call objs,$(ALL_SRCS)) |
KO Myung-Hun | 2dad8d6 | 2012-02-03 13:31:11 +0900 | [diff] [blame] | 279 | BINS-$(NOT_MSVS) += $(addprefix $(BUILD_PFX),$(ALL_EXAMPLES:.c=$(EXE_SFX))) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 280 | |
| 281 | |
| 282 | # Instantiate linker template for all examples. |
| 283 | CODEC_LIB=$(if $(CONFIG_DEBUG_LIBS),vpx_g,vpx) |
KO Myung-Hun | 6d52fe2 | 2014-08-08 13:13:02 +0900 | [diff] [blame] | 284 | ifneq ($(filter darwin%,$(TGT_OS)),) |
| 285 | SHARED_LIB_SUF=.dylib |
| 286 | else |
| 287 | ifneq ($(filter os2%,$(TGT_OS)),) |
| 288 | SHARED_LIB_SUF=_dll.a |
| 289 | else |
| 290 | SHARED_LIB_SUF=.so |
| 291 | endif |
| 292 | endif |
jimbankoski | 45e551b | 2012-07-25 19:39:33 -0700 | [diff] [blame] | 293 | CODEC_LIB_SUF=$(if $(CONFIG_SHARED),$(SHARED_LIB_SUF),.a) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 294 | $(foreach bin,$(BINS-yes),\ |
Tom Finegan | 3d7063d | 2015-05-12 15:33:40 -0700 | [diff] [blame] | 295 | $(eval $(bin):$(LIB_PATH)/lib$(CODEC_LIB)$(CODEC_LIB_SUF))\ |
| 296 | $(eval $(call linker_template,$(bin),\ |
KO Myung-Hun | 2dad8d6 | 2012-02-03 13:31:11 +0900 | [diff] [blame] | 297 | $(call objs,$($(notdir $(bin:$(EXE_SFX)=)).SRCS)) \ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 298 | -l$(CODEC_LIB) $(addprefix -l,$(CODEC_EXTRA_LIBS))\ |
Tom Finegan | 3d7063d | 2015-05-12 15:33:40 -0700 | [diff] [blame] | 299 | ))) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 300 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 301 | # The following pairs define a mapping of locations in the distribution |
| 302 | # tree to locations in the source/build trees. |
| 303 | INSTALL_MAPS += src/%.c %.c |
| 304 | INSTALL_MAPS += src/% $(SRC_PATH_BARE)/% |
| 305 | INSTALL_MAPS += bin/% % |
| 306 | INSTALL_MAPS += % % |
| 307 | |
| 308 | |
| 309 | # Set up additional MSVS environment |
| 310 | ifeq ($(CONFIG_MSVS),yes) |
Jim Bankoski | 1b16e74 | 2012-07-23 12:32:59 -0700 | [diff] [blame] | 311 | CODEC_LIB=$(if $(CONFIG_SHARED),vpx,$(if $(CONFIG_STATIC_MSVCRT),vpxmt,vpxmd)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 312 | # This variable uses deferred expansion intentionally, since the results of |
| 313 | # $(wildcard) may change during the course of the Make. |
| 314 | VS_PLATFORMS = $(foreach d,$(wildcard */Release/$(CODEC_LIB).lib),$(word 1,$(subst /, ,$(d)))) |
| 315 | INSTALL_MAPS += $(foreach p,$(VS_PLATFORMS),bin/$(p)/% $(p)/Release/%) |
| 316 | endif |
| 317 | |
| 318 | # Build Visual Studio Projects. We use a template here to instantiate |
| 319 | # explicit rules rather than using an implicit rule because we want to |
| 320 | # leverage make's VPATH searching rather than specifying the paths on |
| 321 | # each file in ALL_EXAMPLES. This has the unfortunate side effect that |
| 322 | # touching the source files trigger a rebuild of the project files |
| 323 | # even though there is no real dependency there (the dependency is on |
| 324 | # the makefiles). We may want to revisit this. |
| 325 | define vcproj_template |
Martin Storsjo | 9a5cac0 | 2013-05-18 19:57:19 +0300 | [diff] [blame] | 326 | $(1): $($(1:.$(VCPROJ_SFX)=).SRCS) vpx.$(VCPROJ_SFX) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 327 | @echo " [vcproj] $$@" |
Martin Storsjo | 0b4637e | 2013-05-17 00:56:46 +0300 | [diff] [blame] | 328 | $$(GEN_VCPROJ)\ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 329 | --exe\ |
| 330 | --target=$$(TOOLCHAIN)\ |
Martin Storsjo | 0b4637e | 2013-05-17 00:56:46 +0300 | [diff] [blame] | 331 | --name=$$(@:.$(VCPROJ_SFX)=)\ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 332 | --ver=$$(CONFIG_VS_VERSION)\ |
Martin Storsjo | 0b4637e | 2013-05-17 00:56:46 +0300 | [diff] [blame] | 333 | --proj-guid=$$($$(@:.$(VCPROJ_SFX)=).GUID)\ |
James Zern | f66590c | 2014-06-02 16:42:14 -0700 | [diff] [blame] | 334 | --src-path-bare="$(SRC_PATH_BARE)" \ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 335 | $$(if $$(CONFIG_STATIC_MSVCRT),--static-crt) \ |
Ronald S. Bultje | bbf890f | 2011-05-02 13:56:41 -0400 | [diff] [blame] | 336 | --out=$$@ $$(INTERNAL_CFLAGS) $$(CFLAGS) \ |
Martin Storsjo | a37e84d | 2013-05-19 12:21:29 +0300 | [diff] [blame] | 337 | $$(INTERNAL_LDFLAGS) $$(LDFLAGS) -l$$(CODEC_LIB) $$^ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 338 | endef |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 339 | ALL_EXAMPLES_BASENAME := $(notdir $(ALL_EXAMPLES)) |
| 340 | PROJECTS-$(CONFIG_MSVS) += $(ALL_EXAMPLES_BASENAME:.c=.$(VCPROJ_SFX)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 341 | INSTALL-BINS-$(CONFIG_MSVS) += $(foreach p,$(VS_PLATFORMS),\ |
James Zern | 77bbcab | 2014-02-05 16:55:01 -0800 | [diff] [blame] | 342 | $(addprefix bin/$(p)/,$(ALL_EXAMPLES_BASENAME:.c=.exe))) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 343 | $(foreach proj,$(call enabled,PROJECTS),\ |
| 344 | $(eval $(call vcproj_template,$(proj)))) |
James Zern | 354c566 | 2014-02-14 19:38:20 -0800 | [diff] [blame] | 345 | |
| 346 | # |
| 347 | # Documentation Rules |
| 348 | # |
| 349 | %.dox: %.c |
| 350 | @echo " [DOXY] $@" |
James Zern | aaccf65 | 2015-02-05 19:31:38 -0800 | [diff] [blame] | 351 | @mkdir -p $(dir $@) |
James Zern | 354c566 | 2014-02-14 19:38:20 -0800 | [diff] [blame] | 352 | @echo "/*!\page example_$(@F:.dox=) $(@F:.dox=)" > $@ |
| 353 | @echo " \includelineno $(<F)" >> $@ |
| 354 | @echo "*/" >> $@ |
| 355 | |
| 356 | samples.dox: examples.mk |
| 357 | @echo " [DOXY] $@" |
| 358 | @echo "/*!\page samples Sample Code" > $@ |
| 359 | @echo " This SDK includes a number of sample applications."\ |
| 360 | "Each sample documents a feature of the SDK in both prose"\ |
| 361 | "and the associated C code."\ |
| 362 | "The following samples are included: ">>$@ |
| 363 | @$(foreach ex,$(sort $(notdir $(EXAMPLES:.c=))),\ |
| 364 | echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;) |
| 365 | @echo >> $@ |
| 366 | @echo " In addition, the SDK contains a number of utilities."\ |
| 367 | "Since these utilities are built upon the concepts described"\ |
| 368 | "in the sample code listed above, they are not documented in"\ |
| 369 | "pieces like the samples are. Their source is included here"\ |
| 370 | "for reference. The following utilities are included:" >> $@ |
| 371 | @$(foreach ex,$(sort $(UTILS:.c=)),\ |
| 372 | echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;) |
| 373 | @echo "*/" >> $@ |
| 374 | |
| 375 | CLEAN-OBJS += examples.doxy samples.dox $(ALL_EXAMPLES:.c=.dox) |
| 376 | DOCS-yes += examples.doxy samples.dox |
| 377 | examples.doxy: samples.dox $(ALL_EXAMPLES:.c=.dox) |
| 378 | @echo "INPUT += $^" > $@ |