summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2008-10-14 11:43:32 +0000
committerBjörn Stenberg <bjorn@haxx.se>2008-10-14 11:43:32 +0000
commit9cf024c5a8418b9d4850b718ab299863507312a6 (patch)
tree4f497d352a1918b9b99ac11bb4819fff151f21d4 /firmware
parent9558c4956d3d603c4d132af88633767810f3ba62 (diff)
downloadrockbox-9cf024c5a8418b9d4850b718ab299863507312a6.tar.gz
rockbox-9cf024c5a8418b9d4850b718ab299863507312a6.zip
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
Diffstat (limited to 'firmware')
-rw-r--r--firmware/drivers/tuner/s1a0903x01.c1
-rw-r--r--firmware/export/pcm.h24
2 files changed, 25 insertions, 0 deletions
diff --git a/firmware/drivers/tuner/s1a0903x01.c b/firmware/drivers/tuner/s1a0903x01.c
index f6442b269f..d2d9de8cfe 100644
--- a/firmware/drivers/tuner/s1a0903x01.c
+++ b/firmware/drivers/tuner/s1a0903x01.c
@@ -27,6 +27,7 @@
27#include "tuner.h" /* tuner abstraction interface */ 27#include "tuner.h" /* tuner abstraction interface */
28#include "fmradio.h" /* physical interface driver */ 28#include "fmradio.h" /* physical interface driver */
29#include "sound.h" 29#include "sound.h"
30#include "mas.h"
30 31
31#define DEFAULT_IN1 0x100003 /* Mute */ 32#define DEFAULT_IN1 0x100003 /* Mute */
32#define DEFAULT_IN2 0x140884 /* 5kHz, 7.2MHz crystal */ 33#define DEFAULT_IN2 0x140884 /* 5kHz, 7.2MHz crystal */
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 @@
23 23
24#include <sys/types.h> 24#include <sys/types.h>
25 25
26#define DMA_REC_ERROR_DMA (-1)
27#ifdef HAVE_SPDIF_REC
28#define DMA_REC_ERROR_SPDIF (-2)
29#endif
30
31/** Warnings **/
32/* pcm (dma) buffer has overflowed */
33#define PCMREC_W_PCM_BUFFER_OVF 0x00000001
34/* encoder output buffer has overflowed */
35#define PCMREC_W_ENC_BUFFER_OVF 0x00000002
36/** Errors **/
37/* failed to load encoder */
38#define PCMREC_E_LOAD_ENCODER 0x80001000
39/* error originating in encoder */
40#define PCMREC_E_ENCODER 0x80002000
41/* filename queue has desynced from stream markers */
42#define PCMREC_E_FNQ_DESYNC 0x80004000
43/* I/O error has occurred */
44#define PCMREC_E_IO 0x80008000
45#ifdef DEBUG
46/* encoder has written past end of allotted space */
47#define PCMREC_E_CHUNK_OVF 0x80010000
48#endif /* DEBUG */
49
26/** RAW PCM routines used with playback and recording **/ 50/** RAW PCM routines used with playback and recording **/
27 51
28/* Typedef for registered callback */ 52/* Typedef for registered callback */