util/spkmodem-recv: another minor code cleanup
Signed-off-by: Leah Rowe <leah@libreboot.org>fsdg20230625
parent
a61ab37b67
commit
9a6d290871
|
@ -66,9 +66,8 @@ handle_audio(void)
|
||||||
|
|
||||||
if (lp > (3 * SAMPLES_PER_FRAME)) {
|
if (lp > (3 * SAMPLES_PER_FRAME)) {
|
||||||
ascii_bit = 7;
|
ascii_bit = 7;
|
||||||
ascii = 0;
|
ascii = lp = 0;
|
||||||
lp = 0;
|
++llp;
|
||||||
llp++;
|
|
||||||
}
|
}
|
||||||
if (llp == FLUSH_TIMEOUT)
|
if (llp == FLUSH_TIMEOUT)
|
||||||
if (fflush(stdout) == EOF)
|
if (fflush(stdout) == EOF)
|
||||||
|
@ -98,8 +97,9 @@ fetch_sample(void)
|
||||||
read_frame(ringpos);
|
read_frame(ringpos);
|
||||||
|
|
||||||
pulse[ringpos] = (abs(frame[ringpos]) > THRESHOLD) ? 1 : 0;
|
pulse[ringpos] = (abs(frame[ringpos]) > THRESHOLD) ? 1 : 0;
|
||||||
if (pulse[ringpos++])
|
if (pulse[ringpos])
|
||||||
++f2;
|
++f2;
|
||||||
|
++ringpos;
|
||||||
ringpos %= 2 * SAMPLES_PER_FRAME;
|
ringpos %= 2 * SAMPLES_PER_FRAME;
|
||||||
++lp;
|
++lp;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue