[FFmpeg-soc] [soc]: r4356 - wmapro/wma3dec.c

faust3 subversion at mplayerhq.hu
Sun May 31 11:07:40 CEST 2009


Author: faust3
Date: Sun May 31 11:07:40 2009
New Revision: 4356

Log:
reindent after previous commit

Modified:
   wmapro/wma3dec.c

Modified: wmapro/wma3dec.c
==============================================================================
--- wmapro/wma3dec.c	Sun May 31 11:04:15 2009	(r4355)
+++ wmapro/wma3dec.c	Sun May 31 11:07:40 2009	(r4356)
@@ -1215,18 +1215,18 @@ static int wma_decode_subframe(WMA3Decod
         }
         s->quant_step += quant;
         if(quant <= -32 || quant > 30){
-        while(get_bits_count(&s->gb) + 5 < s->num_saved_bits){
-            quant = get_bits(&s->gb,5);
-            if(quant != 31){
-                s->quant_step += quant * sign;
-                break;
-            }
-            s->quant_step += 31 * sign;
-            if(s->quant_step < 0){
-                av_log(s->avctx,AV_LOG_DEBUG,"negative quant step\n");
+            while(get_bits_count(&s->gb) + 5 < s->num_saved_bits){
+                quant = get_bits(&s->gb,5);
+                if(quant != 31){
+                    s->quant_step += quant * sign;
+                    break;
+                }
+                s->quant_step += 31 * sign;
+                if(s->quant_step < 0){
+                    av_log(s->avctx,AV_LOG_DEBUG,"negative quant step\n");
+                }
             }
         }
-        }
 
         /** decode quantization step modifiers for every channel */
 


More information about the FFmpeg-soc mailing list