Author: ramiro
Date: Tue Jul  1 17:28:50 2008
New Revision: 2631

Log:
Calculate index only once.

Modified:
   mlp/mlpdec.c

Modified: mlp/mlpdec.c
==============================================================================
--- mlp/mlpdec.c        (original)
+++ mlp/mlpdec.c        Tue Jul  1 17:28:50 2008
@@ -755,7 +755,6 @@ static int filter_sample(MLPDecodeContex
     m->filter_state[channel][FIR][index] = result;
     m->filter_index[channel][FIR] = index;
 
-    index = INDEX(channel, IIR, -1);
     m->filter_state[channel][IIR][index] = result - accum;
     m->filter_index[channel][IIR] = index;
 
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to