summaryrefslogtreecommitdiff
path: root/apps/codecs/demac/libdemac/parser.h
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2007-06-08 22:35:26 +0000
committerDave Chapman <dave@dchapman.com>2007-06-08 22:35:26 +0000
commit7b1d90a851ec2bad8fe1327b2594f2de9a33cc4a (patch)
tree36d3acf40322d2bd0d4c77162d591557adced8a3 /apps/codecs/demac/libdemac/parser.h
parent691a0780b9b6c2a2b14bf1ea61e314a004225523 (diff)
downloadrockbox-7b1d90a851ec2bad8fe1327b2594f2de9a33cc4a.tar.gz
rockbox-7b1d90a851ec2bad8fe1327b2594f2de9a33cc4a.zip
Seeking and resume support for Monkey's Audio
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13597 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/demac/libdemac/parser.h')
-rw-r--r--apps/codecs/demac/libdemac/parser.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/codecs/demac/libdemac/parser.h b/apps/codecs/demac/libdemac/parser.h
index edf4222fd5..0e35425315 100644
--- a/apps/codecs/demac/libdemac/parser.h
+++ b/apps/codecs/demac/libdemac/parser.h
@@ -2,7 +2,7 @@
2 2
3libdemac - A Monkey's Audio decoder 3libdemac - A Monkey's Audio decoder
4 4
5$Id:$ 5$Id$
6 6
7Copyright (C) Dave Chapman 2007 7Copyright (C) Dave Chapman 2007
8 8
@@ -119,7 +119,10 @@ struct ape_ctx_t
119 uint32_t samplerate; 119 uint32_t samplerate;
120 120
121 /* Seektable */ 121 /* Seektable */
122 uint32_t* seektable; 122 uint32_t* seektable; /* Seektable buffer */
123 uint32_t maxseekpoints; /* Max seekpoints we can store (size of seektable buffer) */
124 uint32_t numseekpoints; /* Number of seekpoints */
125 int seektablefilepos; /* Location in .ape file of seektable */
123 126
124 /* Decoder state */ 127 /* Decoder state */
125 uint32_t CRC; 128 uint32_t CRC;