summaryrefslogtreecommitdiff
path: root/firmware/export/pcm.h
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2011-09-01 12:15:43 +0000
committerMichael Sevakis <jethead71@rockbox.org>2011-09-01 12:15:43 +0000
commit4db3e8965270dfe813a14c5ee9bcd0b645eb2edf (patch)
treeff785e25196226037c509428497b95f0e1e219b9 /firmware/export/pcm.h
parentd67d6a8462e02770d81d6a01f3193d0a2050fbe2 (diff)
downloadrockbox-4db3e8965270dfe813a14c5ee9bcd0b645eb2edf.tar.gz
rockbox-4db3e8965270dfe813a14c5ee9bcd0b645eb2edf.zip
Shuffle some functions around so that interfacing with playback.c in particular isn't required. Though playback does finish the audio init, pcm doesn't care who does it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30403 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/pcm.h')
-rw-r--r--firmware/export/pcm.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/export/pcm.h b/firmware/export/pcm.h
index 22c5ef350e..fb6581b119 100644
--- a/firmware/export/pcm.h
+++ b/firmware/export/pcm.h
@@ -76,6 +76,7 @@ void pcm_play_unlock(void);
76 76
77void pcm_init(void) INIT_ATTR; 77void pcm_init(void) INIT_ATTR;
78void pcm_postinit(void); 78void pcm_postinit(void);
79bool pcm_is_initialized(void);
79 80
80/* This is for playing "raw" PCM data */ 81/* This is for playing "raw" PCM data */
81void pcm_play_data(pcm_play_callback_type get_more, 82void pcm_play_data(pcm_play_callback_type get_more,