[FFmpeg-soc] [soc]: r5119 - als/alsdec.c

thilo.borgmann subversion at mplayerhq.hu
Sat Aug 15 13:27:24 CEST 2009


Author: thilo.borgmann
Date: Sat Aug 15 13:27:23 2009
New Revision: 5119

Log:
Remove unnecessary braces.

Modified:
   als/alsdec.c

Modified: als/alsdec.c
==============================================================================
--- als/alsdec.c	Sat Aug 15 13:25:03 2009	(r5118)
+++ als/alsdec.c	Sat Aug 15 13:27:23 2009	(r5119)
@@ -486,11 +486,10 @@ static int read_block_data(ALSDecContext
         if (const_block) {
             unsigned int const_val_bits;
 
-            if (sconf->resolution == 2 || sconf->floating) {
+            if (sconf->resolution == 2 || sconf->floating)
                 const_val_bits = 24;
-            } else {
+            else
                 const_val_bits = avctx->bits_per_raw_sample;
-            }
 
             const_val = get_bits_long(gb, const_val_bits);
         }


More information about the FFmpeg-soc mailing list