Remove dead code from DefaultVideoQualityAnalyzer

Bug: webrtc:10138
Change-Id: I562a7eb23f9fee8012bfd671f5b4bac5e076ce5e
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/147643
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Commit-Queue: Artem Titov <titovartem@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#28717}
This commit is contained in:
Artem Titov
2019-07-31 13:22:42 +02:00
committed by Commit Bot
parent a1b99b3c9b
commit f034b86463

View File

@ -225,14 +225,6 @@ class DefaultVideoQualityAnalyzer : public VideoQualityAnalyzerInterface {
enum State { kNew, kActive, kStopped };
// Returns last rendered frame for stream if there is one or nullptr
// otherwise.
VideoFrame* GetLastRenderedFrame(const std::string& stream_label)
RTC_EXCLUSIVE_LOCKS_REQUIRED(lock_);
void SetLastRenderedFrame(const std::string& stream_label,
const VideoFrame& frame)
RTC_EXCLUSIVE_LOCKS_REQUIRED(lock_);
void AddComparison(absl::optional<VideoFrame> captured,
absl::optional<VideoFrame> rendered,
bool dropped,