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.h26
1 files changed, 7 insertions, 19 deletions
diff --git a/src/plugins/Input/flac/decoder_flac.h b/src/plugins/Input/flac/decoder_flac.h
index e6036232e..75f0d84cf 100644
--- a/src/plugins/Input/flac/decoder_flac.h
+++ b/src/plugins/Input/flac/decoder_flac.h
@@ -65,8 +65,7 @@ public:
// Standard Decoder API
bool initialize();
qint64 totalTime();
- void seek(qint64);
- void stop();
+ int bitrate();
struct flac_data *data()
{
@@ -75,33 +74,22 @@ public:
private:
- // thread run function
- void run();
+ // Standard Decoder API
+ qint64 readAudio(char *data, qint64 maxSize);
+ void seekAudio(qint64 time);
+
struct flac_data *m_data;
// helper functions
- void flush(bool = FALSE);
void deinit();
- bool inited, user_stop;
- int stat;
-
- // output buffer
- char *output_buf;
- ulong output_bytes, output_at;
-
// FLAC Decoder
- //FLAC__SeekableStreamDecoder *m_flacDecoder;
FLAC__StreamDecoder *m_flacDecoder;
- unsigned int bks;
- bool done, m_finish;
- long len, freq, bitrate;
- int chan;
- unsigned long output_size;
- double m_totalTime, seekTime;
+ qint64 m_totalTime;
QString m_path;
qint64 m_offset;
qint64 m_length;
+ bool inited;
};