diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-28 03:27:16 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-28 03:27:16 +0100 |
commit | c4a36b6f70f37e668874d134f955eb96e23853c9 (patch) | |
tree | 83b2828a9570d4077acb3dd6ca4903fc94800e74 | |
parent | 8edf9b1fa44dbcc807e9298ce97791a12df85956 (diff) | |
download | ffmpeg-c4a36b6f70f37e668874d134f955eb96e23853c9.tar.gz |
lpc: check that lpc_type is valid in ff_lpc_calc_coefs
Fixes CID700759
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/lpc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/lpc.c b/libavcodec/lpc.c index c8d24c03f3..5ccd5a8e08 100644 --- a/libavcodec/lpc.c +++ b/libavcodec/lpc.c @@ -226,7 +226,8 @@ int ff_lpc_calc_coefs(LPCContext *s, } for(i=max_order-1; i>0; i--) ref[i] = ref[i-1] - ref[i]; - } + } else + av_assert0(0); opt_order = max_order; if(omethod == ORDER_METHOD_EST) { |