Skip to content

Commit

Permalink
Revert "obs-x264: Specify x264 color space for BT.601"
Browse files Browse the repository at this point in the history
This reverts commit 958167c.

This caused certain transcoders (specifically Twitch's transcoders) to
misinterpret the data and transcode the video incorrectly.
  • Loading branch information
jp9000 committed Jun 24, 2018
1 parent b760b24 commit 3caf5d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/obs-x264/obs-x264.c
Expand Up @@ -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:;
}

Expand Down

0 comments on commit 3caf5d0

Please sign in to comment.