Moved _rtpReceiver to protected
Review URL: http://webrtc-codereview.appspot.com/132005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@495 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
c7d5f6249b
commit
e9f0e2eb20
@ -61,6 +61,7 @@ ModuleRtpRtcpImpl::ModuleRtpRtcpImpl(const WebRtc_Word32 id,
|
||||
const bool audio):
|
||||
TMMBRHelp(audio),
|
||||
_rtpSender(id, audio),
|
||||
_rtpReceiver(id, audio, *this),
|
||||
_id(id),
|
||||
_audio(audio),
|
||||
_collisionDetected(false),
|
||||
@ -76,7 +77,6 @@ ModuleRtpRtcpImpl::ModuleRtpRtcpImpl(const WebRtc_Word32 id,
|
||||
_deadOrAliveActive(false),
|
||||
_deadOrAliveTimeoutMS(0),
|
||||
_deadOrAliveLastTimer(0),
|
||||
_rtpReceiver(id, audio, *this),
|
||||
_rtcpReceiver(id,*this),
|
||||
_bandwidthManagement(id),
|
||||
_receivedNTPsecsAudio(0),
|
||||
|
@ -526,6 +526,7 @@ protected:
|
||||
TMMBRSet*& boundingSetRec);
|
||||
|
||||
RTPSender _rtpSender;
|
||||
RTPReceiver _rtpReceiver;
|
||||
|
||||
private:
|
||||
void SendKeyFrame();
|
||||
@ -549,7 +550,6 @@ private:
|
||||
WebRtc_UWord32 _deadOrAliveLastTimer;
|
||||
|
||||
// receive side
|
||||
RTPReceiver _rtpReceiver;
|
||||
RTCPReceiver _rtcpReceiver;
|
||||
BandwidthManagement _bandwidthManagement;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user