mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-26 21:58:37 -05:00
parent
fcf9f0bb82
commit
d170f731c5
@ -133,6 +133,7 @@ protected:
|
||||
template<typename OutputDataType>
|
||||
class VisualDataDistributor : public VisualProcessor<OutputDataType, OutputDataType> {
|
||||
protected:
|
||||
|
||||
virtual void process() {
|
||||
VisualProcessor<OutputDataType, OutputDataType>::OutputDataTypePtr inp;
|
||||
|
||||
@ -157,9 +158,14 @@ protected:
|
||||
//A COPY to every outputs, without further processing. This is a 1-to-n dispatcher.
|
||||
template<typename OutputDataType>
|
||||
class VisualDataReDistributor : public VisualProcessor<OutputDataType, OutputDataType> {
|
||||
|
||||
protected:
|
||||
|
||||
ReBuffer<OutputDataType> buffers{ std::string(typeid(*this).name()) };
|
||||
VisualDataReDistributor() : buffers (std::string(typeid(*this).name())) {
|
||||
|
||||
}
|
||||
|
||||
ReBuffer<OutputDataType> buffers;
|
||||
|
||||
virtual void process() {
|
||||
VisualProcessor<OutputDataType, OutputDataType>::OutputDataTypePtr inp;
|
||||
|
@ -32,7 +32,7 @@ private:
|
||||
struct timezone time_zone;
|
||||
#else
|
||||
LARGE_INTEGER win_frequency;
|
||||
#endif;
|
||||
#endif
|
||||
|
||||
bool paused_state;
|
||||
bool lock_state;
|
||||
|
Loading…
Reference in New Issue
Block a user