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

Unified Diff: media/video/capture/video_capture_types.cc

Issue 850923002: VideoCaptureFormat::PixelFormatToString: Fix string for UYVY (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/video/capture/video_capture_types.cc
diff --git a/media/video/capture/video_capture_types.cc b/media/video/capture/video_capture_types.cc
index 590b016d998c0c8acd42f191fd7f5029660a3c1c..2cddeee9cbac36cc2d321ae1e54fec02d402f854 100644
--- a/media/video/capture/video_capture_types.cc
+++ b/media/video/capture/video_capture_types.cc
@@ -47,7 +47,7 @@ std::string VideoCaptureFormat::PixelFormatToString(VideoPixelFormat format) {
case PIXEL_FORMAT_YUY2:
return "YUY2";
case PIXEL_FORMAT_UYVY:
- return "UYUY";
+ return "UYVY";
case PIXEL_FORMAT_RGB24:
return "RGB24";
case PIXEL_FORMAT_ARGB:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698