Fixed a bug in FlacDecoder::Exhausted

This commit is contained in:
casey langen 2017-08-24 19:33:14 -07:00
parent 2bf4a5e425
commit e5a7b2924e
5 changed files with 13 additions and 3 deletions

View File

@ -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:

View File

@ -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)

View File

@ -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.

View File

@ -249,5 +249,6 @@ bool FlacDecoder::GetBuffer(IBuffer *buffer) {
}
}
this->exhausted = true;
return false;
}