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

Unified Diff: webrtc/video/vie_encoder.h

Issue 2861633003: Revert of Don't reinit encoder when rotation changes. (Closed)
Patch Set: Created 3 years, 8 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 | « webrtc/modules/video_coding/codecs/vp9/test/vp9_impl_unittest.cc ('k') | webrtc/video/vie_encoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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; }
};
« no previous file with comments | « webrtc/modules/video_coding/codecs/vp9/test/vp9_impl_unittest.cc ('k') | webrtc/video/vie_encoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698