File:Multi-source RTP flow example.svg
Description |
English: Example of multicast RTP flow with multiple sources.
Italiano: Esempio di flusso RTP multicast con sorgenti multiple. |
Date | |
Source | Own work |
Author | Lorenzo David, Luca Ghio |
Permission (Reusing this file) |
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
|
- TikZ code
\tikzstyle{main}=[circle, minimum size = 10mm, thick, draw =black!80, node distance = 16mm]
\tikzstyle{connect}=[-latex, thick]
\tikzstyle{box}=[rectangle, draw=black!100]
\node[main, fill = white!100] (S1) [label=above:S\textsubscript{1}] { };
\node[main] (S2) [right=of S1, label=above:S\textsubscript{2}] { };
\node[main] (S3) [right=of S2, label=above:S\textsubscript{3}] { };
\node[main] (M) [below=of S1,below=of S2,below=of S3, label=below:mixer] { };
\node[main] (D) [right=of M,label=below:D] {};
\path (S1) edge [connect] (M)
(S2) edge [connect] (M)
(S3) edge [connect] (M)
(M) edge [connect] (D);