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

ramiro subversion at mplayerhq.hu
Tue Jul 1 17:29:49 CEST 2008


Author: ramiro
Date: Tue Jul  1 17:29:49 2008
New Revision: 2632

Log:
Cosmetics: reorder code.

Modified:
   mlp/mlpdec.c

Modified: mlp/mlpdec.c
==============================================================================
--- mlp/mlpdec.c	(original)
+++ mlp/mlpdec.c	Tue Jul  1 17:29:49 2008
@@ -752,10 +752,10 @@ static int filter_sample(MLPDecodeContex
                 & ~((1 << s->quant_step_size[channel]) - 1);
 
     index = INDEX(channel, FIR, -1);
-    m->filter_state[channel][FIR][index] = result;
-    m->filter_index[channel][FIR] = index;
 
+    m->filter_state[channel][FIR][index] = result;
     m->filter_state[channel][IIR][index] = result - accum;
+    m->filter_index[channel][FIR] = index;
     m->filter_index[channel][IIR] = index;
 
 #undef INDEX



More information about the FFmpeg-soc mailing list