Move video_coding to new Clock interface and remove fake clock implementations from RTP module tests.
TEST=video_coding_unittests, video_coding_integrationtests, rtp_rtcp_unittests, trybots Review URL: https://webrtc-codereview.appspot.com/1044004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3393 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -454,12 +454,6 @@ class ModuleRtpRtcpImpl : public RtpRtcp {
|
||||
|
||||
void OnRequestSendReport();
|
||||
|
||||
// Following function is only called when constructing the object so no
|
||||
// need to worry about data race.
|
||||
void OwnsClock() {
|
||||
owns_clock_ = true;
|
||||
}
|
||||
|
||||
protected:
|
||||
void RegisterChildModule(RtpRtcp* module);
|
||||
|
||||
@ -483,8 +477,7 @@ class ModuleRtpRtcpImpl : public RtpRtcp {
|
||||
RTCPSender rtcp_sender_;
|
||||
RTCPReceiver rtcp_receiver_;
|
||||
|
||||
bool owns_clock_;
|
||||
Clock& clock_;
|
||||
Clock* clock_;
|
||||
|
||||
private:
|
||||
int64_t RtcpReportInterval();
|
||||
|
Reference in New Issue
Block a user