diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-05-20 20:14:45 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-05-20 20:14:45 +0000 |
| commit | 9d12276bc2f11c0140f0d30a2f108bae7fd51ea9 (patch) | |
| tree | bec365e82b5572703ee626c758af21567181200b /src/plugins/Input/flac/decoder_flac.h | |
| parent | ba6d239f2bc533cbed1d1cb3ec85e0c15acd03f1 (diff) | |
| download | qmmp-9d12276bc2f11c0140f0d30a2f108bae7fd51ea9.tar.gz qmmp-9d12276bc2f11c0140f0d30a2f108bae7fd51ea9.tar.bz2 qmmp-9d12276bc2f11c0140f0d30a2f108bae7fd51ea9.zip | |
flac: fixed bitrate calculation (#916)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7186 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/flac/decoder_flac.h')
| -rw-r--r-- | src/plugins/Input/flac/decoder_flac.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/Input/flac/decoder_flac.h b/src/plugins/Input/flac/decoder_flac.h index 5502001dc..ad0203f66 100644 --- a/src/plugins/Input/flac/decoder_flac.h +++ b/src/plugins/Input/flac/decoder_flac.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2006-2016 by Ilya Kotov * + * Copyright (C) 2006-2017 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -50,7 +50,7 @@ struct flac_data unsigned sample_rate; unsigned channels; - FLAC__uint64 last_bytes; + FLAC__uint64 last_decode_position; int ok; /* was this stream successfully opened? */ //struct decoder_error error; |
