From 4d7bc240b960f42d3de415fd33eb4f0af07c41bb Mon Sep 17 00:00:00 2001 From: isheriff Date: Thu, 21 Apr 2016 16:37:20 -0700 Subject: [PATCH] Fix valgrind complaint on uninitialized value BUG= Review URL: https://codereview.webrtc.org/1883223002 Cr-Commit-Position: refs/heads/master@{#12460} --- webrtc/modules/video_coding/utility/frame_dropper.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/webrtc/modules/video_coding/utility/frame_dropper.cc b/webrtc/modules/video_coding/utility/frame_dropper.cc index 9c606f8cdc..5de7526ac2 100644 --- a/webrtc/modules/video_coding/utility/frame_dropper.cc +++ b/webrtc/modules/video_coding/utility/frame_dropper.cc @@ -73,6 +73,7 @@ void FrameDropper::Reset() { incoming_frame_rate_ = kDefaultIncomingFrameRate; large_frame_accumulation_count_ = 0; + large_frame_accumulation_chunk_size_ = 0; large_frame_accumulation_spread_ = 0.5 * kDefaultIncomingFrameRate; drop_next_ = false;