[FFmpeg-soc] [soc]: r5601 - indeo5/indeo5.c

kostya subversion at mplayerhq.hu
Wed Jan 27 17:10:03 CET 2010


Author: kostya
Date: Wed Jan 27 17:10:03 2010
New Revision: 5601

Log:
cosmetics: add braces to 'else' block

Modified:
   indeo5/indeo5.c

Modified: indeo5/indeo5.c
==============================================================================
--- indeo5/indeo5.c	Wed Jan 27 17:05:27 2010	(r5600)
+++ indeo5/indeo5.c	Wed Jan 27 17:10:03 2010	(r5601)
@@ -465,8 +465,9 @@ static int decode_band_hdr(IVI5DecContex
     if (get_bits1(&ctx->gb)) {
         band->checksum = get_bits(&ctx->gb, 16);
         band->checksum_present = 1;
-    } else
+    } else {
         band->checksum_present = 0;
+    }
 #else
     if (get_bits1(&ctx->gb))
         skip_bits(&ctx->gb, 16); /* ignore band checksum */


More information about the FFmpeg-soc mailing list