Revert "Add a default RTT to CallStats and use different values for buffered/real-time mode."

This reverts commit aae26db1da5803482b094357c546b8454ab1c26d.

BUG=1613
TBR=mflodman@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/1327008

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3890 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
stefan@webrtc.org
2013-04-23 16:48:32 +00:00
parent a942692725
commit 8ca8a71de2
11 changed files with 43 additions and 60 deletions

View File

@ -158,10 +158,6 @@ class RTPReceiver : public Bitrate {
const uint16_t bytes,
const bool old_packet);
void set_rtt_ms(uint32_t rtt_ms) { rtt_ms_ = rtt_ms; }
uint32_t rtt_ms() const { return rtt_ms_; }
private:
// Returns whether RED is configured with payload_type.
bool REDPayloadType(const int8_t payload_type) const;
@ -241,7 +237,6 @@ class RTPReceiver : public Bitrate {
bool rtx_;
uint32_t ssrc_rtx_;
int payload_type_rtx_;
uint32_t rtt_ms_;
};
} // namespace webrtc