shithub: libvpx

Download patch

ref: 204b72c98cae6b1edc79e48646f0c13ab3c12057
parent: aef0b8808ca3756991749760537981e05d99a9fc
author: James Zern <jzern@google.com>
date: Tue Apr 30 13:42:46 EDT 2019

make vpx_debug_util.c inclusion conditional

on CONFIG_BITSTREAM_DEBUG. this avoids an object file containing no
symbols which may cause warnings on some platforms.

Change-Id: I02af97d6970de949466c29f50d272733d97ee8d2

--- a/vpx_util/vpx_util.mk
+++ b/vpx_util/vpx_util.mk
@@ -15,5 +15,5 @@
 UTIL_SRCS-yes += endian_inl.h
 UTIL_SRCS-yes += vpx_write_yuv_frame.h
 UTIL_SRCS-yes += vpx_write_yuv_frame.c
-UTIL_SRCS-yes += vpx_debug_util.h
-UTIL_SRCS-yes += vpx_debug_util.c
+UTIL_SRCS-$(CONFIG_BITSTREAM_DEBUG) += vpx_debug_util.h
+UTIL_SRCS-$(CONFIG_BITSTREAM_DEBUG) += vpx_debug_util.c