diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2010-05-01 18:45:02 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-05-01 18:45:02 +0000 |
commit | 593a8614705eb1b098185db6e4d227c67e8c3597 (patch) | |
tree | 57e333732a52f71fa7bfc32141aee3afd1dde6df | |
parent | c99d506b3b9dd704acabb05636b57f56554f9378 (diff) | |
download | ffmpeg-593a8614705eb1b098185db6e4d227c67e8c3597.tar.gz |
Fix buffer overrun (or, well, actually a typo, 80 should be 0x80...).
Partially fixes issue 1758.
Originally committed as revision 23005 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/wmavoice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmavoice.c b/libavcodec/wmavoice.c index 04bb6b3420..088a6d3463 100644 --- a/libavcodec/wmavoice.c +++ b/libavcodec/wmavoice.c @@ -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 /** |