[FFmpeg-soc] [soc]: r2274 - mlp/mlpdec.c

ramiro subversion at mplayerhq.hu
Fri May 30 16:57:18 CEST 2008


Author: ramiro
Date: Fri May 30 16:57:18 2008
New Revision: 2274

Log:
Remove superfluous parentheses.

Modified:
   mlp/mlpdec.c

Modified: mlp/mlpdec.c
==============================================================================
--- mlp/mlpdec.c	(original)
+++ mlp/mlpdec.c	Fri May 30 16:57:18 2008
@@ -1042,7 +1042,7 @@ static int read_access_unit(AVCodecConte
                  && get_bits1(&gb) == 0);
 
         skip_bits(&gb, (-get_bits_count(&gb)) & 15);
-        if ((substream_data_len[substr] * 8) - get_bits_count(&gb) >= 48 &&
+        if (substream_data_len[substr] * 8 - get_bits_count(&gb) >= 48 &&
             (show_bits_long(&gb, 32) == 0xd234d234 ||
              show_bits_long(&gb, 20) == 0xd234e)) {
             skip_bits(&gb, 18);



More information about the FFmpeg-soc mailing list