From 77220147b5678dfc148171263aafe07dfde51b67 Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Wed, 30 May 2012 12:55:26 -0400 Subject: Get voice PCM queue indexes updating in right order... ...from the compiled code standpoint anyway. frame_out was being incremented before updating size...sometimes...depending on what GCC was up to. This seems to help. Change-Id: Ie4ee3337a2937bd2c26f0a9c4a1a00467954821b --- apps/voice_thread.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'apps/voice_thread.c') diff --git a/apps/voice_thread.c b/apps/voice_thread.c index c9520e6165..87e4eee9cb 100644 --- a/apps/voice_thread.c +++ b/apps/voice_thread.c @@ -143,7 +143,8 @@ static struct voice_buf /* Buffer for decoded samples */ spx_int16_t spx_outbuf[VOICE_FRAME_COUNT]; /* Queue frame indexes */ - unsigned int frame_in, frame_out; + unsigned int volatile frame_in; + unsigned int volatile frame_out; /* For PCM pointer adjustment */ struct voice_thread_data *td; /* Buffers for mixing voice */ @@ -197,7 +198,7 @@ static struct buflib_callbacks ops = }; /* Number of frames in queue */ -static inline int voice_unplayed_frames(void) +static unsigned int voice_unplayed_frames(void) { return voice_buf->frame_in - voice_buf->frame_out; } @@ -205,11 +206,13 @@ static inline int voice_unplayed_frames(void) /* Mixer channel callback */ static void voice_pcm_callback(const void **start, size_t *size) { + unsigned int frame_out = ++voice_buf->frame_out; + if (voice_unplayed_frames() == 0) return; /* Done! */ struct voice_pcm_frame *frame = - &voice_buf->frames[++voice_buf->frame_out % VOICE_FRAMES]; + &voice_buf->frames[frame_out % VOICE_FRAMES]; *start = frame->pcm; *size = frame->size; @@ -219,7 +222,7 @@ static void voice_pcm_callback(const void **start, size_t *size) static void voice_start_playback(void) { if (mixer_channel_status(PCM_MIXER_CHAN_VOICE) != CHANNEL_STOPPED || - voice_unplayed_frames() <= 0) + voice_unplayed_frames() == 0) return; struct voice_pcm_frame *frame = @@ -254,8 +257,10 @@ static void voice_buf_commit(int count) { if (count > 0) { - voice_buf->frames[voice_buf->frame_in++ % VOICE_FRAMES].size = + unsigned int frame_in = voice_buf->frame_in; + voice_buf->frames[frame_in % VOICE_FRAMES].size = count * 2 * sizeof (int16_t); + voice_buf->frame_in = frame_in + 1; } } -- cgit