Index: webrtc/video/vie_encoder.h |
diff --git a/webrtc/video/vie_encoder.h b/webrtc/video/vie_encoder.h |
index 8481117ef8b54ec513dae6555838c83c533502d7..213ff6d0a24c2c788663fce1de7c3f15f8c7a680 100644 |
--- a/webrtc/video/vie_encoder.h |
+++ b/webrtc/video/vie_encoder.h |
@@ -133,12 +133,15 @@ |
public: |
VideoFrameInfo(int width, |
int height, |
+ VideoRotation rotation, |
bool is_texture) |
: width(width), |
height(height), |
+ rotation(rotation), |
is_texture(is_texture) {} |
int width; |
int height; |
+ VideoRotation rotation; |
bool is_texture; |
int pixel_count() const { return width * height; } |
}; |