Skip to content
This repository has been archived by the owner on Jan 22, 2021. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/ARM-2.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrucher committed May 4, 2017
2 parents dc4ed4f + b34c3c0 commit 39b8a00
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
os: Visual Studio 2015
version: '2.0.1.{build}'
version: '2.0.2.{build}'

shallow_clone: true

Expand Down
2 changes: 1 addition & 1 deletion ATK/Core/InPointerFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ namespace ATK
/**
* @brief Resets the pointer and the internal offset
* @param array is the pointer to the new array
* @param size is the allocated size of the array
* @param size is the allocated size of the array (whether interleaved or not)
*/
void set_pointer(const DataType* array, std::size_t size);

Expand Down
2 changes: 1 addition & 1 deletion ATK/Core/OutPointerFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ namespace ATK
/**
* @brief Resets the pointer and the internal offset
* @param array is the pointer to the new array
* @param size is the allocated size of the array
* @param size is the allocated size of the array (whether interleaved or not)
*/
void set_pointer(DataType* array, std::size_t size);

Expand Down
2 changes: 1 addition & 1 deletion ATK/Utility/fmath.h
Original file line number Diff line number Diff line change
Expand Up @@ -273,12 +273,12 @@ namespace fmath {
}

inline float log2(float x) { return fmath::log(x) * 1.442695f; }
#endif

inline double log(double x)
{
return std::log(x);
}
#endif

inline double pow(double x, double y)
{
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Audio Toolkit"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 2.0.1
PROJECT_NUMBER = 2.0.2

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ and output sampling rates are also identical.
Audio Toolkit is published under the BSD license.

## Changelog
### 2.0.2
* Fix ARM compilation

### 2.0.1
* Turn set/get into properties when possible (Python wrapper)
* Enhanced Tools API (Audio ToolKit book)
Expand Down

0 comments on commit 39b8a00

Please sign in to comment.