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 (void)_snprintf(msg,
sizeof(msg) - 1,
"%s failed. %" PRIu32
" [%s]", what, result, buffer);
128 (void)_snprintf(cmsg,
sizeof(cmsg) - 1,
"audin_winmm_thread_func reported an error '%s'",
130 WLog_Print(winmm->log, WLOG_DEBUG,
"%s", msg);
131 if (winmm->rdpcontext)
132 setChannelError(winmm->rdpcontext, ERROR_INTERNAL_ERROR, cmsg);
138static BOOL test_format_supported(
const PWAVEFORMATEX pwfx)
141 WAVEINCAPSA caps = WINPR_C_ARRAY_INIT;
143 rc = waveInGetDevCapsA(WAVE_MAPPER, &caps,
sizeof(caps));
144 if (rc != MMSYSERR_NOERROR)
147 switch (pwfx->nChannels)
150 if ((caps.dwFormats &
151 (WAVE_FORMAT_1M08 | WAVE_FORMAT_2M08 | WAVE_FORMAT_4M08 | WAVE_FORMAT_96M08 |
152 WAVE_FORMAT_1M16 | WAVE_FORMAT_2M16 | WAVE_FORMAT_4M16 | WAVE_FORMAT_96M16)) == 0)
156 if ((caps.dwFormats &
157 (WAVE_FORMAT_1S08 | WAVE_FORMAT_2S08 | WAVE_FORMAT_4S08 | WAVE_FORMAT_96S08 |
158 WAVE_FORMAT_1S16 | WAVE_FORMAT_2S16 | WAVE_FORMAT_4S16 | WAVE_FORMAT_96S16)) == 0)
165 rc = waveInOpen(
nullptr, WAVE_MAPPER, pwfx, 0, 0,
166 WAVE_FORMAT_QUERY | WAVE_MAPPED_DEFAULT_COMMUNICATION_DEVICE);
167 return (rc == MMSYSERR_NOERROR);
170static DWORD WINAPI audin_winmm_thread_func(LPVOID arg)
172 AudinWinmmDevice* winmm = (AudinWinmmDevice*)arg;
173 WAVEHDR waveHdr[4] = WINPR_C_ARRAY_INIT;
179 rc = waveInOpen(&winmm->hWaveIn, WAVE_MAPPER, winmm->pwfx_cur, (DWORD_PTR)waveInProc,
181 CALLBACK_FUNCTION | WAVE_MAPPED_DEFAULT_COMMUNICATION_DEVICE);
182 if (!log_mmresult(winmm,
"waveInOpen", rc))
183 return ERROR_INTERNAL_ERROR;
186 const size_t framesize =
187 1ull * winmm->pwfx_cur->wBitsPerSample / 8ull * winmm->pwfx_cur->nChannels;
188 if (framesize > UINT32_MAX)
189 return ERROR_INTERNAL_ERROR;
191 const size_t size = framesize * winmm->frames_per_packet;
192 if (size > UINT32_MAX)
193 return ERROR_INTERNAL_ERROR;
194 for (
int i = 0; i < 4; i++)
196 char* buffer = (
char*)calloc(framesize, winmm->frames_per_packet);
199 return CHANNEL_RC_NO_MEMORY;
201 waveHdr[i].dwBufferLength = WINPR_ASSERTING_INT_CAST(DWORD, size);
202 waveHdr[i].dwFlags = 0;
203 waveHdr[i].lpData = buffer;
204 rc = waveInPrepareHeader(winmm->hWaveIn, &waveHdr[i],
sizeof(waveHdr[i]));
206 if (!log_mmresult(winmm,
"waveInPrepareHeader", rc))
210 rc = waveInAddBuffer(winmm->hWaveIn, &waveHdr[i],
sizeof(waveHdr[i]));
212 if (!log_mmresult(winmm,
"waveInAddBuffer", rc))
217 rc = waveInStart(winmm->hWaveIn);
219 if (!log_mmresult(winmm,
"waveInStart", rc))
223 status = WaitForSingleObject(winmm->stopEvent, INFINITE);
225 if (status == WAIT_FAILED)
227 WLog_Print(winmm->log, WLOG_DEBUG,
"WaitForSingleObject failed.");
229 if (winmm->rdpcontext)
230 setChannelError(winmm->rdpcontext, ERROR_INTERNAL_ERROR,
231 "audin_winmm_thread_func reported an error");
234 rc = waveInReset(winmm->hWaveIn);
236 if (!log_mmresult(winmm,
"waveInReset", rc))
240 for (
int i = 0; i < 4; i++)
242 rc = waveInUnprepareHeader(winmm->hWaveIn, &waveHdr[i],
sizeof(waveHdr[i]));
244 if (!log_mmresult(winmm,
"waveInUnprepareHeader", rc))
248 free(waveHdr[i].lpData);
251 rc = waveInClose(winmm->hWaveIn);
253 if (!log_mmresult(winmm,
"waveInClose", rc))
257 winmm->hWaveIn =
nullptr;
266static UINT audin_winmm_free(IAudinDevice* device)
268 AudinWinmmDevice* winmm = (AudinWinmmDevice*)device;
271 return ERROR_INVALID_PARAMETER;
273 for (UINT32 i = 0; i < winmm->cFormats; i++)
275 free(winmm->ppwfx[i]);
279 free(winmm->device_name);
281 return CHANNEL_RC_OK;
289static UINT audin_winmm_close(IAudinDevice* device)
292 UINT error = CHANNEL_RC_OK;
293 AudinWinmmDevice* winmm = (AudinWinmmDevice*)device;
296 return ERROR_INVALID_PARAMETER;
298 (void)SetEvent(winmm->stopEvent);
299 status = WaitForSingleObject(winmm->thread, INFINITE);
301 if (status == WAIT_FAILED)
303 error = GetLastError();
304 WLog_Print(winmm->log, WLOG_ERROR,
"WaitForSingleObject failed with error %" PRIu32
"!",
309 (void)CloseHandle(winmm->thread);
310 (void)CloseHandle(winmm->stopEvent);
311 winmm->thread =
nullptr;
312 winmm->stopEvent =
nullptr;
313 winmm->receive =
nullptr;
314 winmm->user_data =
nullptr;
323static UINT audin_winmm_set_format(IAudinDevice* device,
const AUDIO_FORMAT* format,
324 UINT32 FramesPerPacket)
326 AudinWinmmDevice* winmm = (AudinWinmmDevice*)device;
328 if (!winmm || !format)
329 return ERROR_INVALID_PARAMETER;
331 winmm->frames_per_packet = FramesPerPacket;
333 for (UINT32 i = 0; i < winmm->cFormats; i++)
335 const PWAVEFORMATEX ppwfx = winmm->ppwfx[i];
336 if ((ppwfx->wFormatTag == format->wFormatTag) && (ppwfx->nChannels == format->nChannels) &&
337 (ppwfx->wBitsPerSample == format->wBitsPerSample) &&
338 (ppwfx->nSamplesPerSec == format->nSamplesPerSec))
342 if (ppwfx->nChannels > 1)
344 ppwfx->nChannels = 1;
347 if (ppwfx->nBlockAlign != 2)
349 ppwfx->nBlockAlign = 2;
350 ppwfx->nAvgBytesPerSec = ppwfx->nSamplesPerSec * ppwfx->nBlockAlign;
353 if (!test_format_supported(ppwfx))
354 return ERROR_INVALID_PARAMETER;
355 winmm->pwfx_cur = ppwfx;
356 return CHANNEL_RC_OK;
360 return ERROR_INVALID_PARAMETER;
363static BOOL audin_winmm_format_supported(IAudinDevice* device,
const AUDIO_FORMAT* format)
365 AudinWinmmDevice* winmm = (AudinWinmmDevice*)device;
369 if (!winmm || !format)
372 if (format->wFormatTag != WAVE_FORMAT_PCM)
375 if (format->nChannels != 1)
378 pwfx = (PWAVEFORMATEX)malloc(
sizeof(WAVEFORMATEX) + format->cbSize);
383 pwfx->cbSize = format->cbSize;
384 pwfx->wFormatTag = format->wFormatTag;
385 pwfx->nChannels = format->nChannels;
386 pwfx->nSamplesPerSec = format->nSamplesPerSec;
387 pwfx->nBlockAlign = format->nBlockAlign;
388 pwfx->wBitsPerSample = format->wBitsPerSample;
389 data = (BYTE*)pwfx +
sizeof(WAVEFORMATEX);
390 memcpy(data, format->data, format->cbSize);
392 pwfx->nAvgBytesPerSec = pwfx->nSamplesPerSec * pwfx->nBlockAlign;
394 if (!test_format_supported(pwfx))
397 if (winmm->cFormats >= winmm->ppwfx_size)
399 PWAVEFORMATEX* tmp_ppwfx;
400 tmp_ppwfx = realloc(winmm->ppwfx,
sizeof(PWAVEFORMATEX) * winmm->ppwfx_size * 2);
405 winmm->ppwfx_size *= 2;
406 winmm->ppwfx = tmp_ppwfx;
409 winmm->ppwfx[winmm->cFormats++] = pwfx;
422static UINT audin_winmm_open(IAudinDevice* device, AudinReceive receive,
void* user_data)
424 AudinWinmmDevice* winmm = (AudinWinmmDevice*)device;
426 if (!winmm || !receive || !user_data)
427 return ERROR_INVALID_PARAMETER;
429 winmm->receive = receive;
430 winmm->user_data = user_data;
432 if (!(winmm->stopEvent = CreateEvent(
nullptr, TRUE, FALSE,
nullptr)))
434 WLog_Print(winmm->log, WLOG_ERROR,
"CreateEvent failed!");
435 return ERROR_INTERNAL_ERROR;
438 if (!(winmm->thread = CreateThread(
nullptr, 0, audin_winmm_thread_func, winmm, 0,
nullptr)))
440 WLog_Print(winmm->log, WLOG_ERROR,
"CreateThread failed!");
441 (void)CloseHandle(winmm->stopEvent);
442 winmm->stopEvent =
nullptr;
443 return ERROR_INTERNAL_ERROR;
446 return CHANNEL_RC_OK;
454static UINT audin_winmm_parse_addin_args(AudinWinmmDevice* device,
const ADDIN_ARGV* args)
459 AudinWinmmDevice* winmm = (AudinWinmmDevice*)device;
461 {
"dev", COMMAND_LINE_VALUE_REQUIRED,
"<device>",
nullptr,
nullptr, -1,
nullptr,
462 "audio device name" },
463 {
nullptr, 0,
nullptr,
nullptr,
nullptr, -1,
nullptr,
nullptr }
467 COMMAND_LINE_SIGIL_NONE | COMMAND_LINE_SEPARATOR_COLON | COMMAND_LINE_IGN_UNKNOWN_KEYWORD;
468 status = CommandLineParseArgumentsA(args->argc, args->argv, audin_winmm_args, flags, winmm,
470 arg = audin_winmm_args;
474 if (!(arg->Flags & COMMAND_LINE_VALUE_PRESENT))
477 CommandLineSwitchStart(arg) CommandLineSwitchCase(arg,
"dev")
479 winmm->device_name = _strdup(arg->Value);
481 if (!winmm->device_name)
483 WLog_Print(winmm->log, WLOG_ERROR,
"_strdup failed!");
484 return CHANNEL_RC_NO_MEMORY;
487 CommandLineSwitchEnd(arg)
488 }
while ((arg = CommandLineFindNextArgumentA(arg)) !=
nullptr);
490 return CHANNEL_RC_OK;
498FREERDP_ENTRY_POINT(UINT VCAPITYPE winmm_freerdp_audin_client_subsystem_entry(
502 AudinWinmmDevice* winmm;
505 if (waveInGetNumDevs() == 0)
507 WLog_Print(WLog_Get(TAG), WLOG_ERROR,
"No microphone available!");
508 return ERROR_DEVICE_NOT_AVAILABLE;
511 winmm = (AudinWinmmDevice*)calloc(1,
sizeof(AudinWinmmDevice));
515 WLog_ERR(TAG,
"calloc failed!");
516 return CHANNEL_RC_NO_MEMORY;
519 winmm->log = WLog_Get(TAG);
520 winmm->iface.Open = audin_winmm_open;
521 winmm->iface.FormatSupported = audin_winmm_format_supported;
522 winmm->iface.SetFormat = audin_winmm_set_format;
523 winmm->iface.Close = audin_winmm_close;
524 winmm->iface.Free = audin_winmm_free;
525 winmm->rdpcontext = pEntryPoints->rdpcontext;
526 args = pEntryPoints->args;
528 if ((error = audin_winmm_parse_addin_args(winmm, args)))
530 WLog_Print(winmm->log, WLOG_ERROR,
531 "audin_winmm_parse_addin_args failed with error %" PRIu32
"!", error);
535 if (!winmm->device_name)
537 winmm->device_name = _strdup(
"default");
539 if (!winmm->device_name)
541 WLog_Print(winmm->log, WLOG_ERROR,
"_strdup failed!");
542 error = CHANNEL_RC_NO_MEMORY;
547 winmm->ppwfx_size = 10;
548 winmm->ppwfx = calloc(winmm->ppwfx_size,
sizeof(PWAVEFORMATEX));
552 WLog_Print(winmm->log, WLOG_ERROR,
"malloc failed!");
553 error = CHANNEL_RC_NO_MEMORY;
557 if ((error = pEntryPoints->pRegisterAudinDevice(pEntryPoints->plugin, &winmm->iface)))
559 WLog_Print(winmm->log, WLOG_ERROR,
"RegisterAudinDevice failed with error %" PRIu32
"!",
564 return CHANNEL_RC_OK;
567 free(winmm->device_name);