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 |