| Index: source/libvpx/examples.mk
|
| ===================================================================
|
| --- source/libvpx/examples.mk (revision 191025)
|
| +++ source/libvpx/examples.mk (working copy)
|
| @@ -8,6 +8,12 @@
|
| ## be found in the AUTHORS file in the root of the source tree.
|
| ##
|
|
|
| +LIBYUV_SRCS += third_party/libyuv/include/libyuv/basic_types.h \
|
| + third_party/libyuv/include/libyuv/cpu_id.h \
|
| + third_party/libyuv/include/libyuv/scale.h \
|
| + third_party/libyuv/source/row.h \
|
| + third_party/libyuv/source/scale.c \
|
| + third_party/libyuv/source/cpu_id.c
|
|
|
| # List of examples to build. UTILS are files that are taken from the source
|
| # tree directly, and GEN_EXAMPLES are files that are created from the
|
| @@ -25,6 +31,7 @@
|
| vpxdec.SRCS += nestegg/halloc/src/macros.h
|
| vpxdec.SRCS += nestegg/include/nestegg/nestegg.h
|
| vpxdec.SRCS += nestegg/src/nestegg.c
|
| +vpxdec.SRCS += $(LIBYUV_SRCS)
|
| vpxdec.GUID = BA5FE66F-38DD-E034-F542-B1578C5FB950
|
| vpxdec.DESCRIPTION = Full featured decoder
|
| UTILS-$(CONFIG_ENCODERS) += vpxenc.c
|
| @@ -36,6 +43,7 @@
|
| vpxenc.SRCS += libmkv/EbmlIDs.h
|
| vpxenc.SRCS += libmkv/EbmlWriter.c
|
| vpxenc.SRCS += libmkv/EbmlWriter.h
|
| +vpxenc.SRCS += $(LIBYUV_SRCS)
|
| vpxenc.GUID = 548DEC74-7A15-4B2B-AFC3-AA102E7C25C1
|
| vpxenc.DESCRIPTION = Full featured encoder
|
| UTILS-$(CONFIG_VP8_ENCODER) += vp8_scalable_patterns.c
|
| @@ -99,13 +107,7 @@
|
|
|
| # C file is provided, not generated automatically.
|
| UTILS-$(CONFIG_MULTI_RES_ENCODING) += vp8_multi_resolution_encoder.c
|
| -vp8_multi_resolution_encoder.SRCS \
|
| - += third_party/libyuv/include/libyuv/basic_types.h \
|
| - third_party/libyuv/include/libyuv/cpu_id.h \
|
| - third_party/libyuv/include/libyuv/scale.h \
|
| - third_party/libyuv/source/row.h \
|
| - third_party/libyuv/source/scale.c \
|
| - third_party/libyuv/source/cpu_id.c
|
| +vp8_multi_resolution_encoder.SRCS += $(LIBYUV_SRCS)
|
| vp8_multi_resolution_encoder.GUID = 04f8738e-63c8-423b-90fa-7c2703a374de
|
| vp8_multi_resolution_encoder.DESCRIPTION = VP8 Multiple-resolution Encoding
|
|
|
|
|