Commit 47245936 authored by magjed's avatar magjed Committed by Commit bot

VideoCaptureFormat::PixelFormatToString: Fix string for UYVY

Review URL: https://codereview.chromium.org/850923002

Cr-Commit-Position: refs/heads/master@{#311478}
parent 22adb217
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment