Index: webrtc/video_engine/overuse_frame_detector.cc |
diff --git a/webrtc/video_engine/overuse_frame_detector.cc b/webrtc/video_engine/overuse_frame_detector.cc |
index 88d5d052bc05d785f081c909ae898911cafb59c6..23ee59f213c0aeba896ab367473a0b9aad092ffc 100644 |
--- a/webrtc/video_engine/overuse_frame_detector.cc |
+++ b/webrtc/video_engine/overuse_frame_detector.cc |
@@ -250,7 +250,7 @@ class OveruseFrameDetector::FrameQueue { |
} |
void Reset() { frame_times_.clear(); } |
- int NumFrames() const { return frame_times_.size(); } |
+ int NumFrames() const { return static_cast<int>(frame_times_.size()); } |
int last_processing_time_ms() const { return last_processing_time_ms_; } |
private: |