[FFmpeg-cvslog] r23005 - trunk/libavcodec/wmavoice.c

rbultje subversion
Sat May 1 20:45:03 CEST 2010


Author: rbultje
Date: Sat May  1 20:45:02 2010
New Revision: 23005

Log:
Fix buffer overrun (or, well, actually a typo, 80 should be 0x80...).
Partially fixes issue 1758.

Modified:
   trunk/libavcodec/wmavoice.c

Modified: trunk/libavcodec/wmavoice.c
==============================================================================
--- trunk/libavcodec/wmavoice.c	Sat May  1 17:36:51 2010	(r23004)
+++ trunk/libavcodec/wmavoice.c	Sat May  1 20:45:02 2010	(r23005)
@@ -278,7 +278,7 @@ typedef struct {
                                   ///< aligned buffer for LPC tilting
     DECLARE_ALIGNED(16, float, denoise_coeffs_pf)[0x80];
                                   ///< aligned buffer for denoise coefficients
-    DECLARE_ALIGNED(16, float, synth_filter_out_buf)[80 + MAX_LSPS_ALIGN16];
+    DECLARE_ALIGNED(16, float, synth_filter_out_buf)[0x80 + MAX_LSPS_ALIGN16];
                                   ///< aligned buffer for postfilter speech
                                   ///< synthesis
     /**



More information about the ffmpeg-cvslog mailing list