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:
@ -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() {}
|
||||
|
||||
Reference in New Issue
Block a user