| OLD | NEW |
| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 | 69 |
| 70 ifeq ($(CONFIG_VP8_DECODER),yes) | 70 ifeq ($(CONFIG_VP8_DECODER),yes) |
| 71 include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8dx.mk | 71 include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8dx.mk |
| 72 CODEC_SRCS-yes += $(addprefix $(VP8_PREFIX),$(call enabled,VP8_DX_SRCS)) | 72 CODEC_SRCS-yes += $(addprefix $(VP8_PREFIX),$(call enabled,VP8_DX_SRCS)) |
| 73 CODEC_EXPORTS-yes += $(addprefix $(VP8_PREFIX),$(VP8_DX_EXPORTS)) | 73 CODEC_EXPORTS-yes += $(addprefix $(VP8_PREFIX),$(VP8_DX_EXPORTS)) |
| 74 INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8dx.h | 74 INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8dx.h |
| 75 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP8_PREFIX)/% | 75 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP8_PREFIX)/% |
| 76 CODEC_DOC_SECTIONS += vp8 vp8_decoder | 76 CODEC_DOC_SECTIONS += vp8 vp8_decoder |
| 77 endif | 77 endif |
| 78 | 78 |
| 79 ifneq ($(CONFIG_VP9_ENCODER)$(CONFIG_VP9_DECODER),) | 79 ifeq ($(CONFIG_VP9),yes) |
| 80 VP9_PREFIX=vp9/ | 80 VP9_PREFIX=vp9/ |
| 81 include $(SRC_PATH_BARE)/$(VP9_PREFIX)vp9_common.mk | 81 include $(SRC_PATH_BARE)/$(VP9_PREFIX)vp9_common.mk |
| 82 endif | 82 endif |
| 83 | 83 |
| 84 ifeq ($(CONFIG_VP9_ENCODER),yes) | 84 ifeq ($(CONFIG_VP9_ENCODER),yes) |
| 85 VP9_PREFIX=vp9/ | 85 VP9_PREFIX=vp9/ |
| 86 include $(SRC_PATH_BARE)/$(VP9_PREFIX)vp9cx.mk | 86 include $(SRC_PATH_BARE)/$(VP9_PREFIX)vp9cx.mk |
| 87 CODEC_SRCS-yes += $(addprefix $(VP9_PREFIX),$(call enabled,VP9_CX_SRCS)) | 87 CODEC_SRCS-yes += $(addprefix $(VP9_PREFIX),$(call enabled,VP9_CX_SRCS)) |
| 88 CODEC_EXPORTS-yes += $(addprefix $(VP9_PREFIX),$(VP9_CX_EXPORTS)) | 88 CODEC_EXPORTS-yes += $(addprefix $(VP9_PREFIX),$(VP9_CX_EXPORTS)) |
| 89 CODEC_SRCS-yes += $(VP9_PREFIX)vp9cx.mk vpx/vp8.h vpx/vp8cx.h | 89 CODEC_SRCS-yes += $(VP9_PREFIX)vp9cx.mk vpx/vp8.h vpx/vp8cx.h |
| (...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 endif | 625 endif |
| 626 exampletest exampletest-no-data-check: examples | 626 exampletest exampletest-no-data-check: examples |
| 627 $(qexec)$(SRC_PATH_BARE)/test/examples.sh \ | 627 $(qexec)$(SRC_PATH_BARE)/test/examples.sh \ |
| 628 --test-data-path $(LIBVPX_TEST_DATA_PATH) \ | 628 --test-data-path $(LIBVPX_TEST_DATA_PATH) \ |
| 629 --bin-path $(EXAMPLES_BIN_PATH) | 629 --bin-path $(EXAMPLES_BIN_PATH) |
| 630 exampletest: testdata | 630 exampletest: testdata |
| 631 else | 631 else |
| 632 exampletest exampletest-no-data-check: | 632 exampletest exampletest-no-data-check: |
| 633 @echo Unit tests must be enabled to make the exampletest target. | 633 @echo Unit tests must be enabled to make the exampletest target. |
| 634 endif | 634 endif |
| OLD | NEW |