Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ce11235b authored by Abhishek Arpure's avatar Abhishek Arpure Committed by Gerrit - the friendly Code Review server
Browse files

Bypass compilation errors due to compiler upgrade

Bypass CLANG compilation errors by adding ignore flags

Change-Id: I99317ca2ccf5ee953ca5796e01db63dd396d622d
parent 939c563a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@ libOmxAacEnc-def += -D_DEBUG
libOmxAacEnc-def += -Wconversion
libOmxAacEnc-def += -DAUDIOV2

libOmxAacEnc-def += -Wno-sign-conversion -Wno-shorten-64-to-32 -Wno-self-assign -Wno-parentheses-equality -Wno-format -Wno-sign-compare -Wno-tautological-compare -Wno-shorten-64-to-32 -Wno-unused-local-typedef
# ---------------------------------------------------------------------------------
#             Make the Shared library (libOmxAacEnc)
# ---------------------------------------------------------------------------------
@@ -32,7 +33,6 @@ LOCAL_CFLAGS := $(libOmxAacEnc-def)
LOCAL_C_INCLUDES        := $(libOmxAacEnc-inc)
LOCAL_PRELINK_MODULE    := false
LOCAL_SHARED_LIBRARIES  := libutils liblog

LOCAL_SRC_FILES         := src/aenc_svr.c
LOCAL_SRC_FILES         += src/omx_aac_aenc.cpp

+1 −0
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@ extern "C" {
#include <utils/Log.h>

#ifdef _ANDROID_
#undef LOG_TAG
#define LOG_TAG "QC_AACENC"
#endif

+2 −0
Original line number Diff line number Diff line
@@ -16,6 +16,8 @@ libOmxAmrEnc-def += -D_DEBUG
libOmxAmrEnc-def += -Wconversion
libOmxAmrEnc-def += -DAUDIOV2

libOmxAmrEnc-def += -Wno-sign-conversion -Wno-shorten-64-to-32 -Wno-self-assign -Wno-parentheses-equality -Wno-format -Wno-sign-compare -Wno-tautological-compare -Wno-shorten-64-to-32 -Wno-unused-local-typedef

# ---------------------------------------------------------------------------------
#             Make the Shared library (libOmxAmrEnc)
# ---------------------------------------------------------------------------------
+1 −0
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@ extern "C" {
#include <utils/Log.h>

#ifdef _ANDROID_
#undef LOG_TAG
#define LOG_TAG "QC_AMRENC"
#endif

+2 −0
Original line number Diff line number Diff line
@@ -16,6 +16,8 @@ libOmxEvrcEnc-def += -D_DEBUG
libOmxEvrcEnc-def += -Wconversion
libOmxEvrcEnc-def += -DAUDIOV2

libOmxEvrcEnc-def += -Wno-sign-conversion -Wno-shorten-64-to-32 -Wno-self-assign -Wno-parentheses-equality -Wno-format -Wno-sign-compare -Wno-tautological-compare -Wno-shorten-64-to-32 -Wno-unused-local-typedef

# ---------------------------------------------------------------------------------
#             Make the Shared library (libOmxEvrcEnc)
# ---------------------------------------------------------------------------------
Loading