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