2012-10-09 00:12:03 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* FreeRDP Sample Server (Audio Input)
|
|
|
|
*
|
|
|
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2015-06-02 10:50:38 +03:00
|
|
|
* Copyright 2015 Thincast Technologies GmbH
|
|
|
|
* Copyright 2015 DI (FH) Martin Haimberger <martin.haimberger@thincast.com>
|
2022-07-20 14:40:40 +03:00
|
|
|
* Copyright 2023 Pascal Nowack <Pascal.Nowack@gmx.de>
|
2012-10-09 00:12:03 +04:00
|
|
|
*
|
|
|
|
* 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>
|
2012-10-09 00:12:03 +04:00
|
|
|
|
2021-09-03 09:26:07 +03:00
|
|
|
#include <winpr/assert.h>
|
|
|
|
|
2012-10-09 00:12:03 +04:00
|
|
|
#include "sfreerdp.h"
|
|
|
|
|
|
|
|
#include "sf_audin.h"
|
|
|
|
|
2018-10-18 10:09:30 +03:00
|
|
|
#include <freerdp/server/server-common.h>
|
2014-09-12 19:38:12 +04:00
|
|
|
#include <freerdp/log.h>
|
|
|
|
#define TAG SERVER_TAG("sample")
|
|
|
|
|
2023-03-06 14:42:04 +03:00
|
|
|
#if defined(CHANNEL_AUDIN_SERVER)
|
2022-07-20 14:40:40 +03:00
|
|
|
|
|
|
|
static UINT sf_peer_audin_data(audin_server_context* audin, const SNDIN_DATA* data)
|
2012-10-09 00:12:03 +04:00
|
|
|
{
|
2019-02-07 19:41:34 +03:00
|
|
|
/* TODO: Implement */
|
2022-07-20 14:40:40 +03:00
|
|
|
WINPR_ASSERT(audin);
|
|
|
|
WINPR_ASSERT(data);
|
2021-09-03 09:26:07 +03:00
|
|
|
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_WARN(TAG, "not implemented");
|
2022-07-20 14:40:40 +03:00
|
|
|
WLog_DBG(TAG, "receive %" PRIdz " bytes.", Stream_Length(data->Data));
|
2015-06-02 10:50:38 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2012-10-09 00:12:03 +04:00
|
|
|
}
|
|
|
|
|
2023-03-06 14:42:04 +03:00
|
|
|
#endif
|
2012-10-09 00:12:03 +04:00
|
|
|
|
2023-05-16 14:47:36 +03:00
|
|
|
BOOL sf_peer_audin_init(testPeerContext* context)
|
2012-10-09 00:12:03 +04:00
|
|
|
{
|
2021-09-03 09:26:07 +03:00
|
|
|
WINPR_ASSERT(context);
|
2023-03-06 14:42:04 +03:00
|
|
|
#if defined(CHANNEL_AUDIN_SERVER)
|
2012-10-09 00:12:03 +04:00
|
|
|
context->audin = audin_server_context_new(context->vcm);
|
2021-09-03 09:26:07 +03:00
|
|
|
WINPR_ASSERT(context->audin);
|
|
|
|
|
2015-07-15 10:50:35 +03:00
|
|
|
context->audin->rdpcontext = &context->_p;
|
2022-07-20 14:40:40 +03:00
|
|
|
context->audin->userdata = context;
|
2012-10-09 00:12:03 +04:00
|
|
|
|
2022-07-20 14:40:40 +03:00
|
|
|
context->audin->Data = sf_peer_audin_data;
|
2012-10-09 00:12:03 +04:00
|
|
|
|
2023-05-16 14:47:36 +03:00
|
|
|
return audin_server_set_formats(context->audin, -1, NULL);
|
|
|
|
#else
|
|
|
|
return TRUE;
|
2023-03-06 14:42:04 +03:00
|
|
|
#endif
|
2012-10-09 00:12:03 +04:00
|
|
|
}
|
2019-11-22 12:41:09 +03:00
|
|
|
|
|
|
|
BOOL sf_peer_audin_start(testPeerContext* context)
|
|
|
|
{
|
2023-03-06 14:42:04 +03:00
|
|
|
#if defined(CHANNEL_AUDIN_SERVER)
|
2019-11-22 12:41:09 +03:00
|
|
|
if (!context || !context->audin || !context->audin->Open)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return context->audin->Open(context->audin);
|
2023-03-06 14:42:04 +03:00
|
|
|
#else
|
|
|
|
return FALSE;
|
|
|
|
#endif
|
2019-11-22 12:41:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL sf_peer_audin_stop(testPeerContext* context)
|
|
|
|
{
|
2023-03-06 14:42:04 +03:00
|
|
|
#if defined(CHANNEL_AUDIN_SERVER)
|
2019-11-22 12:41:09 +03:00
|
|
|
if (!context || !context->audin || !context->audin->Close)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return context->audin->Close(context->audin);
|
2023-03-06 14:42:04 +03:00
|
|
|
#else
|
|
|
|
return FALSE;
|
|
|
|
#endif
|
2019-11-22 12:41:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL sf_peer_audin_running(testPeerContext* context)
|
|
|
|
{
|
2023-03-06 14:42:04 +03:00
|
|
|
#if defined(CHANNEL_AUDIN_SERVER)
|
2019-11-22 12:41:09 +03:00
|
|
|
if (!context || !context->audin || !context->audin->IsOpen)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return context->audin->IsOpen(context->audin);
|
2023-03-06 14:42:04 +03:00
|
|
|
#else
|
|
|
|
return FALSE;
|
|
|
|
#endif
|
2019-11-22 12:41:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void sf_peer_audin_uninit(testPeerContext* context)
|
|
|
|
{
|
2022-07-20 14:40:40 +03:00
|
|
|
WINPR_ASSERT(context);
|
|
|
|
|
2023-03-06 14:42:04 +03:00
|
|
|
#if defined(CHANNEL_AUDIN_SERVER)
|
2023-05-16 14:47:36 +03:00
|
|
|
audin_server_context_free(context->audin);
|
|
|
|
context->audin = NULL;
|
2023-03-06 14:42:04 +03:00
|
|
|
#endif
|
2019-11-22 12:41:09 +03:00
|
|
|
}
|