diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2011-03-02 08:49:38 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2011-03-02 08:49:38 +0000 |
| commit | 12375d1d3aa41f7d277a9af584c7b810b636ec95 (patch) | |
| tree | fc9ce8029a6910a8dac71b3bf60c71155a01eea4 /apps/codecs | |
| parent | 05e180a1308a095d51d51d0e047fcd44425ea88f (diff) | |
| download | rockbox-12375d1d3aa41f7d277a9af584c7b810b636ec95.zip rockbox-12375d1d3aa41f7d277a9af584c7b810b636ec95.tar.gz rockbox-12375d1d3aa41f7d277a9af584c7b810b636ec95.tar.bz2 rockbox-12375d1d3aa41f7d277a9af584c7b810b636ec95.tar.xz | |
Merge functionality of wakeups and semaphores-- fewer APIs and object types. semaphore_wait takes a timeout now so codecs and plugins have to be made incompatible. Don't make semaphores for targets not using them.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29492 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/mpa.c | 4 | ||||
| -rw-r--r-- | apps/codecs/spc.c | 17 |
2 files changed, 10 insertions, 11 deletions
diff --git a/apps/codecs/mpa.c b/apps/codecs/mpa.c index d3da63b..4d6c52f 100644 --- a/apps/codecs/mpa.c +++ b/apps/codecs/mpa.c @@ -211,7 +211,7 @@ static void mad_synth_thread(void) { while(1) { ci->semaphore_release(&synth_done_sem); - ci->semaphore_wait(&synth_pending_sem); + ci->semaphore_wait(&synth_pending_sem, TIMEOUT_BLOCK); if(die) break; @@ -224,7 +224,7 @@ static void mad_synth_thread(void) * synthesized */ static inline void mad_synth_thread_wait_pcm(void) { - ci->semaphore_wait(&synth_done_sem); + ci->semaphore_wait(&synth_done_sem, TIMEOUT_BLOCK); } /* increment the done semaphore - used after a wait for idle to preserve the diff --git a/apps/codecs/spc.c b/apps/codecs/spc.c index d4ed741..4db2878 100644 --- a/apps/codecs/spc.c +++ b/apps/codecs/spc.c @@ -244,7 +244,7 @@ static inline void samples_release_wrbuf(void) static inline struct sample_queue_chunk * samples_get_wrbuf(void) { - ci->semaphore_wait(&sample_queue.emu_sem_tail); + ci->semaphore_wait(&sample_queue.emu_sem_tail, TIMEOUT_BLOCK); return &sample_queue.wav_chunk[sample_queue.tail & WAV_CHUNK_MASK]; } @@ -259,7 +259,7 @@ static inline void samples_release_rdbuf(void) static inline int32_t * samples_get_rdbuf(void) { - ci->semaphore_wait(&sample_queue.emu_sem_head); + ci->semaphore_wait(&sample_queue.emu_sem_head, TIMEOUT_BLOCK); if (ci->stop_codec || ci->new_track) { @@ -275,7 +275,7 @@ static intptr_t emu_thread_send_msg(long id, intptr_t data) { struct sample_queue_chunk *chunk; /* Grab an audio output buffer */ - ci->semaphore_wait(&sample_queue.emu_sem_head); + ci->semaphore_wait(&sample_queue.emu_sem_head, TIMEOUT_BLOCK); chunk = &sample_queue.wav_chunk[sample_queue.head & WAV_CHUNK_MASK]; /* Place a message in it instead of audio */ chunk->id = id; @@ -285,7 +285,7 @@ static intptr_t emu_thread_send_msg(long id, intptr_t data) if (id != SPC_EMU_QUIT) { /* Wait for a response */ - ci->semaphore_wait(&sample_queue.emu_evt_reply); + ci->semaphore_wait(&sample_queue.emu_evt_reply, TIMEOUT_BLOCK); } return sample_queue.retval; @@ -308,11 +308,10 @@ static bool emu_thread_process_msg(struct sample_queue_chunk *chunk) sample_queue.retval = SPC_load_spc(&spc_emu, ld->buf, ld->size); /* Empty the audio queue */ - /* This is a dirty hack a timeout based wait would make unnescessary but - still safe because the other thread is known to be waiting for a reply - and is not using the objects. */ - ci->semaphore_init(&sample_queue.emu_sem_tail, 2, 2); - ci->semaphore_init(&sample_queue.emu_sem_head, 2, 0); + ci->semaphore_release(&sample_queue.emu_sem_tail); + ci->semaphore_release(&sample_queue.emu_sem_tail); + ci->semaphore_wait(&sample_queue.emu_sem_head, TIMEOUT_NOBLOCK); + ci->semaphore_wait(&sample_queue.emu_sem_head, TIMEOUT_NOBLOCK); sample_queue.head = sample_queue.tail = 0; } |