mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
65 lines
No EOL
2 KiB
C++
65 lines
No EOL
2 KiB
C++
#include "splitter.h"
|
|
#include <cstdint>
|
|
|
|
namespace satdump
|
|
{
|
|
namespace ndsp
|
|
{
|
|
template <typename T>
|
|
SplitterBlock<T>::SplitterBlock()
|
|
: Block(std::is_same_v<T, complex_t> ? "splitter_cc" : "splitter_ff", {{"in", getTypeSampleType<T>()}},
|
|
{/*{"out", std::is_same_v<T, complex_t> ? DSP_SAMPLE_TYPE_CF32 : DSP_SAMPLE_TYPE_F32}*/})
|
|
{
|
|
}
|
|
|
|
template <typename T>
|
|
SplitterBlock<T>::~SplitterBlock()
|
|
{
|
|
}
|
|
|
|
template <typename T>
|
|
bool SplitterBlock<T>::work()
|
|
{
|
|
DSPBuffer iblk = inputs[0].fifo->wait_dequeue();
|
|
|
|
if (iblk.isTerminator())
|
|
{
|
|
if (iblk.terminatorShouldPropagate())
|
|
{
|
|
vfos_mtx.lock();
|
|
for (auto &o : outputs)
|
|
{
|
|
IOInfo *i = ((IOInfo *)o.blkdata.get());
|
|
if (i->forward_terminator)
|
|
o.fifo->wait_enqueue(o.fifo->newBufferTerminator());
|
|
}
|
|
vfos_mtx.unlock();
|
|
}
|
|
inputs[0].fifo->free(iblk);
|
|
return true;
|
|
}
|
|
|
|
vfos_mtx.lock();
|
|
for (auto &o : outputs)
|
|
{
|
|
IOInfo *i = ((IOInfo *)o.blkdata.get());
|
|
|
|
DSPBuffer oblk = o.fifo->newBufferSamples(iblk.max_size, sizeof(T));
|
|
memcpy(oblk.getSamples<T>(), iblk.getSamples<T>(), iblk.size * sizeof(T));
|
|
oblk.size = iblk.size;
|
|
o.fifo->wait_enqueue(oblk);
|
|
}
|
|
vfos_mtx.unlock();
|
|
|
|
inputs[0].fifo->free(iblk);
|
|
|
|
return false;
|
|
}
|
|
|
|
template class SplitterBlock<complex_t>;
|
|
template class SplitterBlock<float>;
|
|
template class SplitterBlock<int16_t>;
|
|
template class SplitterBlock<int8_t>;
|
|
template class SplitterBlock<uint8_t>;
|
|
} // namespace ndsp
|
|
} // namespace satdump
|