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

ramiro subversion at mplayerhq.hu
Tue Jul 1 17:28:50 CEST 2008


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;
 



More information about the FFmpeg-soc mailing list