Chromium Code Reviews

Unified Diff: webrtc/modules/video_coding/packet.h

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.
Jump to:
View side-by-side diff with in-line comments
Index: webrtc/modules/video_coding/packet.h
diff --git a/webrtc/modules/video_coding/packet.h b/webrtc/modules/video_coding/packet.h
index e2ad09aedc6bce71fa9ea1631794775931440ca0..f31c513f6879ada9d949d1470e29110b481fc260 100644
--- a/webrtc/modules/video_coding/packet.h
+++ b/webrtc/modules/video_coding/packet.h
@@ -47,6 +47,8 @@ class VCMPacket {
int height;
RTPVideoHeader video_header;
+ int64_t receive_time_ms;
+
protected:
void CopyCodecSpecifics(const RTPVideoHeader& videoHeader);
};

Powered by Google App Engine