even more stuff
This commit is contained in:
74
core/src/dsp/processor.h
Normal file
74
core/src/dsp/processor.h
Normal file
@@ -0,0 +1,74 @@
|
||||
#pragma once
|
||||
#include "block.h"
|
||||
|
||||
// These macros define a run() function using a specic expression for processing
|
||||
// This is needed because not all process functions have the same arguments
|
||||
|
||||
#define OVERRIDE_PROC_RUN(exp)\
|
||||
int run() {\
|
||||
int count = _in->read();\
|
||||
if (count < 0) {\
|
||||
return -1;\
|
||||
}\
|
||||
\
|
||||
exp;\
|
||||
\
|
||||
base_type::_in->flush();\
|
||||
if (!base_type::out.swap(count)) { return -1; }\
|
||||
return count;\
|
||||
}
|
||||
|
||||
#define OVERRIDE_MULTIRATE_PROC_RUN(exp)\
|
||||
int run() {\
|
||||
int count = _in->read();\
|
||||
if (count < 0) {\
|
||||
return -1;\
|
||||
}\
|
||||
\
|
||||
int outCount = exp;\
|
||||
\
|
||||
base_type::_in->flush();\
|
||||
if (outCount) {\
|
||||
if (!base_type::out.swap(outCount)) { return -1; }\
|
||||
}\
|
||||
return count;\
|
||||
}
|
||||
|
||||
#define DEFAULT_PROC_RUN OVERRIDE_PROC_RUN(process(count, base_type::_in->readBuf, base_type::out.writeBuf))
|
||||
#define DEFAULT_MULTIRATE_PROC_RUN OVERRIDE_MULTIRATE_PROC_RUN(process(count, base_type::_in->readBuf, base_type::out.writeBuf))
|
||||
|
||||
namespace dsp {
|
||||
template <class I, class O>
|
||||
class Processor : public block {
|
||||
public:
|
||||
Processor() {}
|
||||
|
||||
Processor(stream<I>* in) { init(in); }
|
||||
|
||||
virtual ~Processor() {}
|
||||
|
||||
virtual void init(stream<I>* in) {
|
||||
_in = in;
|
||||
registerInput(_in);
|
||||
registerOutput(&out);
|
||||
_block_init = true;
|
||||
}
|
||||
|
||||
virtual void setInput(stream<I>* in) {
|
||||
assert(_block_init);
|
||||
std::lock_guard<std::recursive_mutex> lck(ctrlMtx);
|
||||
tempStop();
|
||||
unregisterInput(_in);
|
||||
_in = in;
|
||||
registerInput(_in);
|
||||
tempStart();
|
||||
}
|
||||
|
||||
virtual int run() = 0;
|
||||
|
||||
stream<O> out;
|
||||
|
||||
protected:
|
||||
stream<I>* _in;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user