2015-04-08 21:13:52 +03:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
*
|
|
|
|
* Copyright 2015 Jiang Zihao <zihao.jiang@yahoo.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-02-16 13:20:38 +03:00
|
|
|
#include <freerdp/config.h>
|
2015-04-08 21:13:52 +03:00
|
|
|
|
|
|
|
#include <freerdp/log.h>
|
2018-09-25 15:34:14 +03:00
|
|
|
#include <freerdp/codec/dsp.h>
|
2015-04-08 21:13:52 +03:00
|
|
|
#include "shadow.h"
|
|
|
|
|
|
|
|
#include "shadow_audin.h"
|
2018-09-25 17:45:08 +03:00
|
|
|
#include <freerdp/server/server-common.h>
|
2015-04-08 21:13:52 +03:00
|
|
|
|
|
|
|
#define TAG SERVER_TAG("shadow")
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
|
|
|
static UINT AudinServerOpening(audin_server_context* context)
|
2015-04-08 21:13:52 +03:00
|
|
|
{
|
|
|
|
AUDIO_FORMAT* agreed_format = NULL;
|
2018-09-25 15:34:14 +03:00
|
|
|
size_t i = 0, j = 0;
|
2018-02-20 14:15:30 +03:00
|
|
|
|
2015-04-08 21:13:52 +03:00
|
|
|
for (i = 0; i < context->num_client_formats; i++)
|
|
|
|
{
|
|
|
|
for (j = 0; j < context->num_server_formats; j++)
|
|
|
|
{
|
2018-09-25 15:34:14 +03:00
|
|
|
if (audio_format_compatible(&context->server_formats[j], &context->client_formats[i]))
|
2015-04-08 21:13:52 +03:00
|
|
|
{
|
2018-09-25 15:34:14 +03:00
|
|
|
agreed_format = &context->server_formats[j];
|
2015-04-08 21:13:52 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-02-20 14:15:30 +03:00
|
|
|
|
2015-04-08 21:13:52 +03:00
|
|
|
if (agreed_format != NULL)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (agreed_format == NULL)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "Could not agree on a audio format with the server\n");
|
2015-07-15 11:57:07 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2015-04-08 21:13:52 +03:00
|
|
|
}
|
|
|
|
|
2018-09-25 17:32:37 +03:00
|
|
|
return IFCALLRESULT(ERROR_CALL_NOT_IMPLEMENTED, context->SelectFormat, context, i);
|
2015-04-08 21:13:52 +03:00
|
|
|
}
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
|
|
|
static UINT AudinServerOpenResult(audin_server_context* context, UINT32 result)
|
2015-04-08 21:13:52 +03:00
|
|
|
{
|
2019-02-07 19:42:11 +03:00
|
|
|
/* TODO: Implement */
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_WARN(TAG, "not implemented");
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_INFO(TAG, "AUDIN open result %" PRIu32 ".\n", result);
|
2015-07-15 11:57:07 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2015-04-08 21:13:52 +03:00
|
|
|
}
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2018-09-25 17:25:35 +03:00
|
|
|
static UINT AudinServerReceiveSamples(audin_server_context* context, const AUDIO_FORMAT* format,
|
|
|
|
wStream* buf, size_t nframes)
|
2015-04-08 21:13:52 +03:00
|
|
|
{
|
2018-04-03 12:18:22 +03:00
|
|
|
rdpShadowClient* client = (rdpShadowClient*)context->data;
|
2015-04-08 21:13:52 +03:00
|
|
|
rdpShadowSubsystem* subsystem = client->server->subsystem;
|
|
|
|
|
|
|
|
if (!client->mayInteract)
|
2015-07-15 11:57:07 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2015-04-08 21:13:52 +03:00
|
|
|
|
2018-09-25 17:25:35 +03:00
|
|
|
if (!IFCALLRESULT(TRUE, subsystem->AudinServerReceiveSamples, subsystem, client, format, buf,
|
|
|
|
nframes))
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
2018-02-20 14:15:30 +03:00
|
|
|
|
2015-07-15 11:57:07 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2015-04-08 21:13:52 +03:00
|
|
|
}
|
|
|
|
|
2018-09-25 15:34:14 +03:00
|
|
|
BOOL shadow_client_audin_init(rdpShadowClient* client)
|
2015-04-08 21:13:52 +03:00
|
|
|
{
|
|
|
|
audin_server_context* audin;
|
|
|
|
audin = client->audin = audin_server_context_new(client->vcm);
|
2018-02-20 14:15:30 +03:00
|
|
|
|
2015-04-08 21:13:52 +03:00
|
|
|
if (!audin)
|
2018-09-25 15:34:14 +03:00
|
|
|
return FALSE;
|
2015-04-08 21:13:52 +03:00
|
|
|
|
|
|
|
audin->data = client;
|
|
|
|
|
|
|
|
if (client->subsystem->audinFormats)
|
|
|
|
{
|
2018-09-25 15:34:14 +03:00
|
|
|
size_t x;
|
|
|
|
audin->server_formats = audio_formats_new(client->subsystem->nAudinFormats);
|
|
|
|
|
|
|
|
if (!audin->server_formats)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
for (x = 0; x < client->subsystem->nAudinFormats; x++)
|
|
|
|
{
|
|
|
|
if (!audio_format_copy(&client->subsystem->audinFormats[x], &audin->server_formats[x]))
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2015-04-08 21:13:52 +03:00
|
|
|
audin->num_server_formats = client->subsystem->nAudinFormats;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-09-25 16:50:48 +03:00
|
|
|
audin->num_server_formats = server_audin_get_formats(&audin->server_formats);
|
2015-04-08 21:13:52 +03:00
|
|
|
}
|
|
|
|
|
2018-09-25 15:34:14 +03:00
|
|
|
if (audin->num_server_formats < 1)
|
|
|
|
goto fail;
|
|
|
|
|
2018-09-25 17:00:30 +03:00
|
|
|
audin->dst_format = &audin->server_formats[0];
|
2015-04-08 21:13:52 +03:00
|
|
|
audin->Opening = AudinServerOpening;
|
|
|
|
audin->OpenResult = AudinServerOpenResult;
|
|
|
|
audin->ReceiveSamples = AudinServerReceiveSamples;
|
2018-09-25 15:34:14 +03:00
|
|
|
return TRUE;
|
|
|
|
fail:
|
|
|
|
audin_server_context_free(audin);
|
|
|
|
client->audin = NULL;
|
|
|
|
return FALSE;
|
2015-04-08 21:13:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void shadow_client_audin_uninit(rdpShadowClient* client)
|
|
|
|
{
|
|
|
|
if (client->audin)
|
|
|
|
{
|
|
|
|
audin_server_context_free(client->audin);
|
|
|
|
client->audin = NULL;
|
|
|
|
}
|
|
|
|
}
|