diff options
author | Måns Rullgård <mans@mansr.com> | 2010-06-26 14:34:12 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-06-26 14:34:12 +0000 |
commit | 164d166e8590350d9e493ecaada98fd07c5e7da5 (patch) | |
tree | 1a070a93cd70b20cd36c726cc5ebfc7dbd3e16db /libavcodec/lsp.h | |
parent | 5228bcd8705523cee43e351e1a113e12aefcf837 (diff) | |
download | ffmpeg-164d166e8590350d9e493ecaada98fd07c5e7da5.tar.gz |
lsp: convert variable-length arrays to fixed size
Max LP order is defined to be 16, fixed-size buffers are OK.
Originally committed as revision 23795 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/lsp.h')
-rw-r--r-- | libavcodec/lsp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/lsp.h b/libavcodec/lsp.h index c3aee7b7dc..6d979e89c6 100644 --- a/libavcodec/lsp.h +++ b/libavcodec/lsp.h @@ -82,6 +82,7 @@ void ff_acelp_lp_decode(int16_t* lp_1st, int16_t* lp_2nd, const int16_t* lsp_2nd #define MAX_LP_HALF_ORDER 8 +#define MAX_LP_ORDER (2*MAX_LP_HALF_ORDER) /** * Reconstructs LPC coefficients from the line spectral pair frequencies. |