Merge pull request #4759 from mfleisz/audin_srv_fix

audin: Fix server-side dsp decoding
This commit is contained in:
David Fort 2018-07-23 22:06:09 +02:00 committed by GitHub
commit 6bd1a7d2a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -82,6 +82,12 @@ static UINT audin_server_select_format(audin_server_context* context,
}
context->selected_client_format = client_format_index;
if (!freerdp_dsp_context_reset(audin->dsp_context,
&audin->context.client_formats[client_format_index]))
{
WLog_ERR(TAG, "Failed to reset dsp context format!");
return ERROR_INTERNAL_ERROR;
}
if (audin->opened)
{
@ -368,6 +374,8 @@ static UINT audin_server_recv_data(audin_server* audin, wStream* s,
if (success)
WLog_ERR(TAG, "context.ReceiveSamples failed with error %"PRIu32"", success);
}
else
WLog_ERR(TAG, "freerdp_dsp_decode failed!");
Stream_Free(out, TRUE);
return success;