Loïc Fejoz

Results 7 comments of Loïc Fejoz

Indeed. In GNU Radio, you can specify the number of channels as per our constructor. Yet you will end up with the following block for instance for a stereo AudioSink....

While I now better understand the rational behind interleaved or not as explained by @bastibl, I believe Rust has some trick to keep this performance while still providing better feedback...

So maybe with [const generic](https://blog.rust-lang.org/2021/02/26/const-generics-mvp-beta.html), something like: ```rust struct StreamData(T) ```

Not so simple neither because some blocks may be template based (not only type, but number of inputs/outputs) and thus it would require extra works with macro at compile-time. Nothing...

At the moment, there are no such block in [fsdr-blocks](https://github.com/FutureSDR/fsdr-blocks) but it would perfectly make sense to have it, for sure! In fact, the goal is to have nearly equivalent...

By the way, I was thinking of multiplying by a signal source in case you wanted more than one sample per symbol. But it is overkill... I just had a...

Thanks @777arc . I thus need to hurry up to transition to my plugin too!