decoder/flac: document flac_data::position

This commit is contained in:
Max Kellermann 2016-07-08 22:20:16 +02:00
parent 70367d70c8
commit 2ca8d69126
1 changed files with 4 additions and 0 deletions

View File

@ -61,6 +61,10 @@ struct flac_data : public FlacInput {
*/ */
FLAC__uint64 total_frames; FLAC__uint64 total_frames;
/**
* End of last frame's position within the stream. This is
* used for bit rate calculations.
*/
FLAC__uint64 position; FLAC__uint64 position;
Decoder &decoder; Decoder &decoder;