diff options
Diffstat (limited to 'src/decoder/_flac_common.h')
-rw-r--r-- | src/decoder/_flac_common.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/decoder/_flac_common.h b/src/decoder/_flac_common.h index aa17c55ae..84b66285f 100644 --- a/src/decoder/_flac_common.h +++ b/src/decoder/_flac_common.h @@ -52,11 +52,16 @@ struct flac_data { FLAC__StreamMetadata_StreamInfo stream_info; /** + * The number of the first frame in this song. This is only + * non-zero if playing sub songs from a CUE sheet. + */ + FLAC__uint64 first_frame; + + /** * The number of the next frame which is going to be decoded. */ FLAC__uint64 next_frame; - float time; struct audio_format audio_format; FLAC__uint64 position; struct decoder *decoder; |