You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
782 B
C++
29 lines
782 B
C++
#include "Test.h"
|
|
#include "Pattern.h"
|
|
|
|
#include "dsp/support_functions.h"
|
|
|
|
class SupportQ31:public Client::Suite
|
|
{
|
|
public:
|
|
SupportQ31(Testing::testID_t id);
|
|
virtual void setUp(Testing::testID_t,std::vector<Testing::param_t>& params,Client::PatternMgr *mgr);
|
|
virtual void tearDown(Testing::testID_t,Client::PatternMgr *mgr);
|
|
private:
|
|
#include "SupportQ31_decl.h"
|
|
Client::Pattern<q31_t> samples;
|
|
|
|
Client::Pattern<q15_t> samplesQ15;
|
|
Client::Pattern<q7_t> samplesQ7;
|
|
|
|
Client::LocalPattern<q31_t> output;
|
|
|
|
int nbSamples;
|
|
|
|
q31_t *pSrc;
|
|
q15_t *pSrcQ15;
|
|
q7_t *pSrcQ7;
|
|
q31_t *pDst;
|
|
|
|
};
|