[FFmpeg-soc] [soc]: r4863 - amr/amrnbdec.c

cmcq subversion at mplayerhq.hu
Fri Jul 31 15:08:22 CEST 2009


Author: cmcq
Date: Fri Jul 31 15:08:22 2009
New Revision: 4863

Log:
Remove redundant variable

Modified:
   amr/amrnbdec.c

Modified: amr/amrnbdec.c
==============================================================================
--- amr/amrnbdec.c	Fri Jul 31 15:07:57 2009	(r4862)
+++ amr/amrnbdec.c	Fri Jul 31 15:08:22 2009	(r4863)
@@ -486,12 +486,11 @@ static void decode_pitch_vector(AMRConte
                                 const AMRNBSubframe *amr_subframe,
                                 const int subframe)
 {
-    int prev_pitch_lag_int = p->pitch_lag_int;
     int pitch_lag_frac;
     // decode integer and fractional parts of pitch lag from parsed pitch
     // index
     decode_pitch_lag(&p->pitch_lag_int, &pitch_lag_frac, amr_subframe->p_lag,
-                     prev_pitch_lag_int, subframe, p->cur_frame_mode);
+                     p->pitch_lag_int, subframe, p->cur_frame_mode);
 
     // interpolate the past excitation at the pitch lag to obtain the pitch
     // vector


More information about the FFmpeg-soc mailing list