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

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

Issue 2037633002: Change VCMFrameBuffer and VCMEncodedFrame to use rotation from base class EncodedImage. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased Created 4 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 | « no previous file | webrtc/modules/video_coding/encoded_frame.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 90342009801a1bf6424909e1224a85764e7b757b..953ab361b33d2b378aa20fc2a2fb34892c1299a8 100644
--- a/webrtc/modules/video_coding/encoded_frame.h
+++ b/webrtc/modules/video_coding/encoded_frame.h
@@ -75,7 +75,7 @@ class VCMEncodedFrame : protected EncodedImage {
/**
* Get frame rotation
*/
- VideoRotation rotation() const { return _rotation; }
+ VideoRotation rotation() const { return rotation_; }
/**
* True if this frame is complete, false otherwise
*/
@@ -119,7 +119,6 @@ class VCMEncodedFrame : protected EncodedImage {
CodecSpecificInfo _codecSpecificInfo;
webrtc::VideoCodecType _codec;
RTPFragmentationHeader _fragmentation;
- VideoRotation _rotation;
// Video rotation is only set along with the last packet for each frame
// (same as marker bit). This |_rotation_set| is only for debugging purpose
« no previous file with comments | « no previous file | webrtc/modules/video_coding/encoded_frame.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698