[FFmpeg-soc] [soc]: r3136 - mlp/mlpenc.c

ramiro subversion at mplayerhq.hu
Sun Aug 10 15:36:48 CEST 2008


Author: ramiro
Date: Sun Aug 10 15:36:47 2008
New Revision: 3136

Log:
Cosmetics: add brackets around if to prepare for next commit.

Modified:
   mlp/mlpenc.c

Modified: mlp/mlpenc.c
==============================================================================
--- mlp/mlpenc.c	(original)
+++ mlp/mlpenc.c	Sun Aug 10 15:36:47 2008
@@ -815,9 +815,9 @@ static void codebook_bits(MLPEncodeConte
             if (temp_bo.bitcount < best_bo.bitcount)
                 best_bo = temp_bo;
 
-            if (temp_bo.bitcount < previous_count)
+            if (temp_bo.bitcount < previous_count) {
                 is_greater = 0;
-            else if (++is_greater >= 5)
+            } else if (++is_greater >= 5)
                 break;
 
             previous_count = temp_bo.bitcount;



More information about the FFmpeg-soc mailing list