aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/flac/decoder_flac.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/Input/flac/decoder_flac.h')
-rw-r--r--src/plugins/Input/flac/decoder_flac.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/Input/flac/decoder_flac.h b/src/plugins/Input/flac/decoder_flac.h
index ad0203f66..5147d5da0 100644
--- a/src/plugins/Input/flac/decoder_flac.h
+++ b/src/plugins/Input/flac/decoder_flac.h
@@ -35,7 +35,6 @@ struct flac_data
{
//FLAC__SeekableStreamDecoder *decoder;
FLAC__StreamDecoder *decoder;
- struct io_stream *stream;
int bitrate;
int abort; /* abort playing (due to an error) */
@@ -52,8 +51,10 @@ struct flac_data
FLAC__uint64 last_decode_position;
- int ok; /* was this stream successfully opened? */
- //struct decoder_error error;
+ //counters
+ qint64 read_bytes;
+ qint64 frame_counter;
+
QIODevice *input;
};