aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/_flac_common.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-11-11 15:09:24 +0100
committerMax Kellermann <max@duempel.org>2009-11-11 15:31:17 +0100
commit80b220a3a68b4f9c4d21fa416ff220e4262cde82 (patch)
tree060fa951317fb59154a8d2dde442ec41b5168be3 /src/decoder/_flac_common.h
parent5cc3c4f5039cc57b414de3b94bb3ab0e54f28556 (diff)
downloadmpd-80b220a3a68b4f9c4d21fa416ff220e4262cde82.tar.gz
mpd-80b220a3a68b4f9c4d21fa416ff220e4262cde82.tar.xz
mpd-80b220a3a68b4f9c4d21fa416ff220e4262cde82.zip
decoder/flac: keep track of current frame number
We need this for more exact end-of-subsong detection for CUE files.
Diffstat (limited to 'src/decoder/_flac_common.h')
-rw-r--r--src/decoder/_flac_common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/decoder/_flac_common.h b/src/decoder/_flac_common.h
index e0ddc6027..f4cf6e184 100644
--- a/src/decoder/_flac_common.h
+++ b/src/decoder/_flac_common.h
@@ -148,6 +148,11 @@ typedef size_t flac_read_status_size_t;
struct flac_data {
struct pcm_buffer buffer;
+ /**
+ * The number of the next frame which is going to be decoded.
+ */
+ FLAC__uint64 next_frame;
+
float time;
unsigned int bit_rate;
struct audio_format audio_format;