Fix crash when client provides no video decoder callbacks
This commit is contained in:
parent
fa892c5334
commit
d14f62c26a
1 changed files with 2 additions and 2 deletions
|
|
@ -203,13 +203,13 @@ int LiStartConnection(PSERVER_INFORMATION serverInfo, PSTREAM_CONFIGURATION stre
|
|||
void* audioContext, int arFlags) {
|
||||
int err;
|
||||
|
||||
if ((drCallbacks->capabilities & CAPABILITY_PULL_RENDERER) && drCallbacks->submitDecodeUnit) {
|
||||
if (drCallbacks != NULL && (drCallbacks->capabilities & CAPABILITY_PULL_RENDERER) && drCallbacks->submitDecodeUnit) {
|
||||
Limelog("CAPABILITY_PULL_RENDERER cannot be set with a submitDecodeUnit callback\n");
|
||||
err = -1;
|
||||
goto Cleanup;
|
||||
}
|
||||
|
||||
if ((drCallbacks->capabilities & CAPABILITY_PULL_RENDERER) && (drCallbacks->capabilities & CAPABILITY_DIRECT_SUBMIT)) {
|
||||
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");
|
||||
err = -1;
|
||||
goto Cleanup;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue