Sample blend timing fix for LtRt processing

This commit is contained in:
Jack Andersen
2017-10-02 19:19:55 -10:00
parent db9a5953e6
commit ed9b7914ee
2 changed files with 28 additions and 8 deletions

View File

@@ -14,7 +14,9 @@ namespace boo
{
#if INTEL_IPP
#define USE_LPF 0
#if USE_LPF
class FIRFilter12k
{
IppsFIRSpec_32f* m_firSpec;
@@ -26,10 +28,13 @@ public:
~FIRFilter12k();
void Process(Ipp32f* buf, int windowFrames);
};
#endif
class WindowedHilbert
{
#if USE_LPF
FIRFilter12k m_fir;
#endif
IppsHilbertSpec* m_spec;
Ipp8u* m_buffer;
int m_windowFrames, m_halfFrames;