diff options
| author | Dave Chapman <dave@dchapman.com> | 2007-06-08 22:35:26 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2007-06-08 22:35:26 +0000 |
| commit | 7b1d90a851ec2bad8fe1327b2594f2de9a33cc4a (patch) | |
| tree | 36d3acf40322d2bd0d4c77162d591557adced8a3 /apps/codecs/demac/libdemac/parser.h | |
| parent | 691a0780b9b6c2a2b14bf1ea61e314a004225523 (diff) | |
| download | rockbox-7b1d90a851ec2bad8fe1327b2594f2de9a33cc4a.zip rockbox-7b1d90a851ec2bad8fe1327b2594f2de9a33cc4a.tar.gz rockbox-7b1d90a851ec2bad8fe1327b2594f2de9a33cc4a.tar.bz2 rockbox-7b1d90a851ec2bad8fe1327b2594f2de9a33cc4a.tar.xz | |
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.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/codecs/demac/libdemac/parser.h b/apps/codecs/demac/libdemac/parser.h index edf4222..0e35425 100644 --- a/apps/codecs/demac/libdemac/parser.h +++ b/apps/codecs/demac/libdemac/parser.h @@ -2,7 +2,7 @@ libdemac - A Monkey's Audio decoder -$Id:$ +$Id$ Copyright (C) Dave Chapman 2007 @@ -119,7 +119,10 @@ struct ape_ctx_t uint32_t samplerate; /* Seektable */ - uint32_t* seektable; + uint32_t* seektable; /* Seektable buffer */ + uint32_t maxseekpoints; /* Max seekpoints we can store (size of seektable buffer) */ + uint32_t numseekpoints; /* Number of seekpoints */ + int seektablefilepos; /* Location in .ape file of seektable */ /* Decoder state */ uint32_t CRC; |