diff options
author | Chih-Hung Hsieh <chh@google.com> | 2014-09-03 12:40:41 -0700 |
---|---|---|
committer | Chih-Hung Hsieh <chh@google.com> | 2014-09-03 12:40:41 -0700 |
commit | 9428e080cc72db76594774d03c9250e7bf627fc9 (patch) | |
tree | 3dd76eae030149f5f0105f113c4fa29e6a50121f /Android.mk | |
parent | 2decc77814e729df47464a504123f9b398ac7077 (diff) | |
download | fdk-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.mk | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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) |