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

Unified Diff: webrtc/common_types.cc

Issue 2911193002: Implement timing frames. (Closed)
Patch Set: Implement Holmer@ comments Created 3 years, 6 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
« no previous file with comments | « webrtc/common_types.h ('k') | webrtc/common_video/include/video_frame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/common_types.cc
diff --git a/webrtc/common_types.cc b/webrtc/common_types.cc
index 5cbc452db33f82735092fd28460a56859f70e982..0511f0db32ef1576aa6437ef001d1f60989378b3 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),
+ has_video_timing(false) {}
RTPHeader::RTPHeader()
: markerBit(false),
@@ -86,6 +87,7 @@ VideoCodec::VideoCodec()
spatialLayers(),
mode(kRealtimeVideo),
expect_encode_from_texture(false),
+ timing_frame_thresholds({0, 0}),
codec_specific_() {}
VideoCodecVP8* VideoCodec::VP8() {
« no previous file with comments | « webrtc/common_types.h ('k') | webrtc/common_video/include/video_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698