From 3caf5d04d384b96972fb821fdffd33d8ecb63b22 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Sun, 24 Jun 2018 15:42:53 -0700 Subject: [PATCH] Revert "obs-x264: Specify x264 color space for BT.601" This reverts commit 958167c4f76893b94caf122cc454b1de3974f3f7. This caused certain transcoders (specifically Twitch's transcoders) to misinterpret the data and transcode the video incorrectly. --- plugins/obs-x264/obs-x264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/obs-x264/obs-x264.c b/plugins/obs-x264/obs-x264.c index 8c475a2331e6f..d177a8e4b46d3 100644 --- a/plugins/obs-x264/obs-x264.c +++ b/plugins/obs-x264/obs-x264.c @@ -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 "bt470bg"; + return "undef"; case VIDEO_CS_709:; }