mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avcodec/lpc: check for zero err in normalization in compute_lpc_coefs()
Fixes: floating point division by 0 Fixes: Ticket8213 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
6a6a765fa4
commit
70874e024a
@ -186,7 +186,8 @@ static inline int AAC_RENAME(compute_lpc_coefs)(const LPC_TYPE *autoc, int max_o
|
||||
for(j=0; j<i; j++)
|
||||
r -= lpc_last[j] * autoc[i-j-1];
|
||||
|
||||
r /= err;
|
||||
if (err)
|
||||
r /= err;
|
||||
err *= FIXR(1.0) - (r * r);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user