summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2014-09-03 12:40:41 -0700
committerChih-Hung Hsieh <chh@google.com>2014-09-03 12:40:41 -0700
commit9428e080cc72db76594774d03c9250e7bf627fc9 (patch)
tree3dd76eae030149f5f0105f113c4fa29e6a50121f /Android.mk
parent2decc77814e729df47464a504123f9b398ac7077 (diff)
downloadfdk-aac-9428e080cc72db76594774d03c9250e7bf627fc9.tar.gz
fdk-aac-9428e080cc72db76594774d03c9250e7bf627fc9.tar.bz2
fdk-aac-9428e080cc72db76594774d03c9250e7bf627fc9.zip
Ignore Clang warning on checking address of arrays.
BUG: 17356808 Change-Id: I464ffcfb3fc4f44ac8115f9ae98a8c46189b41cd
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index f804089..5556bdc 100644
--- a/Android.mk
+++ b/Android.mk
@@ -53,6 +53,11 @@ LOCAL_C_INCLUDES := \
$(LOCAL_PATH)/libSBRdec/include \
$(LOCAL_PATH)/libSBRenc/include
+# In tpdec_asc.cpp: address of array 'pPce->FrontElementIsCpe'
+# will always evaluate to 'true'.
+LOCAL_CPPFLAGS += \
+ -Wno-pointer-bool-conversion
+
LOCAL_MODULE:= libFraunhoferAAC
include $(BUILD_STATIC_LIBRARY)