summaryrefslogtreecommitdiffstats
path: root/Graphic_Equalizer/include/audio.hch
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2004-11-15 16:04:27 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2004-11-15 16:04:27 (GMT)
commitaee5707fed8541410816c0a1ce1f0aa17108b462 (patch)
treef2546786adb04fac0b9d9f3999bc27378fcd751d /Graphic_Equalizer/include/audio.hch
parent1db17be5a3ba68ffb5b9b23af6ac52a1b29e89ed (diff)
downloadTASS-aee5707fed8541410816c0a1ce1f0aa17108b462.zip
TASS-aee5707fed8541410816c0a1ce1f0aa17108b462.tar.gz
TASS-aee5707fed8541410816c0a1ce1f0aa17108b462.tar.bz2
Added display of active buttons.
Added equalizer preset storage.
Diffstat (limited to 'Graphic_Equalizer/include/audio.hch')
-rw-r--r--Graphic_Equalizer/include/audio.hch14
1 files changed, 8 insertions, 6 deletions
diff --git a/Graphic_Equalizer/include/audio.hch b/Graphic_Equalizer/include/audio.hch
index 39fa52d..43666ed 100644
--- a/Graphic_Equalizer/include/audio.hch
+++ b/Graphic_Equalizer/include/audio.hch
@@ -19,15 +19,17 @@
#ifndef _AUDIO_HCH
#define _AUDIO_HCH 1
-
-
/*
* Type definition of the shared memory to be used in various processes
*/
-mpram equalizer_levels_t {
- ram unsigned 4 write[768];
- rom unsigned 4 read[768];
-};
+typedef struct {
+ mpram {
+ ram unsigned 4 write[768];
+ rom unsigned 4 read[768];
+ } equalizer_levels;
+ unsigned 10 active_preset;
+ unsigned 1 log;
+} audiodata_t;