22#include <freerdp/config.h>
32#include <winpr/wtsapi.h>
33#include <winpr/cmdline.h>
34#include <freerdp/freerdp.h>
35#include <freerdp/addin.h>
36#include <freerdp/client/audin.h>
38#include "audin_main.h"
41#ifndef WAVE_MAPPED_DEFAULT_COMMUNICATION_DEVICE
42#define WAVE_MAPPED_DEFAULT_COMMUNICATION_DEVICE 0x0010
56 PWAVEFORMATEX pwfx_cur;
59 UINT32 frames_per_packet;
60 rdpContext* rdpcontext;
64static void CALLBACK waveInProc(HWAVEIN hWaveIn, UINT uMsg, DWORD_PTR dwInstance,
65 DWORD_PTR dwParam1, DWORD_PTR dwParam2)
67 AudinWinmmDevice* winmm = (AudinWinmmDevice*)dwInstance;
69 UINT error = CHANNEL_RC_OK;
78 pWaveHdr = (WAVEHDR*)dwParam1;
80 if (WHDR_DONE == (WHDR_DONE & pWaveHdr->dwFlags))
82 if (pWaveHdr->dwBytesRecorded &&
83 !(WaitForSingleObject(winmm->stopEvent, 0) == WAIT_OBJECT_0))
86 format.cbSize = winmm->pwfx_cur->cbSize;
87 format.nBlockAlign = winmm->pwfx_cur->nBlockAlign;
88 format.nAvgBytesPerSec = winmm->pwfx_cur->nAvgBytesPerSec;
89 format.nChannels = winmm->pwfx_cur->nChannels;
90 format.nSamplesPerSec = winmm->pwfx_cur->nSamplesPerSec;
91 format.wBitsPerSample = winmm->pwfx_cur->wBitsPerSample;
92 format.wFormatTag = winmm->pwfx_cur->wFormatTag;
94 if ((error = winmm->receive(&format, pWaveHdr->lpData,
95 pWaveHdr->dwBytesRecorded, winmm->user_data)))
98 mmResult = waveInAddBuffer(hWaveIn, pWaveHdr,
sizeof(WAVEHDR));
100 if (mmResult != MMSYSERR_NOERROR)
101 error = ERROR_INTERNAL_ERROR;
114 if (error && winmm->rdpcontext)
115 setChannelError(winmm->rdpcontext, error,
"waveInProc reported an error");
118static BOOL log_mmresult(AudinWinmmDevice* winmm,
const char* what, MMRESULT result)
120 if (result != MMSYSERR_NOERROR)
122 CHAR buffer[8192] = WINPR_C_ARRAY_INIT;
123 CHAR msg[8192] = WINPR_C_ARRAY_INIT;
124 CHAR cmsg[8192] = WINPR_C_ARRAY_INIT;
125 waveInGetErrorTextA(result, buffer,
sizeof(buffer));
127 _snprintf(msg,
sizeof(msg) - 1,
"%s failed. %" PRIu32
" [%s]", what, result, buffer);
128 _snprintf(cmsg,
sizeof(cmsg) - 1,
"audin_winmm_thread_func reported an error '%s'", msg);
129 WLog_Print(winmm->log, WLOG_DEBUG,
"%s", msg);
130 if (winmm->rdpcontext)
131 setChannelError(winmm->rdpcontext, ERROR_INTERNAL_ERROR, cmsg);
137static BOOL test_format_supported(
const PWAVEFORMATEX pwfx)
140 WAVEINCAPSA caps = WINPR_C_ARRAY_INIT;
142 rc = waveInGetDevCapsA(WAVE_MAPPER, &caps,
sizeof(caps));
143 if (rc != MMSYSERR_NOERROR)
146 switch (pwfx->nChannels)
149 if ((caps.dwFormats &
150 (WAVE_FORMAT_1M08 | WAVE_FORMAT_2M08 | WAVE_FORMAT_4M08 | WAVE_FORMAT_96M08 |
151 WAVE_FORMAT_1M16 | WAVE_FORMAT_2M16 | WAVE_FORMAT_4M16 | WAVE_FORMAT_96M16)) == 0)
155 if ((caps.dwFormats &
156 (WAVE_FORMAT_1S08 | WAVE_FORMAT_2S08 | WAVE_FORMAT_4S08 | WAVE_FORMAT_96S08 |
157 WAVE_FORMAT_1S16 | WAVE_FORMAT_2S16 | WAVE_FORMAT_4S16 | WAVE_FORMAT_96S16)) == 0)
164 rc = waveInOpen(
nullptr, WAVE_MAPPER, pwfx, 0, 0,
165 WAVE_FORMAT_QUERY | WAVE_MAPPED_DEFAULT_COMMUNICATION_DEVICE);
166 return (rc == MMSYSERR_NOERROR);
169static DWORD WINAPI audin_winmm_thread_func(LPVOID arg)
171 AudinWinmmDevice* winmm = (AudinWinmmDevice*)arg;
172 WAVEHDR waveHdr[4] = WINPR_C_ARRAY_INIT;
178 rc = waveInOpen(&winmm->hWaveIn, WAVE_MAPPER, winmm->pwfx_cur, (DWORD_PTR)waveInProc,
180 CALLBACK_FUNCTION | WAVE_MAPPED_DEFAULT_COMMUNICATION_DEVICE);
181 if (!log_mmresult(winmm,
"waveInOpen", rc))
182 return ERROR_INTERNAL_ERROR;
185 const size_t framesize =
186 1ull * winmm->pwfx_cur->wBitsPerSample / 8ull * winmm->pwfx_cur->nChannels;
187 if (framesize > UINT32_MAX)
188 return ERROR_INTERNAL_ERROR;
190 const size_t size = framesize * winmm->frames_per_packet;
191 if (size > UINT32_MAX)
192 return ERROR_INTERNAL_ERROR;
193 for (
int i = 0; i < 4; i++)
195 char* buffer = (
char*)calloc(framesize, winmm->frames_per_packet);
198 return CHANNEL_RC_NO_MEMORY;
200 waveHdr[i].dwBufferLength = WINPR_ASSERTING_INT_CAST(DWORD, size);
201 waveHdr[i].dwFlags = 0;
202 waveHdr[i].lpData = buffer;
203 rc = waveInPrepareHeader(winmm->hWaveIn, &waveHdr[i],
sizeof(waveHdr[i]));
205 if (!log_mmresult(winmm,
"waveInPrepareHeader", rc))
209 rc = waveInAddBuffer(winmm->hWaveIn, &waveHdr[i],
sizeof(waveHdr[i]));
211 if (!log_mmresult(winmm,
"waveInAddBuffer", rc))
216 rc = waveInStart(winmm->hWaveIn);
218 if (!log_mmresult(winmm,
"waveInStart", rc))
222 status = WaitForSingleObject(winmm->stopEvent, INFINITE);
224 if (status == WAIT_FAILED)
226 WLog_Print(winmm->log, WLOG_DEBUG,
"WaitForSingleObject failed.");
228 if (winmm->rdpcontext)
229 setChannelError(winmm->rdpcontext, ERROR_INTERNAL_ERROR,
230 "audin_winmm_thread_func reported an error");
233 rc = waveInReset(winmm->hWaveIn);
235 if (!log_mmresult(winmm,
"waveInReset", rc))
239 for (
int i = 0; i < 4; i++)
241 rc = waveInUnprepareHeader(winmm->hWaveIn, &waveHdr[i],
sizeof(waveHdr[i]));
243 if (!log_mmresult(winmm,
"waveInUnprepareHeader", rc))
247 free(waveHdr[i].lpData);
250 rc = waveInClose(winmm->hWaveIn);
252 if (!log_mmresult(winmm,
"waveInClose", rc))
256 winmm->hWaveIn =
nullptr;
265static UINT audin_winmm_free(IAudinDevice* device)
267 AudinWinmmDevice* winmm = (AudinWinmmDevice*)device;
270 return ERROR_INVALID_PARAMETER;
272 for (UINT32 i = 0; i < winmm->cFormats; i++)
274 free(winmm->ppwfx[i]);
278 free(winmm->device_name);
280 return CHANNEL_RC_OK;
288static UINT audin_winmm_close(IAudinDevice* device)
291 UINT error = CHANNEL_RC_OK;
292 AudinWinmmDevice* winmm = (AudinWinmmDevice*)device;
295 return ERROR_INVALID_PARAMETER;
297 (void)SetEvent(winmm->stopEvent);
298 status = WaitForSingleObject(winmm->thread, INFINITE);
300 if (status == WAIT_FAILED)
302 error = GetLastError();
303 WLog_Print(winmm->log, WLOG_ERROR,
"WaitForSingleObject failed with error %" PRIu32
"!",
308 (void)CloseHandle(winmm->thread);
309 (void)CloseHandle(winmm->stopEvent);
310 winmm->thread =
nullptr;
311 winmm->stopEvent =
nullptr;
312 winmm->receive =
nullptr;
313 winmm->user_data =
nullptr;
322static UINT audin_winmm_set_format(IAudinDevice* device,
const AUDIO_FORMAT* format,
323 UINT32 FramesPerPacket)
325 AudinWinmmDevice* winmm = (AudinWinmmDevice*)device;
327 if (!winmm || !format)
328 return ERROR_INVALID_PARAMETER;
330 winmm->frames_per_packet = FramesPerPacket;
332 for (UINT32 i = 0; i < winmm->cFormats; i++)
334 const PWAVEFORMATEX ppwfx = winmm->ppwfx[i];
335 if ((ppwfx->wFormatTag == format->wFormatTag) && (ppwfx->nChannels == format->nChannels) &&
336 (ppwfx->wBitsPerSample == format->wBitsPerSample) &&
337 (ppwfx->nSamplesPerSec == format->nSamplesPerSec))
341 if (ppwfx->nChannels > 1)
343 ppwfx->nChannels = 1;
346 if (ppwfx->nBlockAlign != 2)
348 ppwfx->nBlockAlign = 2;
349 ppwfx->nAvgBytesPerSec = ppwfx->nSamplesPerSec * ppwfx->nBlockAlign;
352 if (!test_format_supported(ppwfx))
353 return ERROR_INVALID_PARAMETER;
354 winmm->pwfx_cur = ppwfx;
355 return CHANNEL_RC_OK;
359 return ERROR_INVALID_PARAMETER;
362static BOOL audin_winmm_format_supported(IAudinDevice* device,
const AUDIO_FORMAT* format)
364 AudinWinmmDevice* winmm = (AudinWinmmDevice*)device;
368 if (!winmm || !format)
371 if (format->wFormatTag != WAVE_FORMAT_PCM)
374 if (format->nChannels != 1)
377 pwfx = (PWAVEFORMATEX)malloc(
sizeof(WAVEFORMATEX) + format->cbSize);
382 pwfx->cbSize = format->cbSize;
383 pwfx->wFormatTag = format->wFormatTag;
384 pwfx->nChannels = format->nChannels;
385 pwfx->nSamplesPerSec = format->nSamplesPerSec;
386 pwfx->nBlockAlign = format->nBlockAlign;
387 pwfx->wBitsPerSample = format->wBitsPerSample;
388 data = (BYTE*)pwfx +
sizeof(WAVEFORMATEX);
389 memcpy(data, format->data, format->cbSize);
391 pwfx->nAvgBytesPerSec = pwfx->nSamplesPerSec * pwfx->nBlockAlign;
393 if (!test_format_supported(pwfx))
396 if (winmm->cFormats >= winmm->ppwfx_size)
398 PWAVEFORMATEX* tmp_ppwfx;
399 tmp_ppwfx = realloc(winmm->ppwfx,
sizeof(PWAVEFORMATEX) * winmm->ppwfx_size * 2);
404 winmm->ppwfx_size *= 2;
405 winmm->ppwfx = tmp_ppwfx;
408 winmm->ppwfx[winmm->cFormats++] = pwfx;
421static UINT audin_winmm_open(IAudinDevice* device, AudinReceive receive,
void* user_data)
423 AudinWinmmDevice* winmm = (AudinWinmmDevice*)device;
425 if (!winmm || !receive || !user_data)
426 return ERROR_INVALID_PARAMETER;
428 winmm->receive = receive;
429 winmm->user_data = user_data;
431 if (!(winmm->stopEvent = CreateEvent(
nullptr, TRUE, FALSE,
nullptr)))
433 WLog_Print(winmm->log, WLOG_ERROR,
"CreateEvent failed!");
434 return ERROR_INTERNAL_ERROR;
437 if (!(winmm->thread = CreateThread(
nullptr, 0, audin_winmm_thread_func, winmm, 0,
nullptr)))
439 WLog_Print(winmm->log, WLOG_ERROR,
"CreateThread failed!");
440 (void)CloseHandle(winmm->stopEvent);
441 winmm->stopEvent =
nullptr;
442 return ERROR_INTERNAL_ERROR;
445 return CHANNEL_RC_OK;
453static UINT audin_winmm_parse_addin_args(AudinWinmmDevice* device,
const ADDIN_ARGV* args)
458 AudinWinmmDevice* winmm = (AudinWinmmDevice*)device;
460 {
"dev", COMMAND_LINE_VALUE_REQUIRED,
"<device>",
nullptr,
nullptr, -1,
nullptr,
461 "audio device name" },
462 {
nullptr, 0,
nullptr,
nullptr,
nullptr, -1,
nullptr,
nullptr }
466 COMMAND_LINE_SIGIL_NONE | COMMAND_LINE_SEPARATOR_COLON | COMMAND_LINE_IGN_UNKNOWN_KEYWORD;
467 status = CommandLineParseArgumentsA(args->argc, args->argv, audin_winmm_args, flags, winmm,
469 arg = audin_winmm_args;
473 if (!(arg->Flags & COMMAND_LINE_VALUE_PRESENT))
476 CommandLineSwitchStart(arg) CommandLineSwitchCase(arg,
"dev")
478 winmm->device_name = _strdup(arg->Value);
480 if (!winmm->device_name)
482 WLog_Print(winmm->log, WLOG_ERROR,
"_strdup failed!");
483 return CHANNEL_RC_NO_MEMORY;
486 CommandLineSwitchEnd(arg)
487 }
while ((arg = CommandLineFindNextArgumentA(arg)) !=
nullptr);
489 return CHANNEL_RC_OK;
497FREERDP_ENTRY_POINT(UINT VCAPITYPE winmm_freerdp_audin_client_subsystem_entry(
501 AudinWinmmDevice* winmm;
504 if (waveInGetNumDevs() == 0)
506 WLog_Print(WLog_Get(TAG), WLOG_ERROR,
"No microphone available!");
507 return ERROR_DEVICE_NOT_AVAILABLE;
510 winmm = (AudinWinmmDevice*)calloc(1,
sizeof(AudinWinmmDevice));
514 WLog_ERR(TAG,
"calloc failed!");
515 return CHANNEL_RC_NO_MEMORY;
518 winmm->log = WLog_Get(TAG);
519 winmm->iface.Open = audin_winmm_open;
520 winmm->iface.FormatSupported = audin_winmm_format_supported;
521 winmm->iface.SetFormat = audin_winmm_set_format;
522 winmm->iface.Close = audin_winmm_close;
523 winmm->iface.Free = audin_winmm_free;
524 winmm->rdpcontext = pEntryPoints->rdpcontext;
525 args = pEntryPoints->args;
527 if ((error = audin_winmm_parse_addin_args(winmm, args)))
529 WLog_Print(winmm->log, WLOG_ERROR,
530 "audin_winmm_parse_addin_args failed with error %" PRIu32
"!", error);
534 if (!winmm->device_name)
536 winmm->device_name = _strdup(
"default");
538 if (!winmm->device_name)
540 WLog_Print(winmm->log, WLOG_ERROR,
"_strdup failed!");
541 error = CHANNEL_RC_NO_MEMORY;
546 winmm->ppwfx_size = 10;
547 winmm->ppwfx = calloc(winmm->ppwfx_size,
sizeof(PWAVEFORMATEX));
551 WLog_Print(winmm->log, WLOG_ERROR,
"malloc failed!");
552 error = CHANNEL_RC_NO_MEMORY;
556 if ((error = pEntryPoints->pRegisterAudinDevice(pEntryPoints->plugin, &winmm->iface)))
558 WLog_Print(winmm->log, WLOG_ERROR,
"RegisterAudinDevice failed with error %" PRIu32
"!",
563 return CHANNEL_RC_OK;
566 free(winmm->device_name);