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:
stefan@webrtc.org
2013-01-21 07:42:11 +00:00
parent a3c82bf667
commit a678a3baee
67 changed files with 367 additions and 544 deletions

View File

@@ -14,11 +14,11 @@
#include "webrtc/system_wrappers/interface/critical_section_wrapper.h"
#include "webrtc/modules/video_coding/main/source/jitter_buffer.h"
#include "webrtc/modules/video_coding/main/source/packet.h"
#include "webrtc/modules/video_coding/main/source/tick_time_base.h"
#include "webrtc/modules/video_coding/main/source/timing.h"
namespace webrtc {
class Clock;
class VCMEncodedFrame;
enum VCMNackStatus {
@@ -36,7 +36,7 @@ enum VCMReceiverState {
class VCMReceiver {
public:
VCMReceiver(VCMTiming* timing,
TickTimeBase* clock,
Clock* clock,
int32_t vcm_id = -1,
int32_t receiver_id = -1,
bool master = true);
@@ -81,7 +81,7 @@ class VCMReceiver {
CriticalSectionWrapper* crit_sect_;
int32_t vcm_id_;
TickTimeBase* clock_;
Clock* clock_;
int32_t receiver_id_;
bool master_;
VCMJitterBuffer jitter_buffer_;