mirror of https://github.com/FreeRDP/FreeRDP
171 lines
3.7 KiB
C
171 lines
3.7 KiB
C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
* FreeRDP Windows Server (Audio Output)
|
|
*
|
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
* Copyright 2013 Corey Clayton <can.of.tuna@gmail.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.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <winpr/windows.h>
|
|
|
|
#include "wf_rdpsnd.h"
|
|
#include "wf_info.h"
|
|
|
|
#ifdef WITH_RDPSND_DSOUND
|
|
|
|
#include "wf_directsound.h"
|
|
|
|
#else
|
|
|
|
#include "wf_wasapi.h"
|
|
|
|
#endif
|
|
|
|
static const AUDIO_FORMAT audio_formats[] =
|
|
{
|
|
{ WAVE_FORMAT_PCM, 2, 44100, 176400, 4, 16, NULL },
|
|
{ WAVE_FORMAT_ALAW, 2, 22050, 44100, 2, 8, NULL }
|
|
};
|
|
|
|
static void wf_peer_rdpsnd_activated(rdpsnd_server_context* context)
|
|
{
|
|
wfInfo* wfi;
|
|
int i, j;
|
|
|
|
wfi = wf_info_get_instance();
|
|
|
|
wfi->agreed_format = NULL;
|
|
printf("Client supports the following %d formats: \n", context->num_client_formats);
|
|
for(i = 0; i < context->num_client_formats; i++)
|
|
{
|
|
//TODO: improve the way we agree on a format
|
|
for (j = 0; j < context->num_server_formats; j++)
|
|
{
|
|
if ((context->client_formats[i].wFormatTag == context->server_formats[j].wFormatTag) &&
|
|
(context->client_formats[i].nChannels == context->server_formats[j].nChannels) &&
|
|
(context->client_formats[i].nSamplesPerSec == context->server_formats[j].nSamplesPerSec))
|
|
{
|
|
printf("agreed on format!\n");
|
|
wfi->agreed_format = (AUDIO_FORMAT*)&context->server_formats[j];
|
|
break;
|
|
}
|
|
}
|
|
if (wfi->agreed_format != NULL)
|
|
break;
|
|
|
|
}
|
|
|
|
if (wfi->agreed_format == NULL)
|
|
{
|
|
printf("Could not agree on a audio format with the server\n");
|
|
return;
|
|
}
|
|
|
|
context->SelectFormat(context, i);
|
|
context->SetVolume(context, 0x7FFF, 0x7FFF);
|
|
|
|
#ifdef WITH_RDPSND_DSOUND
|
|
|
|
wf_directsound_activate(context);
|
|
|
|
#else
|
|
|
|
wf_wasapi_activate(context);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
int wf_rdpsnd_lock()
|
|
{
|
|
DWORD dRes;
|
|
wfInfo* wfi;
|
|
|
|
wfi = wf_info_get_instance();
|
|
|
|
dRes = WaitForSingleObject(wfi->snd_mutex, INFINITE);
|
|
|
|
switch (dRes)
|
|
{
|
|
case WAIT_ABANDONED:
|
|
case WAIT_OBJECT_0:
|
|
return TRUE;
|
|
break;
|
|
|
|
case WAIT_TIMEOUT:
|
|
return FALSE;
|
|
break;
|
|
|
|
case WAIT_FAILED:
|
|
printf("wf_rdpsnd_lock failed with 0x%08X\n", GetLastError());
|
|
return -1;
|
|
break;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
int wf_rdpsnd_unlock()
|
|
{
|
|
wfInfo* wfi;
|
|
|
|
wfi = wf_info_get_instance();
|
|
|
|
if (ReleaseMutex(wfi->snd_mutex) == 0)
|
|
{
|
|
printf("wf_rdpsnd_unlock failed with 0x%08X\n", GetLastError());
|
|
return -1;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
BOOL wf_peer_rdpsnd_init(wfPeerContext* context)
|
|
{
|
|
wfInfo* wfi;
|
|
|
|
wfi = wf_info_get_instance();
|
|
|
|
wfi->snd_mutex = CreateMutex(NULL, FALSE, NULL);
|
|
context->rdpsnd = rdpsnd_server_context_new(context->vcm);
|
|
context->rdpsnd->data = context;
|
|
|
|
context->rdpsnd->server_formats = audio_formats;
|
|
context->rdpsnd->num_server_formats =
|
|
sizeof(audio_formats) / sizeof(audio_formats[0]);
|
|
|
|
context->rdpsnd->src_format.wFormatTag = 1;
|
|
context->rdpsnd->src_format.nChannels = 2;
|
|
context->rdpsnd->src_format.nSamplesPerSec = 44100;
|
|
context->rdpsnd->src_format.wBitsPerSample = 16;
|
|
|
|
context->rdpsnd->Activated = wf_peer_rdpsnd_activated;
|
|
|
|
context->rdpsnd->Initialize(context->rdpsnd);
|
|
|
|
wf_rdpsnd_set_latest_peer(context);
|
|
|
|
wfi->snd_stop = FALSE;
|
|
return TRUE;
|
|
}
|
|
|