#include <RTPSSRCGate.h>
Public Member Functions | |
RTPSSRCGate (u_int ssrc=0) | |
RTPSSRCGate (const RTPSSRCGate &rtpSSRCGate) | |
virtual | ~RTPSSRCGate () |
virtual u_int32 | ssrc () |
virtual void | setSSRC (u_int32 ssrc) |
virtual int | gateId () |
virtual void | setGateId (int gateId) |
Protected Attributes | |
u_int32 | _ssrc |
int | _gateId |
|
Default constructor. |
|
Copy constructor.
|
|
Destructor. 00044 { 00045 00046 };
|
|
Returns the id of the gate. 00059 { 00060 return _gateId; 00061 };
|
|
Sets the id of the gate. 00064 { 00065 _gateId = gateId; 00066 };
|
|
Sets the ssrc identifier. 00054 { 00055 _ssrc = ssrc; 00056 };
|
|
Returns the ssrc identifier. 00049 { 00050 return _ssrc; 00051 };
|
|
The gate id. |
|
The ssrc identifier. |