diff options
author | Mans Rullgard <mans@mansr.com> | 2011-07-17 11:24:34 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-07-18 18:48:13 +0100 |
commit | 3f5dcde7e656618e531968fff25773d80e96278f (patch) | |
tree | e9e2df1afd6658c46f51c2b858b5234f8aa52c49 /libavcodec/lsp.h | |
parent | b13c6e336cea3bafd182448d97e50c42c4d7a710 (diff) | |
download | ffmpeg-3f5dcde7e656618e531968fff25773d80e96278f.tar.gz |
Remove VLAs in ff_amrwb_lsp2lpc()
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/lsp.h')
-rw-r--r-- | libavcodec/lsp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/lsp.h b/libavcodec/lsp.h index 3648ec74e5..4b955678ee 100644 --- a/libavcodec/lsp.h +++ b/libavcodec/lsp.h @@ -91,7 +91,7 @@ void ff_amrwb_lsp2lpc(const double *lsp, float *lp, int lp_order); void ff_acelp_lp_decode(int16_t* lp_1st, int16_t* lp_2nd, const int16_t* lsp_2nd, const int16_t* lsp_prev, int lp_order); -#define MAX_LP_HALF_ORDER 8 +#define MAX_LP_HALF_ORDER 10 #define MAX_LP_ORDER (2*MAX_LP_HALF_ORDER) /** |