UI: Allow HEVC streaming

This commit is contained in:
jpark37 2022-03-06 11:29:31 -08:00 committed by Jim
parent 01a806cb53
commit 165a513f78

View File

@ -1011,7 +1011,9 @@ void OBSBasicSettings::LoadEncoderTypes()
const char *streaming_codecs[] = {
"h264",
//"hevc",
#ifdef ENABLE_HEVC
"hevc",
#endif
};
bool is_streaming_codec = false;
for (const char *test_codec : streaming_codecs) {