NED File src/transport/rtp/RTPPayloadSender.ned

Name Description
IRTPPayloadSender (module interface) (no description)
RTPPayloadSender (simple module) (no description)
RTPAVProfilePayload10Sender (simple module) (no description)
RTPAVProfilePayload32Sender (simple module) (no description)
RTPAVProfileSampleBasedAudioSender (simple module) (no description)

Source code:

package inet.transport.rtp;

moduleinterface IRTPPayloadSender
{
    gates:
        input fromProfile;
        output toProfile;
}

simple RTPPayloadSender like IRTPPayloadSender
{
    gates:
        input fromProfile;
        output toProfile;
}

simple RTPAVProfilePayload10Sender like IRTPPayloadSender
{
    gates:
        input fromProfile;
        output toProfile;
}

simple RTPAVProfilePayload32Sender like IRTPPayloadSender
{
    gates:
        input fromProfile;
        output toProfile;
}

simple RTPAVProfileSampleBasedAudioSender like IRTPPayloadSender
{
    gates:
        input fromProfile;
        output toProfile;
}