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

Unified Diff: webrtc/test/vcm_capturer.cc

Issue 2765243002: Delete RawVideoType enum, use the VideoType enum instead. (Closed)
Patch Set: Define constant webrtc::kI420, for backwards compatibility. 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/test/gl/gl_renderer.cc ('k') | webrtc/test/win/d3d_renderer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/vcm_capturer.cc
diff --git a/webrtc/test/vcm_capturer.cc b/webrtc/test/vcm_capturer.cc
index d66cf232ff6d9fc83582a88117589ef7911f77c9..69c2b6a7c87c32c1cc646e83f3e8c54506e4c4b6 100644
--- a/webrtc/test/vcm_capturer.cc
+++ b/webrtc/test/vcm_capturer.cc
@@ -40,7 +40,7 @@ bool VcmCapturer::Init(size_t width, size_t height, size_t target_fps) {
capability_.width = static_cast<int32_t>(width);
capability_.height = static_cast<int32_t>(height);
capability_.maxFPS = static_cast<int32_t>(target_fps);
- capability_.rawType = kVideoI420;
+ capability_.videoType = VideoType::kI420;
if (vcm_->StartCapture(capability_) != 0) {
Destroy();
« no previous file with comments | « webrtc/test/gl/gl_renderer.cc ('k') | webrtc/test/win/d3d_renderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698