NED File src/inet/transportlayer/rtp/RTPPayloadSender.ned
Name | Type | Description |
---|---|---|
IRTPPayloadSender | module interface |
Interface for RTP Payload Senders. |
RTPPayloadSender | simple module | (no description) |
RTPAVProfilePayload10Sender | simple module | (no description) |
RTPAVProfilePayload32Sender | simple module | (no description) |
RTPAVProfileSampleBasedAudioSender | simple module | (no description) |
Source code
package inet.transportlayer.rtp; // // Interface for RTP Payload Senders. // // These modules are internal to the ~RTP module; instances are created // and connected dynamically by ~RTPProfile. // moduleinterface IRTPPayloadSender { gates: input profileIn @labels(RTPInnerPacket); output profileOut @labels(RTPInnerPacket); } simple RTPPayloadSender like IRTPPayloadSender { gates: input profileIn @labels(RTPInnerPacket); output profileOut @labels(RTPInnerPacket); } simple RTPAVProfilePayload10Sender like IRTPPayloadSender { gates: input profileIn @labels(RTPInnerPacket); output profileOut @labels(RTPInnerPacket); } simple RTPAVProfilePayload32Sender like IRTPPayloadSender { gates: input profileIn @labels(RTPInnerPacket); output profileOut @labels(RTPInnerPacket); } simple RTPAVProfileSampleBasedAudioSender like IRTPPayloadSender { gates: input profileIn @labels(RTPInnerPacket); output profileOut @labels(RTPInnerPacket); }