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

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

Issue 762513002: Fix PPIXEL_FORMAT_NV21 returned string (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 f7638b1580f4c118b5608c7f8de575fcca4c9766..27e68d9686868bcd21b0951661ae4742ebdd3bed 100644
--- a/media/video/capture/video_capture_types.cc
+++ b/media/video/capture/video_capture_types.cc
@@ -55,7 +55,7 @@ std::string VideoCaptureFormat::PixelFormatToString(VideoPixelFormat format) {
case PIXEL_FORMAT_MJPEG:
return "MJPEG";
case PIXEL_FORMAT_NV21:
- return "YV12";
+ return "NV21";
case PIXEL_FORMAT_YV12:
return "YV12";
case PIXEL_FORMAT_TEXTURE:
« 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