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
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to