diff options
| -rw-r--r-- | apps/voice_thread.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/voice_thread.c b/apps/voice_thread.c index 7ebfb1b..8770233 100644 --- a/apps/voice_thread.c +++ b/apps/voice_thread.c @@ -326,7 +326,8 @@ static void voice_thread(void) { /* Make bit buffer use our own buffer */ speex_bits_set_bit_buffer(&td.bits, td.vi.start, td.vi.size); - speex_decoder_ctl(td.st, SPEEX_GET_LOOKAHEAD, &td.lookahead); + /* Don't skip any samples when we're stringing clips together */ + td.lookahead = 0; /* Paranoid check - be sure never to somehow get stuck in a * loop without listening to the queue */ |