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

Commit 4bcbfa0e authored by Chih-hung Hsieh's avatar Chih-hung Hsieh Committed by android-build-merger
Browse files

Merge "Fix cert-dcl16-c clang-tidy warnings in libeffects." am: 6d89c10d

am: 739dc12e

Change-Id: Icfecd4773d6d154596af87a9adf8867f5477750f
parents 45da3e96 739dc12e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -43,11 +43,11 @@ void Add2_Sat_32x32( const LVM_INT32 *src,
        {
            if(a<0)
            {
                c=0x80000000l;
                c=0x80000000L;
            }
            else
            {
                c=0x7FFFFFFFl;
                c=0x7FFFFFFFL;
            }
        }

+4 −4
Original line number Diff line number Diff line
@@ -53,11 +53,11 @@ void DelayAllPass_Sat_32x16To32( LVM_INT32 *delay, /* Delay
        {
            if(a < 0)
            {
                c = 0x80000000l;
                c = 0x80000000L;
            }
            else
            {
                c = 0x7FFFFFFFl;
                c = 0x7FFFFFFFL;
            }
        }
        *dst = c;
@@ -72,11 +72,11 @@ void DelayAllPass_Sat_32x16To32( LVM_INT32 *delay, /* Delay
        {
            if(a < 0)
            {
                c = 0x80000000l;
                c = 0x80000000L;
            }
            else
            {
                c = 0x7FFFFFFFl;
                c = 0x7FFFFFFFL;
            }
        }
        delay[AllPassOffset] = c;
+2 −2
Original line number Diff line number Diff line
@@ -50,11 +50,11 @@ void Mac3s_Sat_32x16( const LVM_INT32 *src,
        {
            if(temp<0)
            {
                dOutVal=0x80000000l;
                dOutVal=0x80000000L;
            }
            else
            {
                dOutVal=0x7FFFFFFFl;
                dOutVal=0x7FFFFFFFL;
            }
        }