Merge pull request #1322 from beeanyew/master

obs-x264: Specify x264 color space for BT.601
This commit is contained in:
Jim
2018-06-08 10:32:43 -07:00
committed by GitHub

View File

@@ -363,7 +363,7 @@ static inline const char *get_x264_colorspace_name(enum video_colorspace cs)
switch (cs) {
case VIDEO_CS_DEFAULT:
case VIDEO_CS_601:
return "undef";
return "bt470bg";
case VIDEO_CS_709:;
}