浏览代码

win-dshow: Swap UYVY and YVYU formats

These values were erroneously using their opposing types for the source
frame format.
jp9000 11 年之前
父节点
当前提交
20e005e34a
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      plugins/win-dshow/win-dshow.cpp

+ 2 - 2
plugins/win-dshow/win-dshow.cpp

@@ -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;