summaryrefslogtreecommitdiff
path: root/apps/SOURCES
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2013-05-31 02:41:02 -0400
committerMichael Sevakis <jethead71@rockbox.org>2013-05-31 03:20:35 -0400
commit5857c44017a1641fce7f00da7f16c143daacbaf6 (patch)
treeb8a7ff134977ee8dd6b25b5591f4eb81172f74ab /apps/SOURCES
parentdf6e1bcce5071e02b5cd46736bff87ca0dcceffe (diff)
downloadrockbox-5857c44017a1641fce7f00da7f16c143daacbaf6.tar.gz
rockbox-5857c44017a1641fce7f00da7f16c143daacbaf6.zip
Refactor audio thread to run both recording and playback.
Eliminates the pcmrec thread and keeps playback and recording engine operation mutually-exclusive. audio_thread.c contains the audio thread which branches to the correct engine depending upon the request. It also handles the main audio initialization. Moves pcm_init into main.c just before dsp_init because I don't want that one in audio_init in the new file. (Also makes revision df6e1bc pointless ;) Change-Id: Ifc1db24404e6d8dd9ac42d9f4dfbc207aa9a26e1
Diffstat (limited to 'apps/SOURCES')
-rw-r--r--apps/SOURCES1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/SOURCES b/apps/SOURCES
index 4b28f8888b..b22f597b4a 100644
--- a/apps/SOURCES
+++ b/apps/SOURCES
@@ -163,6 +163,7 @@ radio/radioart.c
163#if INPUT_SRC_CAPS != 0 163#if INPUT_SRC_CAPS != 0
164audio_path.c 164audio_path.c
165#endif /* INPUT_SRC_CAPS != 0 */ 165#endif /* INPUT_SRC_CAPS != 0 */
166audio_thread.c
166pcmbuf.c 167pcmbuf.c
167codec_thread.c 168codec_thread.c
168playback.c 169playback.c