From b425de71df7acdc82b4e466a5bac709d0dc15f64 Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Tue, 6 Mar 2007 20:32:13 +0000 Subject: Fix problem with recording screen creep and bag a bigfoot. Voice clips aren't long enough now to untrigger the thread boost that was supposed to be applied to the codec thread. The voice thread was needlessly boosting the codec thread and leaving it boosted which explains the encoders' ability to flood the output buffer when everything else was stopped in its tracks. Check which thread is calling pcmbuf_under_watermark and only initiate the boost when it's the codec thread. Always return the codec thread to its usual priority in pcmbuf_play_stop. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12649 a1c6a512-1295-4272-9138-f99709370657 --- firmware/thread.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'firmware/thread.c') diff --git a/firmware/thread.c b/firmware/thread.c index 281ab0fa54..614286c422 100644 --- a/firmware/thread.c +++ b/firmware/thread.c @@ -776,6 +776,11 @@ int thread_get_priority(struct thread_entry *thread) } #endif +struct thread_entry * thread_get_current(void) +{ + return cores[CURRENT_CORE].running; +} + void init_threads(void) { unsigned int core = CURRENT_CORE; -- cgit v1.2.3