Fix some chromium-style warnings in webrtc/modules/video_coding/

BUG=163
R=mikhal@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/1901005

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4429 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pbos@webrtc.org
2013-07-30 15:18:31 +00:00
parent e6c3966530
commit 7f7162a003
7 changed files with 76 additions and 49 deletions

View File

@ -17,6 +17,20 @@
namespace webrtc {
namespace test {
FrameStatistic::FrameStatistic()
: encoding_successful(false),
decoding_successful(false),
encode_return_code(0),
decode_return_code(0),
encode_time_in_us(0),
decode_time_in_us(0),
frame_number(0),
packets_dropped(0),
total_packets(0),
bit_rate_in_kbps(0),
encoded_frame_length_in_bytes(0),
frame_type(kDeltaFrame) {}
Stats::Stats() {}
Stats::~Stats() {}