summaryrefslogtreecommitdiff
path: root/apps/recorder/pcm_record.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/pcm_record.h')
-rw-r--r--apps/recorder/pcm_record.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/apps/recorder/pcm_record.h b/apps/recorder/pcm_record.h
index f29d0a5da8..3d9bb4c379 100644
--- a/apps/recorder/pcm_record.h
+++ b/apps/recorder/pcm_record.h
@@ -22,6 +22,25 @@
22#ifndef PCM_RECORD_H 22#ifndef PCM_RECORD_H
23#define PCM_RECORD_H 23#define PCM_RECORD_H
24 24
25/** Warnings **/
26/* pcm (dma) buffer has overflowed */
27#define PCMREC_W_PCM_BUFFER_OVF 0x00000001
28/* encoder output buffer has overflowed */
29#define PCMREC_W_ENC_BUFFER_OVF 0x00000002
30/** Errors **/
31/* failed to load encoder */
32#define PCMREC_E_LOAD_ENCODER 0x80001000
33/* error originating in encoder */
34#define PCMREC_E_ENCODER 0x80002000
35/* filename queue has desynced from stream markers */
36#define PCMREC_E_FNQ_DESYNC 0x80004000
37/* I/O error has occurred */
38#define PCMREC_E_IO 0x80008000
39#ifdef DEBUG
40/* encoder has written past end of allocated space */
41#define PCMREC_E_CHUNK_OVF 0x80010000
42#endif /* DEBUG */
43
25/** General functions for high level codec recording **/ 44/** General functions for high level codec recording **/
26/* pcm_rec_error_clear is deprecated for general use. audio_error_clear 45/* pcm_rec_error_clear is deprecated for general use. audio_error_clear
27 should be used */ 46 should be used */