Skip to content
Snippets Groups Projects
Commit 593a8614 authored by Ronald S. Bultje's avatar Ronald S. Bultje
Browse files

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
parent c99d506b
No related branches found
No related tags found
No related merge requests found
......@@ -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
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment