summaryrefslogtreecommitdiff
path: root/apps/codecs/libffmpegFLAC/decoder.h
diff options
context:
space:
mode:
authorAdam Boot <rotator@gmail.com>2006-11-08 22:00:45 +0000
committerAdam Boot <rotator@gmail.com>2006-11-08 22:00:45 +0000
commitc1916afa41f46dc525e9f40c31616c75b4235ca6 (patch)
tree216420d3e082425131ad5cd7f19e1745624266f9 /apps/codecs/libffmpegFLAC/decoder.h
parent0a220b6da6ac800e5969c7d47f5add3cc36fc49b (diff)
downloadrockbox-c1916afa41f46dc525e9f40c31616c75b4235ca6.tar.gz
rockbox-c1916afa41f46dc525e9f40c31616c75b4235ca6.zip
Sample-accurate seeking for FLAC
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11474 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libffmpegFLAC/decoder.h')
-rw-r--r--apps/codecs/libffmpegFLAC/decoder.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/codecs/libffmpegFLAC/decoder.h b/apps/codecs/libffmpegFLAC/decoder.h
index 632bb1b823..affec0a5a3 100644
--- a/apps/codecs/libffmpegFLAC/decoder.h
+++ b/apps/codecs/libffmpegFLAC/decoder.h
@@ -35,6 +35,9 @@ typedef struct FLACContext {
35 35
36 int bitstream_size; 36 int bitstream_size;
37 int bitstream_index; 37 int bitstream_index;
38
39 int sample_skip;
40 int framesize;
38} FLACContext; 41} FLACContext;
39 42
40int flac_decode_frame(FLACContext *s, 43int flac_decode_frame(FLACContext *s,