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

Commit 7a200235 authored by Chih-hung Hsieh's avatar Chih-hung Hsieh Committed by Gerrit Code Review
Browse files

Merge "Remove extraneous parentheses"

parents 48b447fe 54cdefc7
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;