Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1585)

Unified Diff: webrtc/common_types.cc

Issue 2911193002: Implement timing frames. (Closed)
Patch Set: Fix uninitialized variables memcheck errors Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/common_types.cc
diff --git a/webrtc/common_types.cc b/webrtc/common_types.cc
index b9c4737aeb511627bd1b3697269ef047d8a11ad1..27845b9917d363b44083d452d237637c33a2dade 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,8 @@ VideoCodec::VideoCodec()
spatialLayers(),
mode(kRealtimeVideo),
expect_encode_from_texture(false),
+ timingFramesDelayMs(0),
+ minFrameSizeToForceTimingFrameBytes(0),
codec_specific_() {}
VideoCodecVP8* VideoCodec::VP8() {

Powered by Google App Engine
This is Rietveld 408576698