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

Commit 54cdefc7 authored by Bernhard Rosenkränzer's avatar Bernhard Rosenkränzer
Browse files

Remove extraneous parentheses



Remove extraneous parentheses - they cause compiler warnings in clang

Change-Id: Ie2efd9714f9e2251cf3b204b5c5dd1a8b8aaca13
Signed-off-by: default avatarBernhard Rosenkränzer <Bernhard.Rosenkranzer@linaro.org>
parent 34c55e3e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -547,7 +547,7 @@ static void writeFillElement( const UWord8 *ancBytes,
    totFillBits = totFillBits - (3+4);


    if ((cnt == (1<<4)-1)) {
    if (cnt == (1<<4)-1) {

      esc_count = min( ((totFillBits >> 3) - ((1<<4)-1)), (1<<8)-1);
      WriteBits(hBitStream,esc_count,8);
+1 −1
Original line number Diff line number Diff line
@@ -404,7 +404,7 @@ static void noise_estimate_update(
		alpha_down = ALPHA_DOWN1;
	} else
	{
		if ((st->stat_count == 0))
		if (st->stat_count == 0)
		{
			alpha_up = ALPHA_UP2;
			alpha_down = ALPHA_DOWN2;