summaryrefslogtreecommitdiff
path: root/firmware/export/pcm.h
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2008-12-12 11:01:07 +0000
committerMichael Sevakis <jethead71@rockbox.org>2008-12-12 11:01:07 +0000
commite69d567d9ebf7d236ff9663b11ac396cc71dcd75 (patch)
tree093b9d1bc979d79be1fcd0daac1d8daf8ac55503 /firmware/export/pcm.h
parent0ad97d13fc52b28de566dc0ddaf7245583eec2cc (diff)
downloadrockbox-e69d567d9ebf7d236ff9663b11ac396cc71dcd75.tar.gz
rockbox-e69d567d9ebf7d236ff9663b11ac396cc71dcd75.zip
Bring consistency to pcm implementation and samplerate handling. Less low-level duplication. A small test_sampr fix so it works on coldfire again.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19400 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/pcm.h')
-rw-r--r--firmware/export/pcm.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/firmware/export/pcm.h b/firmware/export/pcm.h
index 1660f0670d..ac8ddb1b3c 100644
--- a/firmware/export/pcm.h
+++ b/firmware/export/pcm.h
@@ -57,7 +57,7 @@ typedef int (*pcm_more_callback_type2)(int status);
57/* set the pcm frequency - use values in hw_sampr_list 57/* set the pcm frequency - use values in hw_sampr_list
58 * use -1 for the default frequency 58 * use -1 for the default frequency
59 */ 59 */
60void pcm_set_frequency(unsigned int frequency); 60void pcm_set_frequency(unsigned int samplerate);
61/* apply settings to hardware immediately */ 61/* apply settings to hardware immediately */
62void pcm_apply_settings(void); 62void pcm_apply_settings(void);
63 63
@@ -87,6 +87,8 @@ bool pcm_is_playing(void);
87 specific portion **/ 87 specific portion **/
88 88
89extern unsigned long pcm_curr_sampr; 89extern unsigned long pcm_curr_sampr;
90extern unsigned long pcm_sampr;
91extern int pcm_fsel;
90 92
91/* the registered callback function to ask for more mp3 data */ 93/* the registered callback function to ask for more mp3 data */
92extern volatile pcm_more_callback_type pcm_callback_for_more; 94extern volatile pcm_more_callback_type pcm_callback_for_more;
@@ -102,6 +104,8 @@ void pcm_play_dma_pause(bool pause);
102void pcm_play_dma_stopped_callback(void); 104void pcm_play_dma_stopped_callback(void);
103const void * pcm_play_dma_get_peak_buffer(int *count); 105const void * pcm_play_dma_get_peak_buffer(int *count);
104 106
107void pcm_dma_apply_settings(void);
108
105#ifdef HAVE_RECORDING 109#ifdef HAVE_RECORDING
106 110
107/** RAW PCM recording routines **/ 111/** RAW PCM recording routines **/