The encoder would crash in the PVQ search if fed NaNs via the float interface. This patch protects against it in two sufficient ways: Making the PVQ search robust against NaNs and by squashing NaNs to zero on input.
Thanks to David Richards for reporting this failure mode.
This commit is contained in:
parent
280c060bb1
commit
58ecb1ac15
2 changed files with 5 additions and 1 deletions
|
@ -1086,6 +1086,8 @@ int celt_encode_with_ec_float(CELTEncoder * restrict st, const celt_sig * pcm, i
|
|||
|
||||
x = SCALEIN(*pcmp);
|
||||
#ifndef FIXED_POINT
|
||||
if (!(x==x))
|
||||
x = 0;
|
||||
if (st->clip)
|
||||
x = MAX32(-65536.f, MIN32(65536.f,x));
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue