sfizz/src/external/hiir/Upsampler2x4Neon.hpp

206 lines
4.9 KiB
C++
Raw Normal View History

2019-12-01 10:10:45 +01:00
/*****************************************************************************
Upsampler2x4Neon.hpp
Author: Laurent de Soras, 2016
--- Legal stuff ---
This program is free software. It comes without any warranty, to
the extent permitted by applicable law. You can redistribute it
and/or modify it under the terms of the Do What The Fuck You Want
To Public License, Version 2, as published by Sam Hocevar. See
http://sam.zoy.org/wtfpl/COPYING for more details.
*Tab=3***********************************************************************/
#if ! defined (hiir_Upsampler2x4Neon_CODEHEADER_INCLUDED)
#define hiir_Upsampler2x4Neon_CODEHEADER_INCLUDED
/*\\\ INCLUDE FILES \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
#include "hiir/StageProc4Neon.h"
#include <cassert>
namespace hiir
{
/*\\\ PUBLIC \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
/*
==============================================================================
Name: ctor
Throws: Nothing
==============================================================================
*/
template <int NC>
Upsampler2x4Neon <NC>::Upsampler2x4Neon ()
: _filter ()
{
for (int i = 0; i < NBR_COEFS + 2; ++i)
{
_filter [i]._coef4 = vdupq_n_f32 (0);
}
clear_buffers ();
}
/*
==============================================================================
Name: set_coefs
Description:
Sets filter coefficients. Generate them with the PolyphaseIir2Designer
class.
Call this function before doing any processing.
Input parameters:
- coef_arr: Array of coefficients. There should be as many coefficients as
mentioned in the class template parameter.
Throws: Nothing
==============================================================================
*/
template <int NC>
void Upsampler2x4Neon <NC>::set_coefs (const double coef_arr [NBR_COEFS])
{
assert (coef_arr != 0);
for (int i = 0; i < NBR_COEFS; ++i)
{
_filter [i + 2]._coef4 = vdupq_n_f32 (float (coef_arr [i]));
}
}
/*
==============================================================================
Name: process_sample
Description:
Upsamples (x2) the input vector, generating two output vectors.
Input parameters:
- input: The input vector.
Output parameters:
- out_0: First output vector.
- out_1: Second output vector.
Throws: Nothing
==============================================================================
*/
template <int NC>
void Upsampler2x4Neon <NC>::process_sample (float32x4_t &out_0, float32x4_t &out_1, float32x4_t input)
{
float32x4_t even = input;
float32x4_t odd = input;
StageProc4Neon <NBR_COEFS>::process_sample_pos (
NBR_COEFS,
even,
odd,
&_filter [0]
);
out_0 = even;
out_1 = odd;
}
/*
==============================================================================
Name: process_block
Description:
Upsamples (x2) the input vector block.
Input and output blocks may overlap, see assert() for details.
Input parameters:
- in_ptr: Input array, containing nbr_spl vector.
No alignment constraint.
- nbr_spl: Number of input vectors to process, > 0
Output parameters:
- out_0_ptr: Output vector array, capacity: nbr_spl * 2 vectors.
No alignment constraint.
Throws: Nothing
==============================================================================
*/
template <int NC>
void Upsampler2x4Neon <NC>::process_block (float out_ptr [], const float in_ptr [], long nbr_spl)
{
assert (out_ptr != 0);
assert (in_ptr != 0);
assert (out_ptr >= in_ptr + nbr_spl * 4 || in_ptr >= out_ptr + nbr_spl * 4);
assert (nbr_spl > 0);
long pos = 0;
do
{
const float32x4_t src = vreinterpretq_f32_u8 (
vld1q_u8 (reinterpret_cast <const uint8_t *> (in_ptr + pos * 4))
);
float32x4_t dst_0;
float32x4_t dst_1;
process_sample (dst_0, dst_1, src);
vst1q_u8 (
reinterpret_cast <uint8_t *> (out_ptr + pos * 8 ),
vreinterpretq_u8_f32 (dst_0)
);
vst1q_u8 (
reinterpret_cast <uint8_t *> (out_ptr + pos * 8 + 4),
vreinterpretq_u8_f32 (dst_1)
);
++ pos;
}
while (pos < nbr_spl);
}
/*
==============================================================================
Name: clear_buffers
Description:
Clears filter memory, as if it processed silence since an infinite amount
of time.
Throws: Nothing
==============================================================================
*/
template <int NC>
void Upsampler2x4Neon <NC>::clear_buffers ()
{
for (int i = 0; i < NBR_COEFS + 2; ++i)
{
_filter [i]._mem4 = vdupq_n_f32 (0);
}
}
/*\\\ PROTECTED \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
/*\\\ PRIVATE \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
} // namespace hiir
#endif // hiir_Upsampler2x4Neon_CODEHEADER_INCLUDED
/*\\\ EOF \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/