Skip to content
Snippets Groups Projects
Commit 20e005e3 authored by Jim's avatar Jim
Browse files

win-dshow: Swap UYVY and YVYU formats

These values were erroneously using their opposing types for the source
frame format.
parent 5defc679
No related branches found
No related tags found
No related merge requests found
......@@ -136,9 +136,9 @@ static inline video_format ConvertVideoFormat(VideoFormat format)
case VideoFormat::XRGB: return VIDEO_FORMAT_BGRX;
case VideoFormat::I420: return VIDEO_FORMAT_I420;
case VideoFormat::NV12: return VIDEO_FORMAT_NV12;
case VideoFormat::YVYU: return VIDEO_FORMAT_UYVY;
case VideoFormat::YVYU: return VIDEO_FORMAT_YVYU;
case VideoFormat::YUY2: return VIDEO_FORMAT_YUY2;
case VideoFormat::UYVY: return VIDEO_FORMAT_YVYU;
case VideoFormat::UYVY: return VIDEO_FORMAT_UYVY;
case VideoFormat::HDYC: return VIDEO_FORMAT_UYVY;
case VideoFormat::MJPEG: return VIDEO_FORMAT_YUY2;
default: return VIDEO_FORMAT_NONE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment