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

Commit

Permalink
Merge branch 'release/ATK-2.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrucher committed Oct 14, 2017
2 parents 202e695 + 1453498 commit e1b8624
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ATK/EQ/IIRFilter.h
Expand Up @@ -252,7 +252,7 @@ namespace ATK
Parent::setup();
input_delay = in_order;
output_delay = out_order;
state.resize(nb_input_ports * std::max(input_delay, output_delay) + 1, TypeTraits<DataType>::Zero());
state.resize(nb_input_ports * (std::max(input_delay, output_delay) + 1), TypeTraits<DataType>::Zero());
}

virtual void process_impl(std::size_t size) const override final
Expand All @@ -263,7 +263,7 @@ namespace ATK
{
const DataType* ATK_RESTRICT input = converted_inputs[channel];
DataType* ATK_RESTRICT output = outputs[channel];
DataType* ATK_RESTRICT current_state = &state[channel * std::max(input_delay, output_delay)];
DataType* ATK_RESTRICT current_state = &state[channel * (std::max(input_delay, output_delay) + 1)];

for(std::size_t i = 0; i < size; ++i)
{
Expand Down
2 changes: 0 additions & 2 deletions README.md
Expand Up @@ -21,8 +21,6 @@ Audio Toolkit is published under the BSD license.
### 2.2.0
* Introduced SIMD filters with libsimdpp
* Refactored EQ filters to work with SIMD filters

### 2.1.2
* Added module files for JUCE Projucer

### 2.1.1
Expand Down

0 comments on commit e1b8624

Please sign in to comment.