
BUG= R=asapersson@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1717004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4268 4adac7df-926f-26a2-2b94-8c16560cd09d
83 lines
2.5 KiB
C++
83 lines
2.5 KiB
C++
/*
|
|
* Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "webrtc/video_engine/overuse_frame_detector.h"
|
|
|
|
#include <cassert>
|
|
|
|
#include "webrtc/system_wrappers/interface/clock.h"
|
|
#include "webrtc/system_wrappers/interface/critical_section_wrapper.h"
|
|
|
|
namespace webrtc {
|
|
|
|
// TODO(mflodman) Test different thresholds.
|
|
const int64_t kProcessIntervalMs = 2000;
|
|
const int kOveruseHistoryMs = 5000;
|
|
const float kMinEncodeRatio = 29 / 30.0f;
|
|
|
|
OveruseFrameDetector::OveruseFrameDetector(Clock* clock,
|
|
OveruseObserver* observer)
|
|
: crit_(CriticalSectionWrapper::CreateCriticalSection()),
|
|
observer_(observer),
|
|
clock_(clock),
|
|
last_process_time_(clock->TimeInMilliseconds()) {
|
|
assert(observer);
|
|
}
|
|
|
|
OveruseFrameDetector::~OveruseFrameDetector() {
|
|
}
|
|
|
|
void OveruseFrameDetector::CapturedFrame() {
|
|
CriticalSectionScoped cs(crit_.get());
|
|
CleanOldSamples();
|
|
capture_times_.push_back(clock_->TimeInMilliseconds());
|
|
}
|
|
|
|
void OveruseFrameDetector::EncodedFrame() {
|
|
CriticalSectionScoped cs(crit_.get());
|
|
encode_times_.push_back(clock_->TimeInMilliseconds());
|
|
}
|
|
|
|
int32_t OveruseFrameDetector::TimeUntilNextProcess() {
|
|
return last_process_time_ + kProcessIntervalMs - clock_->TimeInMilliseconds();
|
|
}
|
|
|
|
int32_t OveruseFrameDetector::Process() {
|
|
CriticalSectionScoped cs(crit_.get());
|
|
if (clock_->TimeInMilliseconds() < last_process_time_ + kProcessIntervalMs)
|
|
return 0;
|
|
|
|
last_process_time_ = clock_->TimeInMilliseconds();
|
|
CleanOldSamples();
|
|
|
|
if (encode_times_.size() == 0 || capture_times_.size() == 0)
|
|
return 0;
|
|
|
|
float encode_ratio = encode_times_.size() /
|
|
static_cast<float>(capture_times_.size());
|
|
if (encode_ratio < kMinEncodeRatio) {
|
|
observer_->OveruseDetected();
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void OveruseFrameDetector::CleanOldSamples() {
|
|
int64_t time_now = clock_->TimeInMilliseconds();
|
|
while (capture_times_.size() > 0 &&
|
|
capture_times_.front() < time_now - kOveruseHistoryMs) {
|
|
capture_times_.pop_front();
|
|
}
|
|
while (encode_times_.size() > 0 &&
|
|
encode_times_.front() < time_now - kOveruseHistoryMs) {
|
|
encode_times_.pop_front();
|
|
}
|
|
}
|
|
} // namespace webrtc
|