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

vitor subversion at mplayerhq.hu
Sun Jul 13 22:00:53 CEST 2008


Author: vitor
Date: Sun Jul 13 22:00:53 2008
New Revision: 2775

Log:
Remove av_clipf() funcion, it is now in libavutil/common.h

Modified:
   amr/amrnbfloatdec.c

Modified: amr/amrnbfloatdec.c
==============================================================================
--- amr/amrnbfloatdec.c	(original)
+++ amr/amrnbfloatdec.c	Sun Jul 13 22:00:53 2008
@@ -865,15 +865,6 @@ static float fixed_gain_prediction(float
 
 /*** pre-processing functions ***/
 
-static inline float av_clipf(float a, float min, float max) {
-    if(a>max)
-        return max;
-    else if(a<min)
-        return min;
-    else
-        return a;
-}
-
 /**
  * Comparison function for use with qsort
  *



More information about the FFmpeg-soc mailing list