Enforce setting serverCodecModeSupport field in SERVER_INFORMATION

This commit is contained in:
Cameron Gutman
2023-07-04 14:56:20 -05:00
parent 0095141e08
commit 7608e8e69d

View File

@@ -209,12 +209,21 @@ int LiStartConnection(PSERVER_INFORMATION serverInfo, PSTREAM_CONFIGURATION stre
if (drCallbacks != NULL && (drCallbacks->capabilities & CAPABILITY_PULL_RENDERER) && drCallbacks->submitDecodeUnit) {
Limelog("CAPABILITY_PULL_RENDERER cannot be set with a submitDecodeUnit callback\n");
LC_ASSERT(false);
err = -1;
goto Cleanup;
}
if (drCallbacks != NULL && (drCallbacks->capabilities & CAPABILITY_PULL_RENDERER) && (drCallbacks->capabilities & CAPABILITY_DIRECT_SUBMIT)) {
Limelog("CAPABILITY_PULL_RENDERER and CAPABILITY_DIRECT_SUBMIT cannot be set together\n");
LC_ASSERT(false);
err = -1;
goto Cleanup;
}
if (serverInfo->serverCodecModeSupport == 0) {
Limelog("serverCodecModeSupport field in SERVER_INFORMATION must be set!\n");
LC_ASSERT(false);
err = -1;
goto Cleanup;
}