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

Unified Diff: webrtc/modules/video_coding/encoded_frame.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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/video_coding/encoded_frame.h
diff --git a/webrtc/modules/video_coding/encoded_frame.h b/webrtc/modules/video_coding/encoded_frame.h
index 2d65e9c1e4b614445dadf87280180d4008003bbf..7956485f214832ea83185614c68dddf550abf084 100644
--- a/webrtc/modules/video_coding/encoded_frame.h
+++ b/webrtc/modules/video_coding/encoded_frame.h
@@ -86,6 +86,10 @@ class VCMEncodedFrame : protected EncodedImage {
*/
VideoContentType contentType() const { return content_type_; }
/**
+ * Get video timing
+ */
+ EncodedImage::Timing video_timing() const { return timing_; }
+ /**
* True if this frame is complete, false otherwise
*/
bool Complete() const { return _completeFrame; }

Powered by Google App Engine
This is Rietveld 408576698