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

Commit 5f3eef9a authored by Chih-hung Hsieh's avatar Chih-hung Hsieh Committed by Android Git Automerger
Browse files

am 7a200235: Merge "Remove extraneous parentheses"

* commit '7a200235':
  Remove extraneous parentheses
parents dd9d3e50 7a200235
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -547,7 +547,7 @@ static void writeFillElement( const UWord8 *ancBytes,
    totFillBits = totFillBits - (3+4);
    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);
      esc_count = min( ((totFillBits >> 3) - ((1<<4)-1)), (1<<8)-1);
      WriteBits(hBitStream,esc_count,8);
      WriteBits(hBitStream,esc_count,8);
+1 −1
Original line number Original line Diff line number Diff line
@@ -404,7 +404,7 @@ static void noise_estimate_update(
		alpha_down = ALPHA_DOWN1;
		alpha_down = ALPHA_DOWN1;
	} else
	} else
	{
	{
		if ((st->stat_count == 0))
		if (st->stat_count == 0)
		{
		{
			alpha_up = ALPHA_UP2;
			alpha_up = ALPHA_UP2;
			alpha_down = ALPHA_DOWN2;
			alpha_down = ALPHA_DOWN2;