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");
_______________________________________________
FFmpeg-soc mailing list
[email protected]
http://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to