| Index: webrtc/common_types.cc
|
| diff --git a/webrtc/common_types.cc b/webrtc/common_types.cc
|
| index 5cbc452db33f82735092fd28460a56859f70e982..3fcfb6cdef203e9747471e6782cce1a82680b7aa 100644
|
| --- a/webrtc/common_types.cc
|
| +++ b/webrtc/common_types.cc
|
| @@ -54,7 +54,8 @@ RTPHeaderExtension::RTPHeaderExtension()
|
| hasVideoRotation(false),
|
| videoRotation(kVideoRotation_0),
|
| hasVideoContentType(false),
|
| - videoContentType(VideoContentType::UNSPECIFIED) {}
|
| + videoContentType(VideoContentType::UNSPECIFIED),
|
| + hasVideoTiming(false) {}
|
|
|
| RTPHeader::RTPHeader()
|
| : markerBit(false),
|
| @@ -86,6 +87,7 @@ VideoCodec::VideoCodec()
|
| spatialLayers(),
|
| mode(kRealtimeVideo),
|
| expect_encode_from_texture(false),
|
| + timingFrameTriggerThresholds({0, 0}),
|
| codec_specific_() {}
|
|
|
| VideoCodecVP8* VideoCodec::VP8() {
|
|
|