mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-05-29 10:01:41 +00:00
[Core] VAD: Add a math sanity check to the switch_vad_process
This commit is contained in:
parent
f87a5eeb95
commit
85400015b7
@ -206,7 +206,9 @@ SWITCH_DECLARE(switch_vad_state_t) switch_vad_process(switch_vad_t *vad, int16_t
|
|||||||
j += vad->channels;
|
j += vad->channels;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (samples && vad->divisor && samples >= vad->divisor) {
|
||||||
score = (uint32_t)(energy / (samples / vad->divisor));
|
score = (uint32_t)(energy / (samples / vad->divisor));
|
||||||
|
}
|
||||||
#ifdef SWITCH_HAVE_FVAD
|
#ifdef SWITCH_HAVE_FVAD
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user