mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 11:10:52 +00:00
Fixed a bug in FlacDecoder::Exhausted
This commit is contained in:
parent
2bf4a5e425
commit
e5a7b2924e
@ -1,3 +1,12 @@
|
||||
0.25.1
|
||||
|
||||
musikcube:
|
||||
|
||||
* fixed a bug in FlacDecoder::Exhausted that was causing issues with the
|
||||
server's transcoder.
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
0.25.0
|
||||
|
||||
musikcube:
|
||||
|
@ -8,7 +8,7 @@ cmake_minimum_required(VERSION 3.0)
|
||||
project(musikcube)
|
||||
set (musikcube_VERSION_MAJOR 0)
|
||||
set (musikcube_VERSION_MINOR 25)
|
||||
set (musikcube_VERSION_PATCH 0)
|
||||
set (musikcube_VERSION_PATCH 1)
|
||||
set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}")
|
||||
|
||||
include(CMakeToolsHelpers OPTIONAL)
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
#define VERSION_MAJOR 0
|
||||
#define VERSION_MINOR 25
|
||||
#define VERSION_PATCH 0
|
||||
#define VERSION "0.25.0"
|
||||
#define VERSION_PATCH 1
|
||||
#define VERSION "0.25.1"
|
||||
|
Binary file not shown.
@ -249,5 +249,6 @@ bool FlacDecoder::GetBuffer(IBuffer *buffer) {
|
||||
}
|
||||
}
|
||||
|
||||
this->exhausted = true;
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user