Un-static squelch history.

This commit is contained in:
Jared Boone 2016-01-11 11:38:33 -08:00
parent 64966d4539
commit e169a46367
2 changed files with 2 additions and 1 deletions

View file

@ -48,7 +48,6 @@ void AudioOutput::write(
hpf.execute_in_place(audio);
deemph.execute_in_place(audio);
static uint64_t audio_present_history = 0;
audio_present_history = (audio_present_history << 1) | (audio_present_now ? 1 : 0);
const bool audio_present = (audio_present_history != 0);