commit | 4bcbfa0ec1f3a6d460b48b69fb58f2394a63a8f6 | [log] [tgz] |
---|---|---|
author | Chih-hung Hsieh <chh@google.com> | Wed Dec 12 11:41:17 2018 -0800 |
committer | android-build-merger <android-build-merger@google.com> | Wed Dec 12 11:41:17 2018 -0800 |
tree | 502ea3b0fa935d71baaffb104bfe75f8101081f0 | |
parent | 45da3e96df85ae705bf3b6666d8c1fb4191576bc [diff] | |
parent | 739dc12e715a7dc924de67511d88f36f242cd6fb [diff] |
Merge "Fix cert-dcl16-c clang-tidy warnings in libeffects." am: 6d89c10db9 am: 739dc12e71 Change-Id: Icfecd4773d6d154596af87a9adf8867f5477750f
diff --git a/media/libeffects/lvm/lib/Common/src/Add2_Sat_32x32.c b/media/libeffects/lvm/lib/Common/src/Add2_Sat_32x32.c index e3edccc..66d6adb 100644 --- a/media/libeffects/lvm/lib/Common/src/Add2_Sat_32x32.c +++ b/media/libeffects/lvm/lib/Common/src/Add2_Sat_32x32.c
@@ -43,11 +43,11 @@ { if(a<0) { - c=0x80000000l; + c=0x80000000L; } else { - c=0x7FFFFFFFl; + c=0x7FFFFFFFL; } }
diff --git a/media/libeffects/lvm/lib/Common/src/DelayAllPass_Sat_32x16To32.c b/media/libeffects/lvm/lib/Common/src/DelayAllPass_Sat_32x16To32.c index 2e20d79..b04e98e 100644 --- a/media/libeffects/lvm/lib/Common/src/DelayAllPass_Sat_32x16To32.c +++ b/media/libeffects/lvm/lib/Common/src/DelayAllPass_Sat_32x16To32.c
@@ -53,11 +53,11 @@ { if(a < 0) { - c = 0x80000000l; + c = 0x80000000L; } else { - c = 0x7FFFFFFFl; + c = 0x7FFFFFFFL; } } *dst = c; @@ -72,11 +72,11 @@ { if(a < 0) { - c = 0x80000000l; + c = 0x80000000L; } else { - c = 0x7FFFFFFFl; + c = 0x7FFFFFFFL; } } delay[AllPassOffset] = c;
diff --git a/media/libeffects/lvm/lib/Common/src/Mac3s_Sat_32x16.c b/media/libeffects/lvm/lib/Common/src/Mac3s_Sat_32x16.c index e3fb40d..17fd833 100644 --- a/media/libeffects/lvm/lib/Common/src/Mac3s_Sat_32x16.c +++ b/media/libeffects/lvm/lib/Common/src/Mac3s_Sat_32x16.c
@@ -50,11 +50,11 @@ { if(temp<0) { - dOutVal=0x80000000l; + dOutVal=0x80000000L; } else { - dOutVal=0x7FFFFFFFl; + dOutVal=0x7FFFFFFFL; } }