[FFmpeg-soc] [soc]: r1509 - amr/amrnbfloatdec.c

superdump subversion at mplayerhq.hu
Tue Dec 4 01:25:10 CET 2007


Author: superdump
Date: Tue Dec  4 01:25:10 2007
New Revision: 1509

Log:
Add missing pointer references


Modified:
   amr/amrnbfloatdec.c

Modified: amr/amrnbfloatdec.c
==============================================================================
--- amr/amrnbfloatdec.c	(original)
+++ amr/amrnbfloatdec.c	Tue Dec  4 01:25:10 2007
@@ -476,8 +476,8 @@ static void decode_pitch_lag_3(AMRContex
                 p->pitch_lag_frac = pitch_index - p->pitch_lag_int*3 - 9;
             }else {
                 // integer only precision for [t1_temp+1, t1_temp+4]
-                pitch_lag_int = pitch_index + t1_temp - 11;
-                pitch_lag_frac = 0;
+                p->pitch_lag_int = pitch_index + t1_temp - 11;
+                p->pitch_lag_frac = 0;
             }
         }else {
             // decoding with 5 or 6 bit resolution, 1/3 fractional precision



More information about the FFmpeg-soc mailing list