mirror of
https://gitlab.com/ecodis/exhale.git
synced 2025-06-05 21:59:32 +02:00
fix for Linux, beta
This commit is contained in:
@ -16,7 +16,7 @@ if("${CMAKE_CURRENT_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_BINARY_DIR}")
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
project(exhale VERSION 1.0.5 LANGUAGES CXX)
|
project(exhale VERSION 1.0.6 LANGUAGES CXX)
|
||||||
|
|
||||||
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
|
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
|
||||||
set(CMAKE_BUILD_TYPE Release
|
set(CMAKE_BUILD_TYPE Release
|
||||||
|
@ -34,7 +34,7 @@ exhale is being made available under an open-source license which is
|
|||||||
similar to the 3-clause BSD license but modified to address specific
|
similar to the 3-clause BSD license but modified to address specific
|
||||||
aspects dictated by the nature and the output of this application.
|
aspects dictated by the nature and the output of this application.
|
||||||
|
|
||||||
The license text and release notes for the current version 1.0.5 can
|
The license text and release notes for the current version 1.0.6 can
|
||||||
be found in the `include` subdirectory of the exhale distribution.
|
be found in the `include` subdirectory of the exhale distribution.
|
||||||
|
|
||||||
|
|
||||||
|
@ -15,5 +15,5 @@
|
|||||||
# define EXHALELIB_VERSION_MINOR "0"
|
# define EXHALELIB_VERSION_MINOR "0"
|
||||||
#endif
|
#endif
|
||||||
#ifndef EXHALELIB_VERSION_BUGFIX
|
#ifndef EXHALELIB_VERSION_BUGFIX
|
||||||
# define EXHALELIB_VERSION_BUGFIX ".5" // "RC" or ".0", ".1", ...
|
# define EXHALELIB_VERSION_BUGFIX ".6" // "RC" or ".0", ".1", ...
|
||||||
#endif
|
#endif
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
0 ICON "exhaleApp.ico"
|
0 ICON "exhaleApp.ico"
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 1,0,5
|
FILEVERSION 1,0,6
|
||||||
BEGIN
|
BEGIN
|
||||||
BLOCK "StringFileInfo"
|
BLOCK "StringFileInfo"
|
||||||
BEGIN
|
BEGIN
|
||||||
|
@ -496,7 +496,7 @@ unsigned BitAllocator::imprSfbStepSizes (const SfbGroupData* const groupData[USA
|
|||||||
|
|
||||||
for (b = 0; b < maxSfbInCh; b++) // improve step-sizes by limiting and attenuation
|
for (b = 0; b < maxSfbInCh; b++) // improve step-sizes by limiting and attenuation
|
||||||
{
|
{
|
||||||
grpStepSizes[b] = uint32_t ((__max (grpRmsMin, grpStepSizes[b]) * s * (m_tempSfbValue[b] + 1ui64) - (1u << 14)) >> 15);
|
grpStepSizes[b] = uint32_t ((__max (grpRmsMin, grpStepSizes[b]) * s * (m_tempSfbValue[b] + 1u) + (1u << 14)) >> 15);
|
||||||
}
|
}
|
||||||
} // for gr
|
} // for gr
|
||||||
} // for ch
|
} // for ch
|
||||||
|
Reference in New Issue
Block a user