summaryrefslogtreecommitdiff
path: root/video_send_stream.h
diff options
context:
space:
mode:
authorstefan@webrtc.org <stefan@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-07-11 13:44:02 +0000
committerstefan@webrtc.org <stefan@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-07-11 13:44:02 +0000
commit55b0f2e500fac8fc0932ea5b60359d268371f8c5 (patch)
treee31bd1de2cd9050d0d068f4fbafafb2d9c07e055 /video_send_stream.h
parentc928d3609b9e61907f54505a236c5c1f917c211b (diff)
downloadwebrtc-55b0f2e500fac8fc0932ea5b60359d268371f8c5.tar.gz
Move pacer to fully use webrtc::Clock instead of webrtc::TickTime.
This required rewriting the send-side delay stats api to be callback based, as otherwise the SuspendBelowMinBitrate test started flaking much more frequently since it had lock order inversion problems. R=pbos@webrtc.org, tommi@webrtc.org Review URL: https://webrtc-codereview.appspot.com/21869005 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@6664 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'video_send_stream.h')
-rw-r--r--video_send_stream.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/video_send_stream.h b/video_send_stream.h
index bb4cff20..8c9d5b7f 100644
--- a/video_send_stream.h
+++ b/video_send_stream.h
@@ -41,14 +41,9 @@ class VideoSendStream {
Stats()
: input_frame_rate(0),
encode_frame_rate(0),
- avg_delay_ms(0),
- max_delay_ms(0),
suspended(false) {}
-
int input_frame_rate;
int encode_frame_rate;
- int avg_delay_ms;
- int max_delay_ms;
bool suspended;
std::map<uint32_t, StreamStats> substreams;
};