commit | 6d89c10db93c94727bbdb0ea7be432adedfc4565 | [log] [tgz] |
---|---|---|
author | Chih-hung Hsieh <chh@google.com> | Wed Dec 12 19:29:19 2018 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Dec 12 19:29:19 2018 +0000 |
tree | 0fc884fd5f3e7dd543edc76a8aeef7362a4931db | |
parent | 20c3f99b3193a86f69aa645f9f423e2d852660b2 [diff] | |
parent | 602bd42131dbe07a8de8738bf8f5fc658b9b1eba [diff] |
Merge "Fix cert-dcl16-c clang-tidy warnings in libeffects."
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; } }