2012-10-31 23:04:31 -04:00
|
|
|
/**
|
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
|
* FreeRDP Mac OS X Server (Audio Input)
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2015-06-02 04:05:10 -07:00
|
|
|
* Copyright 2015 Thincast Technologies GmbH
|
|
|
|
|
* Copyright 2015 DI (FH) Martin Haimberger <martin.haimberger@thincast.com>
|
2022-07-20 13:40:40 +02:00
|
|
|
* Copyright 2023 Pascal Nowack <Pascal.Nowack@gmx.de>
|
2012-10-31 23:04:31 -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 11:20:38 +01:00
|
|
|
#include <freerdp/config.h>
|
2012-10-31 23:04:31 -04:00
|
|
|
|
|
|
|
|
#include "mfreerdp.h"
|
|
|
|
|
|
|
|
|
|
#include "mf_audin.h"
|
2023-07-04 10:56:25 +02:00
|
|
|
#include "mf_interface.h"
|
2012-10-31 23:04:31 -04:00
|
|
|
|
2018-09-25 16:45:08 +02:00
|
|
|
#include <freerdp/server/server-common.h>
|
2014-09-12 17:38:12 +02:00
|
|
|
#include <freerdp/log.h>
|
|
|
|
|
#define TAG SERVER_TAG("mac")
|
|
|
|
|
|
2026-01-23 13:15:46 +01:00
|
|
|
WINPR_ATTR_NODISCARD
|
2022-07-20 13:40:40 +02:00
|
|
|
static UINT mf_peer_audin_data(audin_server_context* audin, const SNDIN_DATA* data)
|
|
|
|
|
{
|
|
|
|
|
/* TODO: Implement */
|
|
|
|
|
WINPR_ASSERT(audin);
|
|
|
|
|
WINPR_ASSERT(data);
|
|
|
|
|
|
|
|
|
|
WLog_WARN(TAG, "not implemented");
|
|
|
|
|
WLog_DBG(TAG, "receive %" PRIdz " bytes.", Stream_Length(data->Data));
|
|
|
|
|
return CHANNEL_RC_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-16 13:47:36 +02:00
|
|
|
BOOL mf_peer_audin_init(mfPeerContext* context)
|
2012-10-31 23:04:31 -04:00
|
|
|
{
|
2022-07-20 13:40:40 +02:00
|
|
|
WINPR_ASSERT(context);
|
|
|
|
|
|
2012-10-31 23:04:31 -04:00
|
|
|
context->audin = audin_server_context_new(context->vcm);
|
2015-07-15 00:50:35 -07:00
|
|
|
context->audin->rdpcontext = &context->_p;
|
2022-07-20 13:40:40 +02:00
|
|
|
context->audin->userdata = context;
|
|
|
|
|
|
|
|
|
|
context->audin->Data = mf_peer_audin_data;
|
|
|
|
|
|
2026-02-26 14:34:11 +01:00
|
|
|
return audin_server_set_formats(context->audin, -1, nullptr);
|
2022-07-20 13:40:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void mf_peer_audin_uninit(mfPeerContext* context)
|
|
|
|
|
{
|
|
|
|
|
WINPR_ASSERT(context);
|
|
|
|
|
|
2023-05-16 13:47:36 +02:00
|
|
|
audin_server_context_free(context->audin);
|
2026-02-26 14:34:11 +01:00
|
|
|
context->audin = nullptr;
|
2012-10-31 23:04:31 -04:00
|
|
|
}
|