Revert "obs-outputs: Enable HDR for HEVC over RTMP"

This reverts commit 8137eb5f56.
This commit is contained in:
Ryan Foster 2023-08-09 21:47:30 -04:00
parent e77fc96cfa
commit 8b85ecbec1

View file

@ -1375,9 +1375,8 @@ static void *connect_thread(void *data)
return NULL;
}
// HDR streaming disabled for AV1
if (stream->video_codec != CODEC_H264 &&
stream->video_codec != CODEC_HEVC) {
// HDR streaming disabled for AV1 and HEVC
if (stream->video_codec != CODEC_H264) {
video_t *video = obs_get_video();
const struct video_output_info *info =
video_output_get_info(video);