You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Doc_BoxAlgorithm_StreamedMatrixMultiplexer.rst 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .. _Doc_BoxAlgorithm_StreamedMatrixMultiplexer:
  2. Streamed matrix multiplexer
  3. ===========================
  4. .. container:: attribution
  5. :Author:
  6. Yann Renard
  7. :Company:
  8. INRIA/IRISA
  9. .. image:: images/Doc_BoxAlgorithm_StreamedMatrixMultiplexer.png
  10. This box multiplexes streamed matrix stream on a low level basis (at the EBML stream level actually).
  11. This means the box sorts the different buffers received from its inputs and sends all of them
  12. on its output. For correct results, this supposes the inputs have "homogeneous content" in the sense that
  13. they should have e.g. the same number of channels, in the same order, the same number of samples per buffer etc...
  14. This box is usually used after an epoching related split in the pipeline, when you want to process the signals
  15. in a similar manner for a similar purpose. This actually joins the pipelines in only one, dropping the need
  16. to edit and execute similar boxes.
  17. **Warning:** this box is usually misused and used in place of a :ref:`Doc_BoxAlgorithm_SignalMerger` box.
  18. Please consider reading this documentation twice, and maybe read the :ref:`Doc_BoxAlgorithm_SignalMerger`
  19. documentation once again as well :)
  20. Inputs
  21. ------
  22. .. csv-table::
  23. :header: "Input Name", "Stream Type"
  24. "Input stream 1", "Streamed matrix"
  25. "Input stream 2", "Streamed matrix"
  26. You can add as many input as you want.
  27. Input stream 1
  28. ~~~~~~~~~~~~~~
  29. The first input stream.
  30. Input stream 2
  31. ~~~~~~~~~~~~~~
  32. The second input stream.
  33. Outputs
  34. -------
  35. .. csv-table::
  36. :header: "Output Name", "Stream Type"
  37. "Multiplexed streamed matrix", "Streamed matrix"
  38. Multiplexed streamed matrix
  39. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  40. The output stream takes the header of the first stream and then sends buffers of the
  41. different input streams in a sorted way.