Remove code related to REMB suppressor experiment.
Stats indicate this isn't helping. Ditching the whole thing. BUG=4082 R=mflodman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/47569004 Cr-Commit-Position: refs/heads/master@{#8734} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8734 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -21,7 +21,6 @@
|
||||
#include <utility>
|
||||
|
||||
#include "webrtc/base/scoped_ptr.h"
|
||||
#include "webrtc/modules/bitrate_controller/remb_suppressor.h"
|
||||
#include "webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.h"
|
||||
#include "webrtc/system_wrappers/interface/critical_section_wrapper.h"
|
||||
|
||||
@ -45,11 +44,6 @@ class BitrateControllerImpl : public BitrateController {
|
||||
int64_t TimeUntilNextProcess() override;
|
||||
int32_t Process() override;
|
||||
|
||||
// Current bitrate actually being sent.
|
||||
void SetBitrateSent(uint32_t bitrate_sent_bps) override;
|
||||
|
||||
void SetCodecMode(webrtc::VideoCodecMode mode) override;
|
||||
|
||||
private:
|
||||
class RtcpBandwidthObserverImpl;
|
||||
|
||||
@ -75,15 +69,12 @@ class BitrateControllerImpl : public BitrateController {
|
||||
|
||||
CriticalSectionWrapper* critsect_;
|
||||
SendSideBandwidthEstimation bandwidth_estimation_ GUARDED_BY(*critsect_);
|
||||
bool enforce_min_bitrate_ GUARDED_BY(*critsect_);
|
||||
uint32_t reserved_bitrate_bps_ GUARDED_BY(*critsect_);
|
||||
|
||||
uint32_t last_bitrate_bps_ GUARDED_BY(*critsect_);
|
||||
uint8_t last_fraction_loss_ GUARDED_BY(*critsect_);
|
||||
int64_t last_rtt_ms_ GUARDED_BY(*critsect_);
|
||||
bool last_enforce_min_bitrate_ GUARDED_BY(*critsect_);
|
||||
uint32_t last_reserved_bitrate_bps_ GUARDED_BY(*critsect_);
|
||||
rtc::scoped_ptr<RembSuppressor> remb_suppressor_ GUARDED_BY(*critsect_);
|
||||
|
||||
DISALLOW_IMPLICIT_CONSTRUCTORS(BitrateControllerImpl);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user