* Further work on handling distinct analysis and synthesis window and FFT sizes
This commit is contained in:
@@ -51,6 +51,16 @@ inline void v_zero_channels(T *const R__ *const R__ ptr,
|
||||
}
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
inline void v_set(T *const R__ ptr,
|
||||
const T value,
|
||||
const int count)
|
||||
{
|
||||
for (int i = 0; i < count; ++i) {
|
||||
ptr[i] = value;
|
||||
}
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
inline void v_copy(T *const R__ dst,
|
||||
const T *const R__ src,
|
||||
|
||||
Reference in New Issue
Block a user