diff options
author | Lubin Yin <lubiny@codeaurora.org> | 2019-05-20 14:50:27 -0700 |
---|---|---|
committer | Lubin Yin <lubiny@codeaurora.org> | 2019-05-20 14:56:08 -0700 |
commit | f632e7c2f87f142f8d934cc1f1596c038b9f7d21 (patch) | |
tree | e22ff218cdb8914a5242acb8feebef55191a914a | |
parent | b97ea6c7ce56a95abc71c1680a585275045e7255 (diff) |
libaac: disable compiler optimization
Disable compiler optimization to avoid error in WFD source aac encoding.
Change-Id: I725a73c6c4f572d8f07e2aeb88292b85d68aa153
-rw-r--r-- | libaac/Android.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libaac/Android.mk b/libaac/Android.mk index 7f58414..38551d0 100644 --- a/libaac/Android.mk +++ b/libaac/Android.mk @@ -14,6 +14,7 @@ LOCAL_STATIC_LIBRARIES := libFraunhoferAAC LOCAL_32_BIT_ONLY := true LOCAL_MODULE := libwfdaac +LOCAL_CFLAGS += -O0 LOCAL_SANITIZE := integer_overflow include $(BUILD_SHARED_LIBRARY) @@ -37,6 +38,7 @@ LOCAL_VENDOR_MODULE := true LOCAL_32_BIT_ONLY := true LOCAL_MODULE := libwfdaac_vendor +LOCAL_CFLAGS += -O0 LOCAL_SANITIZE := integer_overflow include $(BUILD_SHARED_LIBRARY) |