#include <RTPAVProfile.h>
Protected Member Functions | |
virtual void | initialize () |
The class RTPAVProfile is a subclass of RTPProfile. It does not extend the functionality of its super class, it just sets some values in its initialize() method. For for information about the rtp audio/video profile consult rfc 1890.
Definition at line 35 of file RTPAVProfile.h.
void RTPAVProfile::initialize | ( | ) | [protected, virtual] |
This initialisation method sets following values: name, rtcpPercentage and preferredPort.
Reimplemented from RTPProfile.
Definition at line 27 of file RTPAVProfile.cc.
{ RTPProfile::initialize(); _profileName = "AVProfile"; _rtcpPercentage = 5; _preferredPort = 5005; }