| Index: webrtc/common_types.cc
|
| diff --git a/webrtc/common_types.cc b/webrtc/common_types.cc
|
| index c9f7fa1e738fbbd1b61b704bb5d4458667a49e5d..07aae526fc834a2e2e0a9e5ca8759e8a7d6bc364 100644
|
| --- a/webrtc/common_types.cc
|
| +++ b/webrtc/common_types.cc
|
| @@ -48,7 +48,8 @@ RTPHeaderExtension::RTPHeaderExtension()
|
| hasVideoRotation(false),
|
| videoRotation(kVideoRotation_0),
|
| hasVideoContentType(false),
|
| - videoContentType(VideoContentType::UNSPECIFIED) {}
|
| + videoContentType(VideoContentType::UNSPECIFIED),
|
| + hasVideoTiming(false) {}
|
|
|
| RTPHeader::RTPHeader()
|
| : markerBit(false),
|
| @@ -80,6 +81,7 @@ VideoCodec::VideoCodec()
|
| spatialLayers(),
|
| mode(kRealtimeVideo),
|
| expect_encode_from_texture(false),
|
| + timingFrameTriggerThresholds({0, 0}),
|
| codec_specific_() {}
|
|
|
| VideoCodecVP8* VideoCodec::VP8() {
|
|
|