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
commit d6759d15e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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:;
}