FreeRDP/channels/rdpsnd/client/alsa/rdpsnd_alsa.c

654 lines
16 KiB
C
Raw Normal View History

2011-08-15 12:28:52 +04:00
/**
2012-10-09 07:02:04 +04:00
* FreeRDP: A Remote Desktop Protocol Implementation
2011-08-15 12:28:52 +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
2011-08-15 12:28:52 +04:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <winpr/crt.h>
#include <winpr/cmdline.h>
#include <winpr/sysinfo.h>
#include <winpr/collections.h>
2011-08-15 12:28:52 +04:00
#include <alsa/asoundlib.h>
2011-08-15 12:28:52 +04:00
#include <freerdp/types.h>
2013-02-20 02:47:55 +04:00
#include <freerdp/codec/dsp.h>
2011-08-15 12:28:52 +04:00
#include <freerdp/utils/svc_plugin.h>
#include "rdpsnd_main.h"
typedef struct rdpsnd_alsa_plugin rdpsndAlsaPlugin;
2011-08-15 12:28:52 +04:00
struct rdpsnd_alsa_plugin
{
rdpsndDevicePlugin device;
char* device_name;
2013-02-20 02:47:55 +04:00
snd_pcm_t* pcm_handle;
2012-05-29 19:36:47 +04:00
snd_mixer_t* mixer_handle;
2012-10-09 11:26:39 +04:00
UINT32 source_rate;
UINT32 actual_rate;
2011-08-15 12:28:52 +04:00
snd_pcm_format_t format;
2012-10-09 11:26:39 +04:00
UINT32 source_channels;
UINT32 actual_channels;
2011-08-15 12:28:52 +04:00
int bytes_per_channel;
int wformat;
int block_size;
int latency;
2013-02-22 04:20:13 +04:00
snd_pcm_uframes_t buffer_size;
2013-02-20 02:47:55 +04:00
snd_pcm_uframes_t period_size;
2013-02-22 04:20:13 +04:00
snd_pcm_uframes_t start_threshold;
2013-02-20 02:47:55 +04:00
snd_async_handler_t* pcm_callback;
FREERDP_DSP_CONTEXT* dsp_context;
2011-08-15 12:28:52 +04:00
};
2013-02-22 04:20:13 +04:00
#define SND_PCM_CHECK(_func, _status) \
if (_status < 0) \
{ \
printf("%s: %d\n", _func, _status); \
return -1; \
}
int rdpsnd_alsa_set_hw_params(rdpsndAlsaPlugin* alsa)
2011-08-15 12:28:52 +04:00
{
2013-02-22 04:20:13 +04:00
int status;
2011-08-15 12:28:52 +04:00
snd_pcm_hw_params_t* hw_params;
2013-02-26 06:46:48 +04:00
snd_pcm_uframes_t buffer_size_max;
2013-02-22 04:20:13 +04:00
status = snd_pcm_hw_params_malloc(&hw_params);
SND_PCM_CHECK("snd_pcm_hw_params_malloc", status);
status = snd_pcm_hw_params_any(alsa->pcm_handle, hw_params);
SND_PCM_CHECK("snd_pcm_hw_params_any", status);
/* Set interleaved read/write access */
status = snd_pcm_hw_params_set_access(alsa->pcm_handle, hw_params, SND_PCM_ACCESS_RW_INTERLEAVED);
SND_PCM_CHECK("snd_pcm_hw_params_set_access", status);
/* Set sample format */
status = snd_pcm_hw_params_set_format(alsa->pcm_handle, hw_params, alsa->format);
SND_PCM_CHECK("snd_pcm_hw_params_set_format", status);
/* Set sample rate */
status = snd_pcm_hw_params_set_rate_near(alsa->pcm_handle, hw_params, &alsa->actual_rate, NULL);
SND_PCM_CHECK("snd_pcm_hw_params_set_rate_near", status);
2013-02-22 04:20:13 +04:00
/* Set number of channels */
status = snd_pcm_hw_params_set_channels(alsa->pcm_handle, hw_params, alsa->actual_channels);
SND_PCM_CHECK("snd_pcm_hw_params_set_channels", status);
/* Get maximum buffer size */
2013-02-26 06:46:48 +04:00
status = snd_pcm_hw_params_get_buffer_size_max(hw_params, &buffer_size_max);
SND_PCM_CHECK("snd_pcm_hw_params_get_buffer_size_max", status);
2013-02-22 04:20:13 +04:00
2013-02-26 06:46:48 +04:00
if (alsa->buffer_size > buffer_size_max)
{
printf("Warning: requested sound buffer size %d, got %d instead\n",
(int) alsa->buffer_size, (int) buffer_size_max);
alsa->buffer_size = buffer_size_max;
}
2013-02-22 04:20:13 +04:00
/* Set buffer size */
status = snd_pcm_hw_params_set_buffer_size_near(alsa->pcm_handle, hw_params, &alsa->buffer_size);
SND_PCM_CHECK("snd_pcm_hw_params_set_buffer_size_near", status);
/* Get period size */
status = snd_pcm_hw_params_get_period_size_min(hw_params, &alsa->period_size, NULL);
SND_PCM_CHECK("snd_pcm_hw_params_get_period_size_min", status);
/* Set period size */
2013-02-22 04:20:13 +04:00
status = snd_pcm_hw_params_set_period_size_near(alsa->pcm_handle, hw_params, &alsa->period_size, NULL);
SND_PCM_CHECK("snd_pcm_hw_params_set_period_size_near", status);
status = snd_pcm_hw_params(alsa->pcm_handle, hw_params);
SND_PCM_CHECK("snd_pcm_hw_params", status);
snd_pcm_hw_params_free(hw_params);
return 0;
}
int rdpsnd_alsa_set_sw_params(rdpsndAlsaPlugin* alsa)
{
int status;
2011-08-15 12:28:52 +04:00
snd_pcm_sw_params_t* sw_params;
2013-02-20 02:47:55 +04:00
2013-02-26 06:46:48 +04:00
alsa->start_threshold = alsa->buffer_size;
2013-02-22 04:20:13 +04:00
status = snd_pcm_sw_params_malloc(&sw_params);
SND_PCM_CHECK("snd_pcm_sw_params_malloc", status);
status = snd_pcm_sw_params_current(alsa->pcm_handle, sw_params);
SND_PCM_CHECK("snd_pcm_sw_params_current", status);
2011-08-15 12:28:52 +04:00
2013-02-22 04:20:13 +04:00
status = snd_pcm_sw_params_set_start_threshold(alsa->pcm_handle, sw_params, alsa->start_threshold);
SND_PCM_CHECK("snd_pcm_sw_params_set_start_threshold", status);
status = snd_pcm_sw_params(alsa->pcm_handle, sw_params);
SND_PCM_CHECK("snd_pcm_sw_params", status);
snd_pcm_sw_params_free(sw_params);
status = snd_pcm_prepare(alsa->pcm_handle);
SND_PCM_CHECK("snd_pcm_prepare", status);
return 0;
}
int rdpsnd_alsa_validate_params(rdpsndAlsaPlugin* alsa)
{
int status;
snd_pcm_uframes_t buffer_size;
snd_pcm_uframes_t period_size;
status = snd_pcm_get_params(alsa->pcm_handle, &buffer_size, &period_size);
SND_PCM_CHECK("snd_pcm_get_params", status);
2013-02-26 06:46:48 +04:00
printf("Parameters: BufferSize: %d PeriodSize: %d\n", (int) buffer_size, (int) period_size);
return 0;
}
2013-02-22 04:20:13 +04:00
static int rdpsnd_alsa_set_params(rdpsndAlsaPlugin* alsa)
{
/**
2013-02-22 04:20:13 +04:00
* ALSA Parameters
*
* http://www.alsa-project.org/main/index.php/FramesPeriods
*
* buffer_size = period_size * periods
* period_bytes = period_size * bytes_per_frame
* bytes_per_frame = channels * bytes_per_sample
*
* A frame is equivalent of one sample being played,
* irrespective of the number of channels or the number of bits
*
* A period is the number of frames in between each hardware interrupt.
*
* The buffer size always has to be greater than one period size.
* Commonly this is (2 * period_size), but some hardware can do 8 periods per buffer.
* It is also possible for the buffer size to not be an integer multiple of the period size.
*/
2013-02-22 04:20:13 +04:00
snd_pcm_drop(alsa->pcm_handle);
2012-10-03 07:01:16 +04:00
2013-02-26 06:46:48 +04:00
if (alsa->latency < 0)
alsa->latency = 250;
alsa->buffer_size = alsa->latency * (alsa->actual_rate / 1000);
2013-02-22 04:20:13 +04:00
if (rdpsnd_alsa_set_hw_params(alsa) < 0)
return -1;
2012-10-03 07:01:16 +04:00
2013-02-22 04:20:13 +04:00
if (rdpsnd_alsa_set_sw_params(alsa) < 0)
return -1;
2011-08-15 12:28:52 +04:00
rdpsnd_alsa_validate_params(alsa);
2013-02-22 04:20:13 +04:00
return 0;
2011-08-15 12:28:52 +04:00
}
2013-02-26 06:46:48 +04:00
static void rdpsnd_alsa_set_format(rdpsndDevicePlugin* device, AUDIO_FORMAT* format, int latency)
2011-08-15 12:28:52 +04:00
{
2013-02-20 02:47:55 +04:00
rdpsndAlsaPlugin* alsa = (rdpsndAlsaPlugin*) device;
2011-08-15 12:28:52 +04:00
if (format)
2011-08-15 12:28:52 +04:00
{
alsa->source_rate = format->nSamplesPerSec;
alsa->actual_rate = format->nSamplesPerSec;
alsa->source_channels = format->nChannels;
alsa->actual_channels = format->nChannels;
2012-10-03 07:01:16 +04:00
2011-08-15 12:28:52 +04:00
switch (format->wFormatTag)
{
case WAVE_FORMAT_PCM:
2011-08-15 12:28:52 +04:00
switch (format->wBitsPerSample)
{
2013-02-20 02:47:55 +04:00
case 4:
alsa->format = SND_PCM_FORMAT_S16_LE;
alsa->bytes_per_channel = 2;
2013-02-20 02:47:55 +04:00
break;
2011-08-15 12:28:52 +04:00
case 8:
alsa->format = SND_PCM_FORMAT_S8;
alsa->bytes_per_channel = 1;
break;
2013-02-20 02:47:55 +04:00
2011-08-15 12:28:52 +04:00
case 16:
alsa->format = SND_PCM_FORMAT_S16_LE;
alsa->bytes_per_channel = 2;
break;
}
break;
case WAVE_FORMAT_ADPCM:
case WAVE_FORMAT_DVI_ADPCM:
2011-08-15 12:28:52 +04:00
alsa->format = SND_PCM_FORMAT_S16_LE;
alsa->bytes_per_channel = 2;
break;
}
2012-10-03 07:01:16 +04:00
2011-08-15 12:28:52 +04:00
alsa->wformat = format->wFormatTag;
alsa->block_size = format->nBlockAlign;
}
alsa->latency = latency;
2011-08-15 12:28:52 +04:00
rdpsnd_alsa_set_params(alsa);
}
2012-05-29 19:36:47 +04:00
static void rdpsnd_alsa_open_mixer(rdpsndAlsaPlugin* alsa)
{
2012-10-03 07:01:16 +04:00
int status;
2012-05-29 19:36:47 +04:00
snd_mixer_t* handle;
2012-10-03 07:01:16 +04:00
status = snd_mixer_open(&handle, 0);
if (status < 0)
2012-05-29 19:36:47 +04:00
{
DEBUG_WARN("snd_mixer_open failed");
return;
}
2012-10-03 07:01:16 +04:00
status = snd_mixer_attach(handle, alsa->device_name);
if (status < 0)
2012-05-29 19:36:47 +04:00
{
DEBUG_WARN("snd_mixer_attach failed");
snd_mixer_close(handle);
return;
}
2012-10-03 07:01:16 +04:00
status = snd_mixer_selem_register(handle, NULL, NULL);
if (status < 0)
2012-05-29 19:36:47 +04:00
{
DEBUG_WARN("snd_mixer_selem_register failed");
snd_mixer_close(handle);
return;
}
2012-10-03 07:01:16 +04:00
status = snd_mixer_load(handle);
if (status < 0)
2012-05-29 19:36:47 +04:00
{
DEBUG_WARN("snd_mixer_load failed");
snd_mixer_close(handle);
return;
}
alsa->mixer_handle = handle;
}
2013-02-26 06:46:48 +04:00
static void rdpsnd_alsa_open(rdpsndDevicePlugin* device, AUDIO_FORMAT* format, int latency)
2011-08-15 12:28:52 +04:00
{
2013-02-20 02:47:55 +04:00
int mode;
2012-10-03 07:01:16 +04:00
int status;
rdpsndAlsaPlugin* alsa = (rdpsndAlsaPlugin*) device;
2011-08-15 12:28:52 +04:00
2013-02-21 12:38:36 +04:00
if (alsa->pcm_handle)
2011-08-15 12:28:52 +04:00
return;
DEBUG_SVC("opening");
2013-02-20 02:47:55 +04:00
mode = 0;
//mode |= SND_PCM_NONBLOCK;
2013-02-20 02:47:55 +04:00
status = snd_pcm_open(&alsa->pcm_handle, alsa->device_name, SND_PCM_STREAM_PLAYBACK, mode);
2012-10-03 07:01:16 +04:00
if (status < 0)
2011-08-15 12:28:52 +04:00
{
DEBUG_WARN("snd_pcm_open failed");
}
else
{
freerdp_dsp_context_reset_adpcm(alsa->dsp_context);
rdpsnd_alsa_set_format(device, format, latency);
2012-05-29 19:36:47 +04:00
rdpsnd_alsa_open_mixer(alsa);
2011-08-15 12:28:52 +04:00
}
}
static void rdpsnd_alsa_close(rdpsndDevicePlugin* device)
{
rdpsndAlsaPlugin* alsa = (rdpsndAlsaPlugin*)device;
2013-02-21 12:38:36 +04:00
if (alsa->pcm_handle)
2011-08-15 12:28:52 +04:00
{
DEBUG_SVC("close");
2013-02-20 02:47:55 +04:00
snd_pcm_drain(alsa->pcm_handle);
snd_pcm_close(alsa->pcm_handle);
alsa->pcm_handle = 0;
2011-08-15 12:28:52 +04:00
}
2012-10-03 07:01:16 +04:00
2012-05-29 19:36:47 +04:00
if (alsa->mixer_handle)
{
snd_mixer_close(alsa->mixer_handle);
alsa->mixer_handle = NULL;
}
2011-08-15 12:28:52 +04:00
}
static void rdpsnd_alsa_free(rdpsndDevicePlugin* device)
{
rdpsndAlsaPlugin* alsa = (rdpsndAlsaPlugin*) device;
2011-08-15 12:28:52 +04:00
rdpsnd_alsa_close(device);
free(alsa->device_name);
freerdp_dsp_context_free(alsa->dsp_context);
free(alsa);
2011-08-15 12:28:52 +04:00
}
2013-02-26 06:46:48 +04:00
static BOOL rdpsnd_alsa_format_supported(rdpsndDevicePlugin* device, AUDIO_FORMAT* format)
2011-08-15 12:28:52 +04:00
{
switch (format->wFormatTag)
{
case WAVE_FORMAT_PCM:
2011-08-15 12:28:52 +04:00
if (format->cbSize == 0 &&
format->nSamplesPerSec <= 48000 &&
(format->wBitsPerSample == 8 || format->wBitsPerSample == 16) &&
(format->nChannels == 1 || format->nChannels == 2))
{
return TRUE;
2011-08-15 12:28:52 +04:00
}
break;
case WAVE_FORMAT_ADPCM:
case WAVE_FORMAT_DVI_ADPCM:
2011-08-15 12:28:52 +04:00
if (format->nSamplesPerSec <= 48000 &&
format->wBitsPerSample == 4 &&
(format->nChannels == 1 || format->nChannels == 2))
{
return TRUE;
2011-08-15 12:28:52 +04:00
}
break;
case WAVE_FORMAT_ALAW:
break;
case WAVE_FORMAT_MULAW:
break;
case WAVE_FORMAT_GSM610:
break;
2011-08-15 12:28:52 +04:00
}
return FALSE;
2011-08-15 12:28:52 +04:00
}
2012-10-09 11:26:39 +04:00
static void rdpsnd_alsa_set_volume(rdpsndDevicePlugin* device, UINT32 value)
2011-08-15 12:28:52 +04:00
{
2012-05-29 19:36:47 +04:00
long left;
long right;
long volume_min;
long volume_max;
long volume_left;
long volume_right;
snd_mixer_elem_t* elem;
2012-10-03 07:01:16 +04:00
rdpsndAlsaPlugin* alsa = (rdpsndAlsaPlugin*) device;
2012-05-29 19:36:47 +04:00
if (!alsa->mixer_handle)
return;
left = (value & 0xFFFF);
right = ((value >> 16) & 0xFFFF);
for (elem = snd_mixer_first_elem(alsa->mixer_handle); elem; elem = snd_mixer_elem_next(elem))
{
if (snd_mixer_selem_has_playback_volume(elem))
{
snd_mixer_selem_get_playback_volume_range(elem, &volume_min, &volume_max);
volume_left = volume_min + (left * (volume_max - volume_min)) / 0xFFFF;
volume_right = volume_min + (right * (volume_max - volume_min)) / 0xFFFF;
snd_mixer_selem_set_playback_volume(elem, SND_MIXER_SCHN_FRONT_LEFT, volume_left);
snd_mixer_selem_set_playback_volume(elem, SND_MIXER_SCHN_FRONT_RIGHT, volume_right);
}
}
2011-08-15 12:28:52 +04:00
}
BYTE* rdpsnd_alsa_process_audio_sample(rdpsndDevicePlugin* device, BYTE* data, int* size)
2011-08-15 12:28:52 +04:00
{
int frames;
BYTE* srcData;
int srcFrameSize;
int dstFrameSize;
2012-10-03 07:01:16 +04:00
rdpsndAlsaPlugin* alsa = (rdpsndAlsaPlugin*) device;
2011-08-15 12:28:52 +04:00
2013-02-21 12:38:36 +04:00
if (!alsa->pcm_handle)
return NULL;
2011-08-15 12:28:52 +04:00
2013-02-20 02:47:55 +04:00
if (alsa->wformat == WAVE_FORMAT_ADPCM)
2012-05-24 17:26:17 +04:00
{
alsa->dsp_context->decode_ms_adpcm(alsa->dsp_context,
data, *size, alsa->source_channels, alsa->block_size);
2013-02-21 12:38:36 +04:00
*size = alsa->dsp_context->adpcm_size;
srcData = alsa->dsp_context->adpcm_buffer;
2012-05-24 17:26:17 +04:00
}
2013-02-20 02:47:55 +04:00
else if (alsa->wformat == WAVE_FORMAT_DVI_ADPCM)
2011-08-15 12:28:52 +04:00
{
alsa->dsp_context->decode_ima_adpcm(alsa->dsp_context,
data, *size, alsa->source_channels, alsa->block_size);
2013-02-21 12:38:36 +04:00
*size = alsa->dsp_context->adpcm_size;
srcData = alsa->dsp_context->adpcm_buffer;
2011-08-15 12:28:52 +04:00
}
else
{
srcData = data;
2011-08-15 12:28:52 +04:00
}
srcFrameSize = alsa->source_channels * alsa->bytes_per_channel;
dstFrameSize = alsa->actual_channels * alsa->bytes_per_channel;
2012-10-03 07:01:16 +04:00
if ((*size % srcFrameSize) != 0)
return NULL;
2011-08-15 12:28:52 +04:00
if (!((alsa->source_rate == alsa->actual_rate) && (alsa->source_channels == alsa->actual_channels)))
2011-08-15 12:28:52 +04:00
{
alsa->dsp_context->resample(alsa->dsp_context, srcData, alsa->bytes_per_channel,
alsa->source_channels, alsa->source_rate, *size / srcFrameSize,
alsa->actual_channels, alsa->actual_rate);
frames = alsa->dsp_context->resampled_frames;
2011-08-15 12:28:52 +04:00
DEBUG_SVC("resampled %d frames at %d to %d frames at %d",
2013-02-26 06:46:48 +04:00
size / srcFrameSize, alsa->source_rate, frames, alsa->actual_rate);
*size = frames * dstFrameSize;
srcData = alsa->dsp_context->resampled_buffer;
2011-08-15 12:28:52 +04:00
}
data = srcData;
return data;
}
2013-02-26 06:46:48 +04:00
static void rdpsnd_alsa_wave_decode(rdpsndDevicePlugin* device, RDPSND_WAVE* wave)
{
2013-02-26 06:46:48 +04:00
int size;
BYTE* data;
2013-02-26 06:46:48 +04:00
size = wave->length;
data = rdpsnd_alsa_process_audio_sample(device, wave->data, &size);
2013-02-26 06:46:48 +04:00
wave->data = (BYTE*) malloc(size);
CopyMemory(wave->data, data, size);
wave->length = size;
}
2013-02-26 06:46:48 +04:00
static void rdpsnd_alsa_wave_play(rdpsndDevicePlugin* device, RDPSND_WAVE* wave)
{
2013-02-26 06:46:48 +04:00
BYTE* data;
int offset;
int length;
int status;
int frames;
2013-02-26 06:46:48 +04:00
int frame_size;
snd_htimestamp_t tstampA;
snd_htimestamp_t tstampB;
snd_pcm_uframes_t framesA;
snd_pcm_uframes_t framesB;
rdpsndAlsaPlugin* alsa = (rdpsndAlsaPlugin*) device;
2013-02-26 06:46:48 +04:00
offset = 0;
data = wave->data;
length = wave->length;
frame_size = alsa->actual_channels * alsa->bytes_per_channel;
frames = (length - offset) / frame_size;
snd_pcm_htimestamp(alsa->pcm_handle, &framesA, &tstampA);
2013-02-26 06:46:48 +04:00
while (offset < length)
{
status = snd_pcm_writei(alsa->pcm_handle, &data[offset], (length - offset) / frame_size);
2013-02-26 06:46:48 +04:00
if (status == -EPIPE)
{
snd_pcm_recover(alsa->pcm_handle, status, 0);
status = 0;
}
else if (status == -EAGAIN)
{
status = 0;
}
else if (status < 0)
{
printf("status: %d\n", status);
snd_pcm_close(alsa->pcm_handle);
alsa->pcm_handle = NULL;
rdpsnd_alsa_open((rdpsndDevicePlugin*) alsa, NULL, alsa->latency);
break;
}
2012-10-03 07:01:16 +04:00
2013-02-26 06:46:48 +04:00
offset += status * frame_size;
}
free(data);
snd_pcm_htimestamp(alsa->pcm_handle, &framesB, &tstampB);
wave->wPlaybackDelay = ((framesB * 1000) / alsa->actual_rate);
2013-02-26 06:46:48 +04:00
wave->wLocalTimeB = GetTickCount();
wave->wLocalTimeB += wave->wPlaybackDelay;
2013-02-26 06:46:48 +04:00
wave->wLatency = (UINT16) (wave->wLocalTimeB - wave->wLocalTimeA);
wave->wTimeStampB = wave->wTimeStampA + wave->wLatency;
//printf("wTimeStampA: %d wTimeStampB: %d wLatency: %d\n", wave->wTimeStampA, wave->wTimeStampB, wave->wLatency);
2013-02-26 06:46:48 +04:00
device->WaveConfirm(device, wave);
2011-08-15 12:28:52 +04:00
}
static void rdpsnd_alsa_start(rdpsndDevicePlugin* device)
{
2012-10-03 07:01:16 +04:00
rdpsndAlsaPlugin* alsa = (rdpsndAlsaPlugin*) device;
2013-02-20 02:47:55 +04:00
if (!alsa->pcm_handle)
return;
2013-02-20 02:47:55 +04:00
snd_pcm_start(alsa->pcm_handle);
}
COMMAND_LINE_ARGUMENT_A rdpsnd_alsa_args[] =
{
{ "dev", COMMAND_LINE_VALUE_REQUIRED, "<device>", NULL, NULL, -1, NULL, "device" },
{ NULL, 0, NULL, NULL, NULL, -1, NULL, NULL }
};
static void rdpsnd_alsa_parse_addin_args(rdpsndDevicePlugin* device, ADDIN_ARGV* args)
{
int status;
DWORD flags;
COMMAND_LINE_ARGUMENT_A* arg;
rdpsndAlsaPlugin* alsa = (rdpsndAlsaPlugin*) device;
flags = COMMAND_LINE_SIGIL_NONE | COMMAND_LINE_SEPARATOR_COLON;
status = CommandLineParseArgumentsA(args->argc, (const char**) args->argv, rdpsnd_alsa_args, flags, alsa, NULL, NULL);
arg = rdpsnd_alsa_args;
do
{
if (!(arg->Flags & COMMAND_LINE_VALUE_PRESENT))
continue;
CommandLineSwitchStart(arg)
CommandLineSwitchCase(arg, "dev")
{
alsa->device_name = _strdup(arg->Value);
}
CommandLineSwitchEnd(arg)
}
while ((arg = CommandLineFindNextArgumentA(arg)) != NULL);
}
#ifdef STATIC_CHANNELS
#define freerdp_rdpsnd_client_subsystem_entry alsa_freerdp_rdpsnd_client_subsystem_entry
#endif
int freerdp_rdpsnd_client_subsystem_entry(PFREERDP_RDPSND_DEVICE_ENTRY_POINTS pEntryPoints)
2011-08-15 12:28:52 +04:00
{
ADDIN_ARGV* args;
2011-08-15 12:28:52 +04:00
rdpsndAlsaPlugin* alsa;
alsa = (rdpsndAlsaPlugin*) malloc(sizeof(rdpsndAlsaPlugin));
ZeroMemory(alsa, sizeof(rdpsndAlsaPlugin));
2011-08-15 12:28:52 +04:00
alsa->device.Open = rdpsnd_alsa_open;
alsa->device.FormatSupported = rdpsnd_alsa_format_supported;
alsa->device.SetFormat = rdpsnd_alsa_set_format;
alsa->device.SetVolume = rdpsnd_alsa_set_volume;
2013-02-26 06:46:48 +04:00
alsa->device.WaveDecode = rdpsnd_alsa_wave_decode;
alsa->device.WavePlay = rdpsnd_alsa_wave_play;
alsa->device.Start = rdpsnd_alsa_start;
2011-08-15 12:28:52 +04:00
alsa->device.Close = rdpsnd_alsa_close;
alsa->device.Free = rdpsnd_alsa_free;
args = pEntryPoints->args;
rdpsnd_alsa_parse_addin_args((rdpsndDevicePlugin*) alsa, args);
2012-10-03 07:01:16 +04:00
if (!alsa->device_name)
alsa->device_name = _strdup("default");
2013-02-20 02:47:55 +04:00
alsa->pcm_handle = 0;
2011-08-15 12:28:52 +04:00
alsa->source_rate = 22050;
alsa->actual_rate = 22050;
alsa->format = SND_PCM_FORMAT_S16_LE;
alsa->source_channels = 2;
alsa->actual_channels = 2;
alsa->bytes_per_channel = 2;
alsa->dsp_context = freerdp_dsp_context_new();
2012-10-03 07:01:16 +04:00
pEntryPoints->pRegisterRdpsndDevice(pEntryPoints->rdpsnd, (rdpsndDevicePlugin*) alsa);
2011-08-15 12:28:52 +04:00
return 0;
}