1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-14 13:25:05 +02:00

Assert that ff_lpc_calc_coefs() is called with a valid LPC method.

Patch by Patrik Kullman (patrik A yes D nu).

Originally committed as revision 17217 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Patrik Kullman 2009-02-13 22:03:11 +00:00 committed by Justin Ruggles
parent 83f63ffb22
commit eabe8c7033

View File

@ -112,7 +112,7 @@ int ff_lpc_calc_coefs(DSPContext *s,
int i, j, pass;
int opt_order;
assert(max_order >= MIN_LPC_ORDER && max_order <= MAX_LPC_ORDER);
assert(max_order >= MIN_LPC_ORDER && max_order <= MAX_LPC_ORDER && use_lpc > 0);
if(use_lpc == 1){
s->flac_compute_autocorr(samples, blocksize, max_order, autoc);