[FFmpeg-soc] [soc]: r784 - qcelp/qcelpdec.c

reynaldo subversion at mplayerhq.hu
Tue Aug 14 18:52:16 CEST 2007


Author: reynaldo
Date: Tue Aug 14 18:52:15 2007
New Revision: 784

Log:
Fix error at clip boundary spoted by Aurelien Jacobs

Modified:
   qcelp/qcelpdec.c

Modified: qcelp/qcelpdec.c
==============================================================================
--- qcelp/qcelpdec.c	(original)
+++ qcelp/qcelpdec.c	Tue Aug 14 18:52:15 2007
@@ -865,7 +865,7 @@ static int qcelp_decode_frame(AVCodecCon
         /* WIP adaptive postfilter here */
 
         /* output stage */
-        outbuffer[i]=av_clip(lrintf(4*ppf_vector[i]), -32768, 32768);
+        outbuffer[i]=av_clip_int16(lrintf(4*ppf_vector[i]), -32768, 32767);
         av_log(avctx, AV_LOG_DEBUG, "%d", outbuffer[i]);
     }
     av_log(avctx, AV_LOG_DEBUG, "\n");



More information about the FFmpeg-soc mailing list