FreeRDP/channels/rdpsnd/client/rdpsnd_main.c

785 lines
19 KiB
C
Raw Normal View History

2011-08-15 11:08:23 +04:00
/**
2012-10-09 07:02:04 +04:00
* FreeRDP: A Remote Desktop Protocol Implementation
2011-08-15 11:08:23 +04:00
* Audio Output Virtual Channel
*
* Copyright 2009-2011 Jay Sorg
* Copyright 2010-2011 Vic Lee
*
* 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
#ifndef _WIN32
#include <sys/time.h>
#endif
2011-08-15 11:08:23 +04:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <winpr/crt.h>
2013-02-20 07:36:04 +04:00
#include <winpr/synch.h>
#include <winpr/cmdline.h>
2013-02-20 06:21:20 +04:00
#include <winpr/sysinfo.h>
2013-02-20 07:36:04 +04:00
#include <winpr/collections.h>
2011-08-15 11:08:23 +04:00
#include <freerdp/types.h>
#include <freerdp/addin.h>
#include <freerdp/constants.h>
2011-08-15 11:08:23 +04:00
#include <freerdp/utils/stream.h>
#include <freerdp/utils/signal.h>
2011-08-15 11:08:23 +04:00
#include <freerdp/utils/svc_plugin.h>
#include "rdpsnd_main.h"
#define TIME_DELAY_MS 250
2011-08-15 11:08:23 +04:00
struct rdpsnd_plugin
{
rdpSvcPlugin plugin;
wMessagePipe* MsgPipe;
HANDLE thread;
2011-08-15 11:08:23 +04:00
BYTE cBlockNo;
2011-08-15 11:08:23 +04:00
int current_format;
AUDIO_FORMAT* ServerFormats;
UINT16 NumberOfServerFormats;
AUDIO_FORMAT* ClientFormats;
UINT16 NumberOfClientFormats;
BOOL expectingWave;
BYTE waveData[4];
UINT16 waveDataSize;
2012-10-09 11:26:39 +04:00
UINT32 wTimeStamp; /* server timestamp */
UINT32 wave_timestamp; /* client timestamp */
2011-08-15 11:08:23 +04:00
BOOL is_open;
2012-10-09 11:26:39 +04:00
UINT32 close_timestamp;
2011-08-15 11:08:23 +04:00
UINT16 fixed_format;
UINT16 fixed_channel;
2012-10-09 11:26:39 +04:00
UINT32 fixed_rate;
int latency;
2011-08-15 11:08:23 +04:00
char* subsystem;
char* device_name;
2011-08-15 11:08:23 +04:00
/* Device plugin */
rdpsndDevicePlugin* device;
};
static void* rdpsnd_schedule_thread(void* arg)
2011-08-15 11:08:23 +04:00
{
2013-02-20 07:36:04 +04:00
STREAM* data;
wMessage message;
UINT16 wTimeDiff;
2013-02-20 07:36:04 +04:00
UINT16 wTimeStamp;
UINT16 wCurrentTime;
rdpsndPlugin* rdpsnd = (rdpsndPlugin*) arg;
2011-08-15 11:08:23 +04:00
while (1)
2011-08-15 11:08:23 +04:00
{
if (!MessageQueue_Wait(rdpsnd->MsgPipe->Out))
break;
if (!MessageQueue_Peek(rdpsnd->MsgPipe->Out, &message, TRUE))
break;
2013-02-20 07:36:04 +04:00
if (message.id == WMQ_QUIT)
break;
2012-10-03 07:01:16 +04:00
2013-02-20 07:36:04 +04:00
wTimeStamp = (UINT16) (size_t) message.lParam;
wCurrentTime = (UINT16) GetTickCount();
2012-10-03 07:01:16 +04:00
//printf("wTimeStamp: %d wCurrentTime: %d\n", wTimeStamp, wCurrentTime);
2011-08-15 11:08:23 +04:00
if (wCurrentTime <= wTimeStamp)
{
wTimeDiff = wTimeStamp - wCurrentTime;
//printf("Sleeping %d ms\n", wTimeDiff);
Sleep(wTimeDiff);
}
data = (STREAM*) message.wParam;
svc_plugin_send((rdpSvcPlugin*) rdpsnd, data);
DEBUG_SVC("processed output data");
2011-08-15 11:08:23 +04:00
}
#if 0
2013-02-20 06:21:20 +04:00
if (rdpsnd->is_open && (rdpsnd->close_timestamp > 0))
2011-08-15 11:08:23 +04:00
{
2013-02-20 07:36:04 +04:00
if (GetTickCount() > rdpsnd->close_timestamp)
2011-08-15 11:08:23 +04:00
{
if (rdpsnd->device)
IFCALL(rdpsnd->device->Close, rdpsnd->device);
rdpsnd->is_open = FALSE;
2011-08-15 11:08:23 +04:00
rdpsnd->close_timestamp = 0;
DEBUG_SVC("processed close");
}
}
#endif
2011-08-15 11:08:23 +04:00
return NULL;
2011-08-15 11:08:23 +04:00
}
void rdpsnd_send_quality_mode_pdu(rdpsndPlugin* rdpsnd)
2011-08-15 11:08:23 +04:00
{
STREAM* pdu;
pdu = stream_new(8);
stream_write_BYTE(pdu, SNDC_QUALITYMODE); /* msgType */
stream_write_BYTE(pdu, 0); /* bPad */
stream_write_UINT16(pdu, 4); /* BodySize */
stream_write_UINT16(pdu, HIGH_QUALITY); /* wQualityMode */
stream_write_UINT16(pdu, 0); /* Reserved */
svc_plugin_send((rdpSvcPlugin*) rdpsnd, pdu);
}
void rdpsnd_free_audio_formats(AUDIO_FORMAT* formats, UINT16 count)
{
int index;
AUDIO_FORMAT* format;
2011-08-15 11:08:23 +04:00
if (formats)
{
for (index = 0; index < (int) count; index++)
{
format = &formats[index];
2011-08-15 11:08:23 +04:00
if (format->cbSize)
free(format->data);
}
2011-08-15 11:08:23 +04:00
free(formats);
}
}
void rdpsnd_adapt_audio_formats_new_to_old(rdpsndFormat* oldFormat, AUDIO_FORMAT* newFormat)
{
oldFormat->wFormatTag = newFormat->wFormatTag;
oldFormat->nChannels = newFormat->nChannels;
oldFormat->nSamplesPerSec = newFormat->nSamplesPerSec;
oldFormat->nBlockAlign = newFormat->nBlockAlign;
oldFormat->wBitsPerSample = newFormat->wBitsPerSample;
oldFormat->cbSize = newFormat->cbSize;
oldFormat->data = newFormat->data;
}
void rdpsnd_select_supported_audio_formats(rdpsndPlugin* rdpsnd)
{
int index;
rdpsndFormat sndFormat;
AUDIO_FORMAT* serverFormat;
AUDIO_FORMAT* clientFormat;
rdpsnd_free_audio_formats(rdpsnd->ClientFormats, rdpsnd->NumberOfClientFormats);
rdpsnd->NumberOfClientFormats = 0;
rdpsnd->ClientFormats = NULL;
rdpsnd->ClientFormats = (AUDIO_FORMAT*) malloc(sizeof(AUDIO_FORMAT) * rdpsnd->NumberOfServerFormats);
2013-02-20 02:47:55 +04:00
for (index = 0; index < (int) rdpsnd->NumberOfServerFormats; index++)
2011-08-15 11:08:23 +04:00
{
serverFormat = &rdpsnd->ServerFormats[index];
if (rdpsnd->fixed_format > 0 && (rdpsnd->fixed_format != serverFormat->wFormatTag))
continue;
if (rdpsnd->fixed_channel > 0 && (rdpsnd->fixed_channel != serverFormat->nChannels))
continue;
if (rdpsnd->fixed_rate > 0 && (rdpsnd->fixed_rate != serverFormat->nSamplesPerSec))
continue;
/**
* FIXME: temporary adapter to avoid breaking code depending on rdpsndFormat definition
*/
rdpsnd_adapt_audio_formats_new_to_old(&sndFormat, serverFormat);
if (rdpsnd->device && rdpsnd->device->FormatSupported(rdpsnd->device, &sndFormat))
{
clientFormat = &rdpsnd->ClientFormats[rdpsnd->NumberOfClientFormats++];
CopyMemory(clientFormat, serverFormat, sizeof(AUDIO_FORMAT));
clientFormat->cbSize = 0;
if (serverFormat->cbSize > 0)
{
clientFormat->data = (BYTE*) malloc(serverFormat->cbSize);
CopyMemory(clientFormat->data, serverFormat->data, serverFormat->cbSize);
clientFormat->cbSize = serverFormat->cbSize;
}
}
2011-08-15 11:08:23 +04:00
}
}
2011-08-15 11:08:23 +04:00
void rdpsnd_send_client_audio_formats(rdpsndPlugin* rdpsnd)
{
int index;
STREAM* pdu;
UINT16 length;
UINT32 dwVolume;
UINT16 dwVolumeLeft;
UINT16 dwVolumeRight;
UINT16 wNumberOfFormats;
AUDIO_FORMAT* clientFormat;
2011-08-15 11:08:23 +04:00
2013-02-20 06:21:20 +04:00
dwVolumeLeft = (0xFFFF / 2); /* 50% ? */
dwVolumeRight = (0xFFFF / 2); /* 50% ? */
dwVolume = (dwVolumeLeft << 16) | dwVolumeRight;
wNumberOfFormats = rdpsnd->NumberOfClientFormats;
length = 4 + 20;
for (index = 0; index < (int) wNumberOfFormats; index++)
length += (18 + rdpsnd->ClientFormats[index].cbSize);
pdu = stream_new(length);
stream_write_BYTE(pdu, SNDC_FORMATS); /* msgType */
stream_write_BYTE(pdu, 0); /* bPad */
stream_write_UINT16(pdu, length - 4); /* BodySize */
stream_write_UINT32(pdu, TSSNDCAPS_ALIVE | TSSNDCAPS_VOLUME); /* dwFlags */
stream_write_UINT32(pdu, dwVolume); /* dwVolume */
stream_write_UINT32(pdu, 0); /* dwPitch */
stream_write_UINT16(pdu, 0); /* wDGramPort */
stream_write_UINT16(pdu, wNumberOfFormats); /* wNumberOfFormats */
stream_write_BYTE(pdu, 0); /* cLastBlockConfirmed */
stream_write_UINT16(pdu, 6); /* wVersion */
stream_write_BYTE(pdu, 0); /* bPad */
2011-08-15 11:08:23 +04:00
for (index = 0; index < (int) wNumberOfFormats; index++)
2011-08-15 11:08:23 +04:00
{
clientFormat = &rdpsnd->ClientFormats[index];
stream_write_UINT16(pdu, clientFormat->wFormatTag);
stream_write_UINT16(pdu, clientFormat->nChannels);
stream_write_UINT32(pdu, clientFormat->nSamplesPerSec);
stream_write_UINT32(pdu, clientFormat->nAvgBytesPerSec);
stream_write_UINT16(pdu, clientFormat->nBlockAlign);
stream_write_UINT16(pdu, clientFormat->wBitsPerSample);
stream_write_UINT16(pdu, clientFormat->cbSize);
if (clientFormat->cbSize > 0)
stream_write(pdu, clientFormat->data, clientFormat->cbSize);
}
2013-02-20 02:47:55 +04:00
svc_plugin_send((rdpSvcPlugin*) rdpsnd, pdu);
}
2011-08-15 12:28:52 +04:00
void rdpsnd_recv_server_audio_formats_pdu(rdpsndPlugin* rdpsnd, STREAM* s)
{
int index;
UINT16 wVersion;
AUDIO_FORMAT* format;
UINT16 wNumberOfFormats;
2013-02-20 02:47:55 +04:00
rdpsnd_free_audio_formats(rdpsnd->ServerFormats, rdpsnd->NumberOfServerFormats);
rdpsnd->NumberOfServerFormats = 0;
rdpsnd->ServerFormats = NULL;
2013-02-20 02:47:55 +04:00
stream_seek_UINT32(s); /* dwFlags */
stream_seek_UINT32(s); /* dwVolume */
stream_seek_UINT32(s); /* dwPitch */
stream_seek_UINT16(s); /* wDGramPort */
stream_read_UINT16(s, wNumberOfFormats);
stream_read_BYTE(s, rdpsnd->cBlockNo); /* cLastBlockConfirmed */
stream_read_UINT16(s, wVersion); /* wVersion */
stream_seek_BYTE(s); /* bPad */
2011-08-15 11:08:23 +04:00
rdpsnd->NumberOfServerFormats = wNumberOfFormats;
rdpsnd->ServerFormats = (AUDIO_FORMAT*) malloc(sizeof(AUDIO_FORMAT) * wNumberOfFormats);
2013-02-20 02:47:55 +04:00
for (index = 0; index < (int) wNumberOfFormats; index++)
2011-08-15 11:08:23 +04:00
{
format = &rdpsnd->ServerFormats[index];
stream_read_UINT16(s, format->wFormatTag); /* wFormatTag */
stream_read_UINT16(s, format->nChannels); /* nChannels */
stream_read_UINT32(s, format->nSamplesPerSec); /* nSamplesPerSec */
stream_read_UINT32(s, format->nAvgBytesPerSec); /* nAvgBytesPerSec */
stream_read_UINT16(s, format->nBlockAlign); /* nBlockAlign */
stream_read_UINT16(s, format->wBitsPerSample); /* wBitsPerSample */
stream_read_UINT16(s, format->cbSize); /* cbSize */
format->data = (BYTE*) malloc(format->cbSize);
stream_read(s, format->data, format->cbSize);
2011-08-15 11:08:23 +04:00
}
rdpsnd_select_supported_audio_formats(rdpsnd);
2011-08-15 11:08:23 +04:00
rdpsnd_send_client_audio_formats(rdpsnd);
2011-08-15 11:08:23 +04:00
if (wVersion >= 6)
rdpsnd_send_quality_mode_pdu(rdpsnd);
}
void rdpsnd_send_training_confirm_pdu(rdpsndPlugin* rdpsnd, UINT16 wTimeStamp, UINT16 wPackSize)
{
STREAM* pdu;
pdu = stream_new(8);
stream_write_BYTE(pdu, SNDC_TRAINING); /* msgType */
stream_write_BYTE(pdu, 0); /* bPad */
stream_write_UINT16(pdu, 4); /* BodySize */
stream_write_UINT16(pdu, wTimeStamp);
stream_write_UINT16(pdu, wPackSize);
svc_plugin_send((rdpSvcPlugin*) rdpsnd, pdu);
2011-08-15 11:08:23 +04:00
}
static void rdpsnd_recv_training_pdu(rdpsndPlugin* rdpsnd, STREAM* s)
2011-08-15 11:08:23 +04:00
{
UINT16 wTimeStamp;
UINT16 wPackSize;
2011-08-15 11:08:23 +04:00
stream_read_UINT16(s, wTimeStamp);
stream_read_UINT16(s, wPackSize);
2011-08-15 11:08:23 +04:00
rdpsnd_send_training_confirm_pdu(rdpsnd, wTimeStamp, wPackSize);
2011-08-15 11:08:23 +04:00
}
static void rdpsnd_recv_wave_info_pdu(rdpsndPlugin* rdpsnd, STREAM* s, UINT16 BodySize)
2011-08-15 11:08:23 +04:00
{
UINT16 wFormatNo;
AUDIO_FORMAT* format;
rdpsndFormat sndFormat;
2011-08-15 11:08:23 +04:00
stream_read_UINT16(s, rdpsnd->wTimeStamp);
stream_read_UINT16(s, wFormatNo);
stream_read_BYTE(s, rdpsnd->cBlockNo);
stream_seek(s, 3); /* bPad */
stream_read(s, rdpsnd->waveData, 4);
2013-02-20 06:21:20 +04:00
2011-08-15 11:08:23 +04:00
rdpsnd->waveDataSize = BodySize - 8;
2013-02-20 06:21:20 +04:00
rdpsnd->wave_timestamp = GetTickCount();
rdpsnd->expectingWave = TRUE;
rdpsnd->close_timestamp = 0;
format = &rdpsnd->ClientFormats[wFormatNo];
rdpsnd_adapt_audio_formats_new_to_old(&sndFormat, format);
2011-08-15 11:08:23 +04:00
if (!rdpsnd->is_open)
{
rdpsnd->is_open = TRUE;
rdpsnd->current_format = wFormatNo;
2011-08-15 11:08:23 +04:00
if (rdpsnd->device)
{
IFCALL(rdpsnd->device->Open, rdpsnd->device, &sndFormat, rdpsnd->latency);
}
2011-08-15 11:08:23 +04:00
}
else if (wFormatNo != rdpsnd->current_format)
{
rdpsnd->current_format = wFormatNo;
2011-08-15 11:08:23 +04:00
if (rdpsnd->device)
{
IFCALL(rdpsnd->device->SetFormat, rdpsnd->device, &sndFormat, rdpsnd->latency);
}
2011-08-15 11:08:23 +04:00
}
}
void rdpsnd_send_wave_confirm_pdu(rdpsndPlugin* rdpsnd, UINT16 wTimeStamp, BYTE cConfirmedBlockNo)
{
STREAM* pdu;
pdu = stream_new(8);
stream_write_BYTE(pdu, SNDC_WAVECONFIRM);
stream_write_BYTE(pdu, 0);
stream_write_UINT16(pdu, 4);
stream_write_UINT16(pdu, wTimeStamp);
stream_write_BYTE(pdu, cConfirmedBlockNo); /* cConfirmedBlockNo */
stream_write_BYTE(pdu, 0); /* bPad */
svc_plugin_send((rdpSvcPlugin*) rdpsnd, pdu);
}
void rdpsnd_device_send_wave_confirm_pdu(rdpsndDevicePlugin* device, UINT16 wTimeStamp, BYTE cConfirmedBlockNo)
{
rdpsnd_send_wave_confirm_pdu(device->rdpsnd, wTimeStamp, cConfirmedBlockNo);
}
static void rdpsnd_recv_wave_pdu(rdpsndPlugin* rdpsnd, STREAM* s)
2011-08-15 11:08:23 +04:00
{
2013-02-20 07:36:04 +04:00
STREAM* data;
UINT16 wTimeStamp;
2011-08-15 11:08:23 +04:00
rdpsnd->expectingWave = FALSE;
/**
* The Wave PDU is a special case: it is always sent after a Wave Info PDU,
* and we do not process its header. Instead, the header is pad that needs
* to be filled with the first four bytes of the audio sample data sent as
* part of the preceding Wave Info PDU.
*/
CopyMemory(stream_get_head(s), rdpsnd->waveData, 4);
if (stream_get_size(s) != rdpsnd->waveDataSize)
2011-08-15 11:08:23 +04:00
{
DEBUG_WARN("size error");
return;
}
2011-08-15 11:08:23 +04:00
if (rdpsnd->device)
{
if (rdpsnd->device->WavePlay)
{
IFCALL(rdpsnd->device->WavePlay, rdpsnd->device, rdpsnd->wTimeStamp,
rdpsnd->current_format, rdpsnd->cBlockNo, stream_get_head(s), stream_get_size(s));
}
else
{
IFCALL(rdpsnd->device->Play, rdpsnd->device, stream_get_head(s), stream_get_size(s));
}
}
2011-08-15 11:08:23 +04:00
if (!rdpsnd->device->WavePlay)
{
wTimeStamp = rdpsnd->wTimeStamp + TIME_DELAY_MS;
data = stream_new(8);
stream_write_BYTE(data, SNDC_WAVECONFIRM);
stream_write_BYTE(data, 0);
stream_write_UINT16(data, 4);
stream_write_UINT16(data, wTimeStamp);
stream_write_BYTE(data, rdpsnd->cBlockNo); /* cConfirmedBlockNo */
stream_write_BYTE(data, 0); /* bPad */
wTimeStamp = rdpsnd->wave_timestamp + TIME_DELAY_MS;
MessageQueue_Post(rdpsnd->MsgPipe->Out, NULL, 0, (void*) data, (void*) (size_t) wTimeStamp);
}
2011-08-15 11:08:23 +04:00
}
static void rdpsnd_recv_close_pdu(rdpsndPlugin* rdpsnd)
2011-08-15 11:08:23 +04:00
{
DEBUG_SVC("server closes.");
if (rdpsnd->device)
{
IFCALL(rdpsnd->device->Start, rdpsnd->device);
}
2013-02-20 06:21:20 +04:00
rdpsnd->close_timestamp = GetTickCount() + 2000;
2011-08-15 11:08:23 +04:00
}
static void rdpsnd_recv_volume_pdu(rdpsndPlugin* rdpsnd, STREAM* s)
2011-08-15 11:08:23 +04:00
{
2012-10-09 11:26:39 +04:00
UINT32 dwVolume;
2011-08-15 11:08:23 +04:00
stream_read_UINT32(s, dwVolume);
2011-08-15 11:08:23 +04:00
DEBUG_SVC("dwVolume 0x%X", dwVolume);
2011-08-15 11:08:23 +04:00
if (rdpsnd->device)
{
2011-08-15 11:08:23 +04:00
IFCALL(rdpsnd->device->SetVolume, rdpsnd->device, dwVolume);
}
2011-08-15 11:08:23 +04:00
}
static void rdpsnd_recv_pdu(rdpSvcPlugin* plugin, STREAM* s)
2011-08-15 11:08:23 +04:00
{
BYTE msgType;
UINT16 BodySize;
rdpsndPlugin* rdpsnd = (rdpsndPlugin*) plugin;
2011-08-15 11:08:23 +04:00
if (rdpsnd->expectingWave)
{
rdpsnd_recv_wave_pdu(rdpsnd, s);
stream_free(s);
2011-08-15 11:08:23 +04:00
return;
}
stream_read_BYTE(s, msgType); /* msgType */
stream_seek_BYTE(s); /* bPad */
stream_read_UINT16(s, BodySize);
2011-08-15 11:08:23 +04:00
DEBUG_SVC("msgType %d BodySize %d", msgType, BodySize);
switch (msgType)
{
case SNDC_FORMATS:
rdpsnd_recv_server_audio_formats_pdu(rdpsnd, s);
2011-08-15 11:08:23 +04:00
break;
2011-08-15 11:08:23 +04:00
case SNDC_TRAINING:
rdpsnd_recv_training_pdu(rdpsnd, s);
2011-08-15 11:08:23 +04:00
break;
2011-08-15 11:08:23 +04:00
case SNDC_WAVE:
rdpsnd_recv_wave_info_pdu(rdpsnd, s, BodySize);
2011-08-15 11:08:23 +04:00
break;
2011-08-15 11:08:23 +04:00
case SNDC_CLOSE:
rdpsnd_recv_close_pdu(rdpsnd);
2011-08-15 11:08:23 +04:00
break;
2011-08-15 11:08:23 +04:00
case SNDC_SETVOLUME:
rdpsnd_recv_volume_pdu(rdpsnd, s);
2011-08-15 11:08:23 +04:00
break;
2011-08-15 11:08:23 +04:00
default:
DEBUG_WARN("unknown msgType %d", msgType);
break;
}
stream_free(s);
2011-08-15 11:08:23 +04:00
}
static void rdpsnd_register_device_plugin(rdpsndPlugin* rdpsnd, rdpsndDevicePlugin* device)
{
if (rdpsnd->device)
{
DEBUG_WARN("existing device, abort.");
return;
}
2011-08-15 11:08:23 +04:00
rdpsnd->device = device;
device->rdpsnd = rdpsnd;
device->WaveConfirm = rdpsnd_device_send_wave_confirm_pdu;
2011-08-15 11:08:23 +04:00
}
static BOOL rdpsnd_load_device_plugin(rdpsndPlugin* rdpsnd, const char* name, ADDIN_ARGV* args)
2011-08-15 11:08:23 +04:00
{
PFREERDP_RDPSND_DEVICE_ENTRY entry;
FREERDP_RDPSND_DEVICE_ENTRY_POINTS entryPoints;
entry = (PFREERDP_RDPSND_DEVICE_ENTRY) freerdp_load_channel_addin_entry("rdpsnd", (LPSTR) name, NULL, 0);
2011-08-15 11:08:23 +04:00
if (!entry)
return FALSE;
2011-08-15 11:08:23 +04:00
entryPoints.rdpsnd = rdpsnd;
entryPoints.pRegisterRdpsndDevice = rdpsnd_register_device_plugin;
entryPoints.args = args;
2011-08-15 11:08:23 +04:00
if (entry(&entryPoints) != 0)
{
DEBUG_WARN("%s entry returns error.", name);
return FALSE;
2011-08-15 11:08:23 +04:00
}
return TRUE;
2011-08-15 11:08:23 +04:00
}
void rdpsnd_set_subsystem(rdpsndPlugin* rdpsnd, char* subsystem)
2011-08-15 11:08:23 +04:00
{
if (rdpsnd->subsystem)
free(rdpsnd->subsystem);
rdpsnd->subsystem = _strdup(subsystem);
}
void rdpsnd_set_device_name(rdpsndPlugin* rdpsnd, char* device_name)
{
if (rdpsnd->device_name)
free(rdpsnd->device_name);
rdpsnd->device_name = _strdup(device_name);
}
COMMAND_LINE_ARGUMENT_A rdpsnd_args[] =
{
{ "sys", COMMAND_LINE_VALUE_REQUIRED, "<subsystem>", NULL, NULL, -1, NULL, "subsystem" },
{ "dev", COMMAND_LINE_VALUE_REQUIRED, "<device>", NULL, NULL, -1, NULL, "device" },
{ "format", COMMAND_LINE_VALUE_REQUIRED, "<format>", NULL, NULL, -1, NULL, "format" },
{ "rate", COMMAND_LINE_VALUE_REQUIRED, "<rate>", NULL, NULL, -1, NULL, "rate" },
{ "channel", COMMAND_LINE_VALUE_REQUIRED, "<channel>", NULL, NULL, -1, NULL, "channel" },
{ "latency", COMMAND_LINE_VALUE_REQUIRED, "<latency>", NULL, NULL, -1, NULL, "latency" },
{ NULL, 0, NULL, NULL, NULL, -1, NULL, NULL }
};
static void rdpsnd_process_addin_args(rdpsndPlugin* rdpsnd, ADDIN_ARGV* args)
{
int status;
DWORD flags;
COMMAND_LINE_ARGUMENT_A* arg;
flags = COMMAND_LINE_SIGIL_NONE | COMMAND_LINE_SEPARATOR_COLON;
status = CommandLineParseArgumentsA(args->argc, (const char**) args->argv,
rdpsnd_args, flags, rdpsnd, NULL, NULL);
arg = rdpsnd_args;
do
2011-08-15 11:08:23 +04:00
{
if (!(arg->Flags & COMMAND_LINE_VALUE_PRESENT))
continue;
CommandLineSwitchStart(arg)
CommandLineSwitchCase(arg, "sys")
{
rdpsnd_set_subsystem(rdpsnd, arg->Value);
}
CommandLineSwitchCase(arg, "dev")
{
rdpsnd_set_device_name(rdpsnd, arg->Value);
}
CommandLineSwitchCase(arg, "format")
{
rdpsnd->fixed_format = atoi(arg->Value);
}
CommandLineSwitchCase(arg, "rate")
{
rdpsnd->fixed_rate = atoi(arg->Value);
}
CommandLineSwitchCase(arg, "channel")
{
rdpsnd->fixed_channel = atoi(arg->Value);
}
CommandLineSwitchCase(arg, "latency")
{
rdpsnd->latency = atoi(arg->Value);
}
CommandLineSwitchDefault(arg)
{
}
CommandLineSwitchEnd(arg)
2011-08-15 11:08:23 +04:00
}
while ((arg = CommandLineFindNextArgumentA(arg)) != NULL);
2011-08-15 11:08:23 +04:00
}
static void rdpsnd_process_connect(rdpSvcPlugin* plugin)
{
ADDIN_ARGV* args;
rdpsndPlugin* rdpsnd = (rdpsndPlugin*) plugin;
2011-08-15 11:08:23 +04:00
DEBUG_SVC("connecting");
rdpsnd->latency = -1;
rdpsnd->MsgPipe = MessagePipe_New();
rdpsnd->thread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE) rdpsnd_schedule_thread, (void*) plugin, 0, NULL);
2013-02-20 07:36:04 +04:00
args = (ADDIN_ARGV*) plugin->channel_entry_points.pExtendedData;
if (args)
rdpsnd_process_addin_args(rdpsnd, args);
if (rdpsnd->subsystem)
{
if (strcmp(rdpsnd->subsystem, "fake") == 0)
return;
rdpsnd_load_device_plugin(rdpsnd, rdpsnd->subsystem, args);
}
if (!rdpsnd->device)
2011-08-15 11:08:23 +04:00
{
rdpsnd_set_subsystem(rdpsnd, "pulse");
rdpsnd_set_device_name(rdpsnd, "");
rdpsnd_load_device_plugin(rdpsnd, rdpsnd->subsystem, args);
2011-08-15 11:08:23 +04:00
}
if (!rdpsnd->device)
2011-08-15 11:08:23 +04:00
{
rdpsnd_set_subsystem(rdpsnd, "alsa");
rdpsnd_set_device_name(rdpsnd, "default");
rdpsnd_load_device_plugin(rdpsnd, rdpsnd->subsystem, args);
}
2012-08-01 20:50:27 +04:00
if (!rdpsnd->device)
{
rdpsnd_set_subsystem(rdpsnd, "macaudio");
rdpsnd_set_device_name(rdpsnd, "default");
rdpsnd_load_device_plugin(rdpsnd, rdpsnd->subsystem, args);
2011-08-15 11:08:23 +04:00
}
if (!rdpsnd->device)
{
rdpsnd_set_subsystem(rdpsnd, "winmm");
rdpsnd_set_device_name(rdpsnd, "");
rdpsnd_load_device_plugin(rdpsnd, rdpsnd->subsystem, args);
}
if (!rdpsnd->device)
2011-08-15 11:08:23 +04:00
{
DEBUG_WARN("no sound device.");
return;
2011-08-15 11:08:23 +04:00
}
}
2011-08-18 01:28:26 +04:00
static void rdpsnd_process_event(rdpSvcPlugin* plugin, RDP_EVENT* event)
2011-08-15 11:08:23 +04:00
{
freerdp_event_free(event);
}
static void rdpsnd_process_terminate(rdpSvcPlugin* plugin)
{
2012-10-03 07:01:16 +04:00
rdpsndPlugin* rdpsnd = (rdpsndPlugin*) plugin;
2011-08-15 11:08:23 +04:00
if (rdpsnd->device)
IFCALL(rdpsnd->device->Free, rdpsnd->device);
MessagePipe_Free(rdpsnd->MsgPipe);
2011-08-15 11:08:23 +04:00
if (rdpsnd->subsystem)
free(rdpsnd->subsystem);
if (rdpsnd->device_name)
free(rdpsnd->device_name);
free(plugin);
2011-08-15 11:08:23 +04:00
}
/* rdpsnd is always built-in */
#define VirtualChannelEntry rdpsnd_VirtualChannelEntry
2012-11-01 07:04:31 +04:00
int VirtualChannelEntry(PCHANNEL_ENTRY_POINTS pEntryPoints)
{
rdpsndPlugin* _p;
_p = (rdpsndPlugin*) malloc(sizeof(rdpsndPlugin));
ZeroMemory(_p, sizeof(rdpsndPlugin));
_p->plugin.channel_def.options =
CHANNEL_OPTION_INITIALIZED |
CHANNEL_OPTION_ENCRYPT_RDP;
strcpy(_p->plugin.channel_def.name, "rdpsnd");
_p->plugin.connect_callback = rdpsnd_process_connect;
_p->plugin.receive_callback = rdpsnd_recv_pdu;
_p->plugin.event_callback = rdpsnd_process_event;
_p->plugin.terminate_callback = rdpsnd_process_terminate;
#ifndef _WIN32
{
sigset_t mask;
sigemptyset(&mask);
sigaddset(&mask, SIGIO);
pthread_sigmask(SIG_BLOCK, &mask, NULL);
}
#endif
svc_plugin_init((rdpSvcPlugin*) _p, pEntryPoints);
return 1;
}