Skip to content

Commit

Permalink
Merge branch 'hotfix-0.6.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
martinholters committed Nov 11, 2015
2 parents 6a43e49 + 30e3e16 commit c6e8b23
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Version 0.6.1
=============

Bugfix release: The playback-level property reported a wrong value when read.
Setting it to a specfic value worked corectly; also the default was correctly
set to 92dB (although it was incorrectly reported as 28.24dB).

Version 0.6
===========

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AC_PREREQ(2.60)

AC_INIT([GstPEAQ], [0.6], [[email protected]], , [http://ant.hsu-hh.de/gstpeaq])
AC_INIT([GstPEAQ], [0.6.1], [[email protected]], , [http://ant.hsu-hh.de/gstpeaq])
AC_CONFIG_AUX_DIR([misc])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([1.9 gnu])
Expand Down
2 changes: 1 addition & 1 deletion src/fftearmodel.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ get_playback_level (PeaqEarModel const *model)
{
PeaqFFTEarModel *fft_model = PEAQ_FFTEARMODEL (model);
return 10. * log10 (fft_model->level_factor *
(GAMMA / 4 * (FFT_FRAMESIZE - 1) / FFT_FRAMESIZE));
8. / 3. * (GAMMA / 4 * (FFT_FRAMESIZE - 1)) * (GAMMA / 4 * (FFT_FRAMESIZE - 1)));
}

static void
Expand Down
2 changes: 1 addition & 1 deletion vs/gstpeaq.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<PropertyGroup />
<ItemDefinitionGroup>
<ClCompile>
<PreprocessorDefinitions>PACKAGE="gstpeaq";PACKAGE_BUGREPORT="[email protected]";PACKAGE_NAME="GstPEAQ";PACKAGE_STRING="GstPEAQ 0.6";PACKAGE_URL="http://ant.hsu-hh.de/gstpeaq";PACKAGE_VERSION="0.6";VERSION="0.6";%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions>PACKAGE="gstpeaq";PACKAGE_BUGREPORT="[email protected]";PACKAGE_NAME="GstPEAQ";PACKAGE_STRING="GstPEAQ 0.6.1";PACKAGE_URL="http://ant.hsu-hh.de/gstpeaq";PACKAGE_VERSION="0.6.1";VERSION="0.6.1";%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>..\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
</ItemDefinitionGroup>
Expand Down
8 changes: 4 additions & 4 deletions xcode/GstPEAQ.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,10 @@
"GCC_PREPROCESSOR_DEFINITIONS[arch=*]" = (
"$(inherited)",
"PACKAGE_URL=\\\"http://ant.hsu-hh.de/gstpeaq\\\"",
"PACKAGE_STRING=\"\\\"GstPEAQ 0.6\\\"\"",
"PACKAGE_STRING=\"\\\"GstPEAQ 0.6.1\\\"\"",
"PACKAGE=\\\"gstpeaq\\\"",
"PACKAGE_NAME=\\\"GstPEAQ\\\"",
"PACKAGE_VERSION=\\\"0.6\\\"",
"PACKAGE_VERSION=\\\"0.6.1\\\"",
"PACKAGE_BUGREPORT=\\\"[email protected]\\\"",
);
HEADER_SEARCH_PATHS = (
Expand All @@ -277,10 +277,10 @@
"GCC_PREPROCESSOR_DEFINITIONS[arch=*]" = (
"$(inherited)",
"PACKAGE_URL=\\\"http://ant.hsu-hh.de/gstpeaq\\\"",
"PACKAGE_STRING=\"\\\"GstPEAQ 0.6\\\"\"",
"PACKAGE_STRING=\"\\\"GstPEAQ 0.6.1\\\"\"",
"PACKAGE=\\\"gstpeaq\\\"",
"PACKAGE_NAME=\\\"GstPEAQ\\\"",
"PACKAGE_VERSION=\\\"0.6\\\"",
"PACKAGE_VERSION=\\\"0.6.1\\\"",
"PACKAGE_BUGREPORT=\\\"[email protected]\\\"",
);
HEADER_SEARCH_PATHS = (
Expand Down

0 comments on commit c6e8b23

Please sign in to comment.