summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2006-11-28 15:00:56 +0000
committerMichael Sevakis <jethead71@rockbox.org>2006-11-28 15:00:56 +0000
commit97d1ca5a238b9fa676fd59cb81cb0ec9069a4ba9 (patch)
treecbb2526852c17dbeb2ad361a8362f36fd0ad693f /firmware
parent9be9767a49fea9b12ff0437acabb0ad0e30b3d52 (diff)
SWCODEC: Audio-related threads must be free of further tasks before returning buffers. Cleanup declarations of related functions.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11618 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/export/pcm_record.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/pcm_record.h b/firmware/export/pcm_record.h
index 84db80680d..38ec202cdc 100644
--- a/firmware/export/pcm_record.h
+++ b/firmware/export/pcm_record.h
@@ -47,10 +47,10 @@ void pcm_calculate_rec_peaks(int *left, int *right);
/** General functions for high level codec recording **/
/* pcm_rec_error_clear is deprecated for general use. audio_error_clear
should be used */
-/* void pcm_rec_error_clear(void); */
+void pcm_rec_error_clear(void);
/* pcm_rec_status is deprecated for general use. audio_status merges the
results for consistency with the hardware codec version */
-/* unsigned long pcm_rec_status(void); */
+unsigned long pcm_rec_status(void);
void pcm_rec_init(void);
int pcm_rec_current_bitrate(void);
int pcm_rec_encoder_afmt(void); /* AFMT_* value, AFMT_UNKNOWN if none */