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

kmalaussene subversion at mplayerhq.hu
Mon Feb 23 02:25:21 CET 2009


Author: kmalaussene
Date: Mon Feb 23 02:25:21 2009
New Revision: 4131

Log:
Rename do_phase_dispersion into apply_ir_filter to reflect what it does.

Modified:
   amr/amrnbfloatdec.c

Modified: amr/amrnbfloatdec.c
==============================================================================
--- amr/amrnbfloatdec.c	Mon Feb 23 02:24:24 2009	(r4130)
+++ amr/amrnbfloatdec.c	Mon Feb 23 02:25:21 2009	(r4131)
@@ -699,7 +699,7 @@ static float fixed_gain_prediction(float
  *
  * @param p the context
  */
-void do_phase_dispersion(AMRContext *p, float *fixed_vector)
+void apply_ir_filter(AMRContext *p, float *fixed_vector)
 {
     int ir_filter_strength;
 
@@ -970,7 +970,7 @@ static int amrnb_decode_frame(AVCodecCon
             }
         }
 
-        do_phase_dispersion(p, p->fixed_vector);
+        apply_ir_filter(p, p->fixed_vector);
 
 /*** end of pre-processing ***/
 



More information about the FFmpeg-soc mailing list