summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2010-05-01 18:45:02 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2010-05-01 18:45:02 +0000
commit593a8614705eb1b098185db6e4d227c67e8c3597 (patch)
tree57e333732a52f71fa7bfc32141aee3afd1dde6df /libavcodec
parentc99d506b3b9dd704acabb05636b57f56554f9378 (diff)
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
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/wmavoice.c2
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
/**