From 9cf024c5a8418b9d4850b718ab299863507312a6 Mon Sep 17 00:00:00 2001 From: Björn Stenberg Date: Tue, 14 Oct 2008 11:43:32 +0000 Subject: Red build fix: Moved PCM #defines from pcm_record.h to pcm.h. Added necessary #includes to statusbar.c and s1a0903x01.c. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18808 a1c6a512-1295-4272-9138-f99709370657 --- firmware/export/pcm.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'firmware/export') diff --git a/firmware/export/pcm.h b/firmware/export/pcm.h index 97a1939dbb..1660f0670d 100644 --- a/firmware/export/pcm.h +++ b/firmware/export/pcm.h @@ -23,6 +23,30 @@ #include +#define DMA_REC_ERROR_DMA (-1) +#ifdef HAVE_SPDIF_REC +#define DMA_REC_ERROR_SPDIF (-2) +#endif + +/** Warnings **/ +/* pcm (dma) buffer has overflowed */ +#define PCMREC_W_PCM_BUFFER_OVF 0x00000001 +/* encoder output buffer has overflowed */ +#define PCMREC_W_ENC_BUFFER_OVF 0x00000002 +/** Errors **/ +/* failed to load encoder */ +#define PCMREC_E_LOAD_ENCODER 0x80001000 +/* error originating in encoder */ +#define PCMREC_E_ENCODER 0x80002000 +/* filename queue has desynced from stream markers */ +#define PCMREC_E_FNQ_DESYNC 0x80004000 +/* I/O error has occurred */ +#define PCMREC_E_IO 0x80008000 +#ifdef DEBUG +/* encoder has written past end of allotted space */ +#define PCMREC_E_CHUNK_OVF 0x80010000 +#endif /* DEBUG */ + /** RAW PCM routines used with playback and recording **/ /* Typedef for registered callback */ -- cgit v1.2.3