# HG changeset patch # User rbultje # Date 1272739502 0 # Node ID da59da2961536409e4ef3bc006115b41d434249b # Parent f838fa3eefee0e6bdc63d9a80b224c23cb902029 Fix buffer overrun (or, well, actually a typo, 80 should be 0x80...). Partially fixes issue 1758. diff -r f838fa3eefee -r da59da296153 wmavoice.c --- a/wmavoice.c Fri Apr 30 23:32:42 2010 +0000 +++ b/wmavoice.c Sat May 01 18:45:02 2010 +0000 @@ -278,7 +278,7 @@ ///< 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 /**