VirtualBox

source: vbox/trunk/src/VBox/Devices/Audio/DrvAudioCommon.cpp@ 82781

Last change on this file since 82781 was 82463, checked in by vboxsync, 4 years ago

pdmaudioifs.h,Devices/Audio: Corrected the size alignment of PDMAUDIOSTREAMCFG to 8 bytes. bugref:9218

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 55.8 KB
Line 
1/* $Id: DrvAudioCommon.cpp 82463 2019-12-06 14:29:16Z vboxsync $ */
2/** @file
3 * Intermedia audio driver, common routines.
4 *
5 * These are also used in the drivers which are bound to Main, e.g. the VRDE
6 * or the video audio recording drivers.
7 */
8
9/*
10 * Copyright (C) 2006-2019 Oracle Corporation
11 *
12 * This file is part of VirtualBox Open Source Edition (OSE), as
13 * available from http://www.virtualbox.org. This file is free software;
14 * you can redistribute it and/or modify it under the terms of the GNU
15 * General Public License (GPL) as published by the Free Software
16 * Foundation, in version 2 as it comes in the "COPYING" file of the
17 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
18 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
19 */
20
21
22/*********************************************************************************************************************************
23* Header Files *
24*********************************************************************************************************************************/
25#include <iprt/alloc.h>
26#include <iprt/asm-math.h>
27#include <iprt/assert.h>
28#include <iprt/dir.h>
29#include <iprt/file.h>
30#include <iprt/string.h>
31#include <iprt/uuid.h>
32
33#define LOG_GROUP LOG_GROUP_DRV_AUDIO
34#include <VBox/log.h>
35
36#include <VBox/err.h>
37#include <VBox/vmm/pdmdev.h>
38#include <VBox/vmm/pdm.h>
39#include <VBox/vmm/mm.h>
40
41#include <ctype.h>
42#include <stdlib.h>
43
44#include "DrvAudio.h"
45#include "AudioMixBuffer.h"
46
47
48/*********************************************************************************************************************************
49* Structures and Typedefs *
50*********************************************************************************************************************************/
51/**
52 * Structure for building up a .WAV file header.
53 */
54typedef struct AUDIOWAVFILEHDR
55{
56 uint32_t u32RIFF;
57 uint32_t u32Size;
58 uint32_t u32WAVE;
59
60 uint32_t u32Fmt;
61 uint32_t u32Size1;
62 uint16_t u16AudioFormat;
63 uint16_t u16NumChannels;
64 uint32_t u32SampleRate;
65 uint32_t u32ByteRate;
66 uint16_t u16BlockAlign;
67 uint16_t u16BitsPerSample;
68
69 uint32_t u32ID2;
70 uint32_t u32Size2;
71} AUDIOWAVFILEHDR, *PAUDIOWAVFILEHDR;
72AssertCompileSize(AUDIOWAVFILEHDR, 11*4);
73
74/**
75 * Structure for keeeping the internal .WAV file data
76 */
77typedef struct AUDIOWAVFILEDATA
78{
79 /** The file header/footer. */
80 AUDIOWAVFILEHDR Hdr;
81} AUDIOWAVFILEDATA, *PAUDIOWAVFILEDATA;
82
83
84
85
86/**
87 * Retrieves the matching PDMAUDIOFMT for given bits + signing flag.
88 *
89 * @return IPRT status code.
90 * @return PDMAUDIOFMT Resulting audio format or PDMAUDIOFMT_INVALID if invalid.
91 * @param cBits Bits to retrieve audio format for.
92 * @param fSigned Signed flag for bits to retrieve audio format for.
93 */
94PDMAUDIOFMT DrvAudioAudFmtBitsToAudFmt(uint8_t cBits, bool fSigned)
95{
96 if (fSigned)
97 {
98 switch (cBits)
99 {
100 case 8: return PDMAUDIOFMT_S8;
101 case 16: return PDMAUDIOFMT_S16;
102 case 32: return PDMAUDIOFMT_S32;
103 default: break;
104 }
105 }
106 else
107 {
108 switch (cBits)
109 {
110 case 8: return PDMAUDIOFMT_U8;
111 case 16: return PDMAUDIOFMT_U16;
112 case 32: return PDMAUDIOFMT_U32;
113 default: break;
114 }
115 }
116
117 AssertMsgFailed(("Bogus audio bits %RU8\n", cBits));
118 return PDMAUDIOFMT_INVALID;
119}
120
121/**
122 * Clears a sample buffer by the given amount of audio frames with silence (according to the format
123 * given by the PCM properties).
124 *
125 * @param pPCMProps PCM properties to use for the buffer to clear.
126 * @param pvBuf Buffer to clear.
127 * @param cbBuf Size (in bytes) of the buffer.
128 * @param cFrames Number of audio frames to clear in the buffer.
129 */
130void DrvAudioHlpClearBuf(const PPDMAUDIOPCMPROPS pPCMProps, void *pvBuf, size_t cbBuf, uint32_t cFrames)
131{
132 AssertPtrReturnVoid(pPCMProps);
133 AssertPtrReturnVoid(pvBuf);
134
135 if (!cbBuf || !cFrames)
136 return;
137
138 Assert(pPCMProps->cbSample);
139 size_t cbToClear = DrvAudioHlpFramesToBytes(cFrames, pPCMProps);
140 Assert(cbBuf >= cbToClear);
141
142 if (cbBuf < cbToClear)
143 cbToClear = cbBuf;
144
145 Log2Func(("pPCMProps=%p, pvBuf=%p, cFrames=%RU32, fSigned=%RTbool, cBytes=%RU8\n",
146 pPCMProps, pvBuf, cFrames, pPCMProps->fSigned, pPCMProps->cbSample));
147
148 Assert(pPCMProps->fSwapEndian == false); /** @todo Swapping Endianness is not supported yet. */
149
150 if (pPCMProps->fSigned)
151 {
152 RT_BZERO(pvBuf, cbToClear);
153 }
154 else /* Unsigned formats. */
155 {
156 switch (pPCMProps->cbSample)
157 {
158 case 1: /* 8 bit */
159 {
160 memset(pvBuf, 0x80, cbToClear);
161 break;
162 }
163
164 case 2: /* 16 bit */
165 {
166 uint16_t *p = (uint16_t *)pvBuf;
167 uint16_t s = 0x0080;
168
169 for (uint32_t i = 0; i < DrvAudioHlpBytesToFrames((uint32_t)cbToClear, pPCMProps); i++)
170 p[i] = s;
171
172 break;
173 }
174
175 /** @todo Add 24 bit? */
176
177 case 4: /* 32 bit */
178 {
179 uint32_t *p = (uint32_t *)pvBuf;
180 uint32_t s = 0x00000080;
181
182 for (uint32_t i = 0; i < DrvAudioHlpBytesToFrames((uint32_t)cbToClear, pPCMProps); i++)
183 p[i] = s;
184
185 break;
186 }
187
188 default:
189 {
190 AssertMsgFailed(("Invalid bytes per sample: %RU8\n", pPCMProps->cbSample));
191 break;
192 }
193 }
194 }
195}
196
197/**
198 * Returns an unique file name for this given audio connector instance.
199 *
200 * @return Allocated file name. Must be free'd using RTStrFree().
201 * @param uInstance Driver / device instance.
202 * @param pszPath Path name of the file to delete. The path must exist.
203 * @param pszSuffix File name suffix to use.
204 */
205char *DrvAudioDbgGetFileNameA(uint8_t uInstance, const char *pszPath, const char *pszSuffix)
206{
207 char szFileName[64];
208 RTStrPrintf(szFileName, sizeof(szFileName), "drvAudio%RU8-%s", uInstance, pszSuffix);
209
210 char szFilePath[RTPATH_MAX];
211 int rc2 = RTStrCopy(szFilePath, sizeof(szFilePath), pszPath);
212 AssertRC(rc2);
213 rc2 = RTPathAppend(szFilePath, sizeof(szFilePath), szFileName);
214 AssertRC(rc2);
215
216 return RTStrDup(szFilePath);
217}
218
219/**
220 * Allocates an audio device.
221 *
222 * @returns Newly allocated audio device, or NULL if failed.
223 * @param cbData How much additional data (in bytes) should be allocated to provide
224 * a (backend) specific area to store additional data.
225 * Optional, can be 0.
226 */
227PPDMAUDIODEVICE DrvAudioHlpDeviceAlloc(size_t cbData)
228{
229 PPDMAUDIODEVICE pDev = (PPDMAUDIODEVICE)RTMemAllocZ(sizeof(PDMAUDIODEVICE));
230 if (!pDev)
231 return NULL;
232
233 if (cbData)
234 {
235 pDev->pvData = RTMemAllocZ(cbData);
236 if (!pDev->pvData)
237 {
238 RTMemFree(pDev);
239 return NULL;
240 }
241 }
242
243 pDev->cbData = cbData;
244
245 pDev->cMaxInputChannels = 0;
246 pDev->cMaxOutputChannels = 0;
247
248 return pDev;
249}
250
251/**
252 * Frees an audio device.
253 *
254 * @param pDev Device to free.
255 */
256void DrvAudioHlpDeviceFree(PPDMAUDIODEVICE pDev)
257{
258 if (!pDev)
259 return;
260
261 Assert(pDev->cRefCount == 0);
262
263 if (pDev->pvData)
264 {
265 Assert(pDev->cbData);
266
267 RTMemFree(pDev->pvData);
268 pDev->pvData = NULL;
269 }
270
271 RTMemFree(pDev);
272 pDev = NULL;
273}
274
275/**
276 * Duplicates an audio device entry.
277 *
278 * @returns Duplicated audio device entry on success, or NULL on failure.
279 * @param pDev Audio device entry to duplicate.
280 * @param fCopyUserData Whether to also copy the user data portion or not.
281 */
282PPDMAUDIODEVICE DrvAudioHlpDeviceDup(const PPDMAUDIODEVICE pDev, bool fCopyUserData)
283{
284 AssertPtrReturn(pDev, NULL);
285
286 PPDMAUDIODEVICE pDevDup = DrvAudioHlpDeviceAlloc(fCopyUserData ? pDev->cbData : 0);
287 if (pDevDup)
288 {
289 memcpy(pDevDup, pDev, sizeof(PDMAUDIODEVICE));
290
291 if ( fCopyUserData
292 && pDevDup->cbData)
293 {
294 memcpy(pDevDup->pvData, pDev->pvData, pDevDup->cbData);
295 }
296 else
297 {
298 pDevDup->cbData = 0;
299 pDevDup->pvData = NULL;
300 }
301 }
302
303 return pDevDup;
304}
305
306/**
307 * Initializes an audio device enumeration structure.
308 *
309 * @returns IPRT status code.
310 * @param pDevEnm Device enumeration to initialize.
311 */
312int DrvAudioHlpDeviceEnumInit(PPDMAUDIODEVICEENUM pDevEnm)
313{
314 AssertPtrReturn(pDevEnm, VERR_INVALID_POINTER);
315
316 RTListInit(&pDevEnm->lstDevices);
317 pDevEnm->cDevices = 0;
318
319 return VINF_SUCCESS;
320}
321
322/**
323 * Frees audio device enumeration data.
324 *
325 * @param pDevEnm Device enumeration to destroy.
326 */
327void DrvAudioHlpDeviceEnumFree(PPDMAUDIODEVICEENUM pDevEnm)
328{
329 if (!pDevEnm)
330 return;
331
332 PPDMAUDIODEVICE pDev, pDevNext;
333 RTListForEachSafe(&pDevEnm->lstDevices, pDev, pDevNext, PDMAUDIODEVICE, Node)
334 {
335 RTListNodeRemove(&pDev->Node);
336
337 DrvAudioHlpDeviceFree(pDev);
338
339 pDevEnm->cDevices--;
340 }
341
342 /* Sanity. */
343 Assert(RTListIsEmpty(&pDevEnm->lstDevices));
344 Assert(pDevEnm->cDevices == 0);
345}
346
347/**
348 * Adds an audio device to a device enumeration.
349 *
350 * @return IPRT status code.
351 * @param pDevEnm Device enumeration to add device to.
352 * @param pDev Device to add. The pointer will be owned by the device enumeration then.
353 */
354int DrvAudioHlpDeviceEnumAdd(PPDMAUDIODEVICEENUM pDevEnm, PPDMAUDIODEVICE pDev)
355{
356 AssertPtrReturn(pDevEnm, VERR_INVALID_POINTER);
357 AssertPtrReturn(pDev, VERR_INVALID_POINTER);
358
359 RTListAppend(&pDevEnm->lstDevices, &pDev->Node);
360 pDevEnm->cDevices++;
361
362 return VINF_SUCCESS;
363}
364
365/**
366 * Duplicates a device enumeration.
367 *
368 * @returns Duplicated device enumeration, or NULL on failure.
369 * Must be free'd with DrvAudioHlpDeviceEnumFree().
370 * @param pDevEnm Device enumeration to duplicate.
371 */
372PPDMAUDIODEVICEENUM DrvAudioHlpDeviceEnumDup(const PPDMAUDIODEVICEENUM pDevEnm)
373{
374 AssertPtrReturn(pDevEnm, NULL);
375
376 PPDMAUDIODEVICEENUM pDevEnmDup = (PPDMAUDIODEVICEENUM)RTMemAlloc(sizeof(PDMAUDIODEVICEENUM));
377 if (!pDevEnmDup)
378 return NULL;
379
380 int rc2 = DrvAudioHlpDeviceEnumInit(pDevEnmDup);
381 AssertRC(rc2);
382
383 PPDMAUDIODEVICE pDev;
384 RTListForEach(&pDevEnm->lstDevices, pDev, PDMAUDIODEVICE, Node)
385 {
386 PPDMAUDIODEVICE pDevDup = DrvAudioHlpDeviceDup(pDev, true /* fCopyUserData */);
387 if (!pDevDup)
388 {
389 rc2 = VERR_NO_MEMORY;
390 break;
391 }
392
393 rc2 = DrvAudioHlpDeviceEnumAdd(pDevEnmDup, pDevDup);
394 if (RT_FAILURE(rc2))
395 {
396 DrvAudioHlpDeviceFree(pDevDup);
397 break;
398 }
399 }
400
401 if (RT_FAILURE(rc2))
402 {
403 DrvAudioHlpDeviceEnumFree(pDevEnmDup);
404 pDevEnmDup = NULL;
405 }
406
407 return pDevEnmDup;
408}
409
410/**
411 * Copies device enumeration entries from the source to the destination enumeration.
412 *
413 * @returns IPRT status code.
414 * @param pDstDevEnm Destination enumeration to store enumeration entries into.
415 * @param pSrcDevEnm Source enumeration to use.
416 * @param enmUsage Which entries to copy. Specify PDMAUDIODIR_ANY to copy all entries.
417 * @param fCopyUserData Whether to also copy the user data portion or not.
418 */
419int DrvAudioHlpDeviceEnumCopyEx(PPDMAUDIODEVICEENUM pDstDevEnm, const PPDMAUDIODEVICEENUM pSrcDevEnm,
420 PDMAUDIODIR enmUsage, bool fCopyUserData)
421{
422 AssertPtrReturn(pDstDevEnm, VERR_INVALID_POINTER);
423 AssertPtrReturn(pSrcDevEnm, VERR_INVALID_POINTER);
424
425 int rc = VINF_SUCCESS;
426
427 PPDMAUDIODEVICE pSrcDev;
428 RTListForEach(&pSrcDevEnm->lstDevices, pSrcDev, PDMAUDIODEVICE, Node)
429 {
430 if ( enmUsage != PDMAUDIODIR_ANY
431 && enmUsage != pSrcDev->enmUsage)
432 {
433 continue;
434 }
435
436 PPDMAUDIODEVICE pDstDev = DrvAudioHlpDeviceDup(pSrcDev, fCopyUserData);
437 if (!pDstDev)
438 {
439 rc = VERR_NO_MEMORY;
440 break;
441 }
442
443 rc = DrvAudioHlpDeviceEnumAdd(pDstDevEnm, pDstDev);
444 if (RT_FAILURE(rc))
445 break;
446 }
447
448 return rc;
449}
450
451/**
452 * Copies all device enumeration entries from the source to the destination enumeration.
453 *
454 * Note: Does *not* copy the user-specific data assigned to a device enumeration entry.
455 * To do so, use DrvAudioHlpDeviceEnumCopyEx().
456 *
457 * @returns IPRT status code.
458 * @param pDstDevEnm Destination enumeration to store enumeration entries into.
459 * @param pSrcDevEnm Source enumeration to use.
460 */
461int DrvAudioHlpDeviceEnumCopy(PPDMAUDIODEVICEENUM pDstDevEnm, const PPDMAUDIODEVICEENUM pSrcDevEnm)
462{
463 return DrvAudioHlpDeviceEnumCopyEx(pDstDevEnm, pSrcDevEnm, PDMAUDIODIR_ANY, false /* fCopyUserData */);
464}
465
466/**
467 * Returns the default device of a given device enumeration.
468 * This assumes that only one default device per usage is set.
469 *
470 * @returns Default device if found, or NULL if none found.
471 * @param pDevEnm Device enumeration to get default device for.
472 * @param enmUsage Usage to get default device for.
473 */
474PPDMAUDIODEVICE DrvAudioHlpDeviceEnumGetDefaultDevice(const PPDMAUDIODEVICEENUM pDevEnm, PDMAUDIODIR enmUsage)
475{
476 AssertPtrReturn(pDevEnm, NULL);
477
478 PPDMAUDIODEVICE pDev;
479 RTListForEach(&pDevEnm->lstDevices, pDev, PDMAUDIODEVICE, Node)
480 {
481 if (enmUsage != PDMAUDIODIR_ANY)
482 {
483 if (enmUsage != pDev->enmUsage) /* Wrong usage? Skip. */
484 continue;
485 }
486
487 if (pDev->fFlags & PDMAUDIODEV_FLAGS_DEFAULT)
488 return pDev;
489 }
490
491 return NULL;
492}
493
494/**
495 * Returns the number of enumerated devices of a given device enumeration.
496 *
497 * @returns Number of devices if found, or 0 if none found.
498 * @param pDevEnm Device enumeration to get default device for.
499 * @param enmUsage Usage to get default device for.
500 */
501uint16_t DrvAudioHlpDeviceEnumGetDeviceCount(const PPDMAUDIODEVICEENUM pDevEnm, PDMAUDIODIR enmUsage)
502{
503 AssertPtrReturn(pDevEnm, 0);
504
505 if (enmUsage == PDMAUDIODIR_ANY)
506 return pDevEnm->cDevices;
507
508 uint32_t cDevs = 0;
509
510 PPDMAUDIODEVICE pDev;
511 RTListForEach(&pDevEnm->lstDevices, pDev, PDMAUDIODEVICE, Node)
512 {
513 if (enmUsage == pDev->enmUsage)
514 cDevs++;
515 }
516
517 return cDevs;
518}
519
520/**
521 * Logs an audio device enumeration.
522 *
523 * @param pszDesc Logging description.
524 * @param pDevEnm Device enumeration to log.
525 */
526void DrvAudioHlpDeviceEnumPrint(const char *pszDesc, const PPDMAUDIODEVICEENUM pDevEnm)
527{
528 AssertPtrReturnVoid(pszDesc);
529 AssertPtrReturnVoid(pDevEnm);
530
531 LogFunc(("%s: %RU16 devices\n", pszDesc, pDevEnm->cDevices));
532
533 PPDMAUDIODEVICE pDev;
534 RTListForEach(&pDevEnm->lstDevices, pDev, PDMAUDIODEVICE, Node)
535 {
536 char *pszFlags = DrvAudioHlpAudDevFlagsToStrA(pDev->fFlags);
537
538 LogFunc(("Device '%s':\n", pDev->szName));
539 LogFunc(("\tUsage = %s\n", DrvAudioHlpAudDirToStr(pDev->enmUsage)));
540 LogFunc(("\tFlags = %s\n", pszFlags ? pszFlags : "<NONE>"));
541 LogFunc(("\tInput channels = %RU8\n", pDev->cMaxInputChannels));
542 LogFunc(("\tOutput channels = %RU8\n", pDev->cMaxOutputChannels));
543 LogFunc(("\tData = %p (%zu bytes)\n", pDev->pvData, pDev->cbData));
544
545 if (pszFlags)
546 RTStrFree(pszFlags);
547 }
548}
549
550/**
551 * Converts an audio direction to a string.
552 *
553 * @returns Stringified audio direction, or "Unknown", if not found.
554 * @param enmDir Audio direction to convert.
555 */
556const char *DrvAudioHlpAudDirToStr(PDMAUDIODIR enmDir)
557{
558 switch (enmDir)
559 {
560 case PDMAUDIODIR_UNKNOWN: return "Unknown";
561 case PDMAUDIODIR_IN: return "Input";
562 case PDMAUDIODIR_OUT: return "Output";
563 case PDMAUDIODIR_ANY: return "Duplex";
564 default: break;
565 }
566
567 AssertMsgFailed(("Invalid audio direction %ld\n", enmDir));
568 return "Unknown";
569}
570
571/**
572 * Converts an audio mixer control to a string.
573 *
574 * @returns Stringified audio mixer control or "Unknown", if not found.
575 * @param enmMixerCtl Audio mixer control to convert.
576 */
577const char *DrvAudioHlpAudMixerCtlToStr(PDMAUDIOMIXERCTL enmMixerCtl)
578{
579 switch (enmMixerCtl)
580 {
581 case PDMAUDIOMIXERCTL_VOLUME_MASTER: return "Master Volume";
582 case PDMAUDIOMIXERCTL_FRONT: return "Front";
583 case PDMAUDIOMIXERCTL_CENTER_LFE: return "Center / LFE";
584 case PDMAUDIOMIXERCTL_REAR: return "Rear";
585 case PDMAUDIOMIXERCTL_LINE_IN: return "Line-In";
586 case PDMAUDIOMIXERCTL_MIC_IN: return "Microphone-In";
587 default: break;
588 }
589
590 AssertMsgFailed(("Invalid mixer control %ld\n", enmMixerCtl));
591 return "Unknown";
592}
593
594/**
595 * Converts an audio device flags to a string.
596 *
597 * @returns Stringified audio flags. Must be free'd with RTStrFree().
598 * NULL if no flags set.
599 * @param fFlags Audio flags (PDMAUDIODEV_FLAGS_XXX) to convert.
600 */
601char *DrvAudioHlpAudDevFlagsToStrA(uint32_t fFlags)
602{
603#define APPEND_FLAG_TO_STR(_aFlag) \
604 if (fFlags & PDMAUDIODEV_FLAGS_##_aFlag) \
605 { \
606 if (pszFlags) \
607 { \
608 rc2 = RTStrAAppend(&pszFlags, " "); \
609 if (RT_FAILURE(rc2)) \
610 break; \
611 } \
612 \
613 rc2 = RTStrAAppend(&pszFlags, #_aFlag); \
614 if (RT_FAILURE(rc2)) \
615 break; \
616 } \
617
618 char *pszFlags = NULL;
619 int rc2 = VINF_SUCCESS;
620
621 do
622 {
623 APPEND_FLAG_TO_STR(DEFAULT);
624 APPEND_FLAG_TO_STR(HOTPLUG);
625 APPEND_FLAG_TO_STR(BUGGY);
626 APPEND_FLAG_TO_STR(IGNORE);
627 APPEND_FLAG_TO_STR(LOCKED);
628 APPEND_FLAG_TO_STR(DEAD);
629
630 } while (0);
631
632 if (!pszFlags)
633 rc2 = RTStrAAppend(&pszFlags, "NONE");
634
635 if ( RT_FAILURE(rc2)
636 && pszFlags)
637 {
638 RTStrFree(pszFlags);
639 pszFlags = NULL;
640 }
641
642#undef APPEND_FLAG_TO_STR
643
644 return pszFlags;
645}
646
647/**
648 * Converts a playback destination enumeration to a string.
649 *
650 * @returns Stringified playback destination, or "Unknown", if not found.
651 * @param enmPlaybackDst Playback destination to convert.
652 */
653const char *DrvAudioHlpPlaybackDstToStr(const PDMAUDIOPLAYBACKDST enmPlaybackDst)
654{
655 switch (enmPlaybackDst)
656 {
657 case PDMAUDIOPLAYBACKDST_UNKNOWN: return "Unknown";
658 case PDMAUDIOPLAYBACKDST_FRONT: return "Front";
659 case PDMAUDIOPLAYBACKDST_CENTER_LFE: return "Center / LFE";
660 case PDMAUDIOPLAYBACKDST_REAR: return "Rear";
661 default:
662 break;
663 }
664
665 AssertMsgFailed(("Invalid playback destination %ld\n", enmPlaybackDst));
666 return "Unknown";
667}
668
669/**
670 * Converts a recording source enumeration to a string.
671 *
672 * @returns Stringified recording source, or "Unknown", if not found.
673 * @param enmRecSrc Recording source to convert.
674 */
675const char *DrvAudioHlpRecSrcToStr(const PDMAUDIORECSRC enmRecSrc)
676{
677 switch (enmRecSrc)
678 {
679 case PDMAUDIORECSRC_UNKNOWN: return "Unknown";
680 case PDMAUDIORECSRC_MIC: return "Microphone In";
681 case PDMAUDIORECSRC_CD: return "CD";
682 case PDMAUDIORECSRC_VIDEO: return "Video";
683 case PDMAUDIORECSRC_AUX: return "AUX";
684 case PDMAUDIORECSRC_LINE: return "Line In";
685 case PDMAUDIORECSRC_PHONE: return "Phone";
686 default:
687 break;
688 }
689
690 AssertMsgFailed(("Invalid recording source %ld\n", enmRecSrc));
691 return "Unknown";
692}
693
694/**
695 * Returns wether the given audio format has signed bits or not.
696 *
697 * @return IPRT status code.
698 * @return bool @c true for signed bits, @c false for unsigned.
699 * @param enmFmt Audio format to retrieve value for.
700 */
701bool DrvAudioHlpAudFmtIsSigned(PDMAUDIOFMT enmFmt)
702{
703 switch (enmFmt)
704 {
705 case PDMAUDIOFMT_S8:
706 case PDMAUDIOFMT_S16:
707 case PDMAUDIOFMT_S32:
708 return true;
709
710 case PDMAUDIOFMT_U8:
711 case PDMAUDIOFMT_U16:
712 case PDMAUDIOFMT_U32:
713 return false;
714
715 default:
716 break;
717 }
718
719 AssertMsgFailed(("Bogus audio format %ld\n", enmFmt));
720 return false;
721}
722
723/**
724 * Returns the bits of a given audio format.
725 *
726 * @return IPRT status code.
727 * @return uint8_t Bits of audio format.
728 * @param enmFmt Audio format to retrieve value for.
729 */
730uint8_t DrvAudioHlpAudFmtToBits(PDMAUDIOFMT enmFmt)
731{
732 switch (enmFmt)
733 {
734 case PDMAUDIOFMT_S8:
735 case PDMAUDIOFMT_U8:
736 return 8;
737
738 case PDMAUDIOFMT_U16:
739 case PDMAUDIOFMT_S16:
740 return 16;
741
742 case PDMAUDIOFMT_U32:
743 case PDMAUDIOFMT_S32:
744 return 32;
745
746 default:
747 break;
748 }
749
750 AssertMsgFailed(("Bogus audio format %ld\n", enmFmt));
751 return 0;
752}
753
754/**
755 * Converts an audio format to a string.
756 *
757 * @returns Stringified audio format, or "Unknown", if not found.
758 * @param enmFmt Audio format to convert.
759 */
760const char *DrvAudioHlpAudFmtToStr(PDMAUDIOFMT enmFmt)
761{
762 switch (enmFmt)
763 {
764 case PDMAUDIOFMT_U8:
765 return "U8";
766
767 case PDMAUDIOFMT_U16:
768 return "U16";
769
770 case PDMAUDIOFMT_U32:
771 return "U32";
772
773 case PDMAUDIOFMT_S8:
774 return "S8";
775
776 case PDMAUDIOFMT_S16:
777 return "S16";
778
779 case PDMAUDIOFMT_S32:
780 return "S32";
781
782 default:
783 break;
784 }
785
786 AssertMsgFailed(("Bogus audio format %ld\n", enmFmt));
787 return "Unknown";
788}
789
790/**
791 * Converts a given string to an audio format.
792 *
793 * @returns Audio format for the given string, or PDMAUDIOFMT_INVALID if not found.
794 * @param pszFmt String to convert to an audio format.
795 */
796PDMAUDIOFMT DrvAudioHlpStrToAudFmt(const char *pszFmt)
797{
798 AssertPtrReturn(pszFmt, PDMAUDIOFMT_INVALID);
799
800 if (!RTStrICmp(pszFmt, "u8"))
801 return PDMAUDIOFMT_U8;
802 else if (!RTStrICmp(pszFmt, "u16"))
803 return PDMAUDIOFMT_U16;
804 else if (!RTStrICmp(pszFmt, "u32"))
805 return PDMAUDIOFMT_U32;
806 else if (!RTStrICmp(pszFmt, "s8"))
807 return PDMAUDIOFMT_S8;
808 else if (!RTStrICmp(pszFmt, "s16"))
809 return PDMAUDIOFMT_S16;
810 else if (!RTStrICmp(pszFmt, "s32"))
811 return PDMAUDIOFMT_S32;
812
813 AssertMsgFailed(("Invalid audio format '%s'\n", pszFmt));
814 return PDMAUDIOFMT_INVALID;
815}
816
817/**
818 * Checks whether two given PCM properties are equal.
819 *
820 * @returns @c true if equal, @c false if not.
821 * @param pProps1 First properties to compare.
822 * @param pProps2 Second properties to compare.
823 */
824bool DrvAudioHlpPCMPropsAreEqual(const PPDMAUDIOPCMPROPS pProps1, const PPDMAUDIOPCMPROPS pProps2)
825{
826 AssertPtrReturn(pProps1, false);
827 AssertPtrReturn(pProps2, false);
828
829 if (pProps1 == pProps2) /* If the pointers match, take a shortcut. */
830 return true;
831
832 return pProps1->uHz == pProps2->uHz
833 && pProps1->cChannels == pProps2->cChannels
834 && pProps1->cbSample == pProps2->cbSample
835 && pProps1->fSigned == pProps2->fSigned
836 && pProps1->fSwapEndian == pProps2->fSwapEndian;
837}
838
839/**
840 * Checks whether given PCM properties are valid or not.
841 *
842 * Returns @c true if properties are valid, @c false if not.
843 * @param pProps PCM properties to check.
844 */
845bool DrvAudioHlpPCMPropsAreValid(const PPDMAUDIOPCMPROPS pProps)
846{
847 AssertPtrReturn(pProps, false);
848
849 /* Minimum 1 channel (mono), maximum 7.1 (= 8) channels. */
850 bool fValid = ( pProps->cChannels >= 1
851 && pProps->cChannels <= 8);
852
853 if (fValid)
854 {
855 switch (pProps->cbSample)
856 {
857 case 1: /* 8 bit */
858 if (pProps->fSigned)
859 fValid = false;
860 break;
861 case 2: /* 16 bit */
862 if (!pProps->fSigned)
863 fValid = false;
864 break;
865 /** @todo Do we need support for 24 bit samples? */
866 case 4: /* 32 bit */
867 if (!pProps->fSigned)
868 fValid = false;
869 break;
870 default:
871 fValid = false;
872 break;
873 }
874 }
875
876 if (!fValid)
877 return false;
878
879 fValid &= pProps->uHz > 0;
880 fValid &= pProps->cShift == PDMAUDIOPCMPROPS_MAKE_SHIFT_PARMS(pProps->cbSample, pProps->cChannels);
881 fValid &= pProps->fSwapEndian == false; /** @todo Handling Big Endian audio data is not supported yet. */
882
883 return fValid;
884}
885
886/**
887 * Checks whether the given PCM properties are equal with the given
888 * stream configuration.
889 *
890 * @returns @c true if equal, @c false if not.
891 * @param pProps PCM properties to compare.
892 * @param pCfg Stream configuration to compare.
893 */
894bool DrvAudioHlpPCMPropsAreEqual(const PPDMAUDIOPCMPROPS pProps, const PPDMAUDIOSTREAMCFG pCfg)
895{
896 AssertPtrReturn(pProps, false);
897 AssertPtrReturn(pCfg, false);
898
899 return DrvAudioHlpPCMPropsAreEqual(pProps, &pCfg->Props);
900}
901
902/**
903 * Returns the bytes per frame for given PCM properties.
904 *
905 * @return Bytes per (audio) frame.
906 * @param pProps PCM properties to retrieve bytes per frame for.
907 */
908uint32_t DrvAudioHlpPCMPropsBytesPerFrame(const PPDMAUDIOPCMPROPS pProps)
909{
910 return PDMAUDIOPCMPROPS_F2B(pProps, 1 /* Frame */);
911}
912
913/**
914 * Prints PCM properties to the debug log.
915 *
916 * @param pProps Stream configuration to log.
917 */
918void DrvAudioHlpPCMPropsPrint(const PPDMAUDIOPCMPROPS pProps)
919{
920 AssertPtrReturnVoid(pProps);
921
922 Log(("uHz=%RU32, cChannels=%RU8, cBits=%RU8%s",
923 pProps->uHz, pProps->cChannels, pProps->cbSample * 8, pProps->fSigned ? "S" : "U"));
924}
925
926/**
927 * Converts PCM properties to a audio stream configuration.
928 *
929 * @return IPRT status code.
930 * @param pProps PCM properties to convert.
931 * @param pCfg Stream configuration to store result into.
932 */
933int DrvAudioHlpPCMPropsToStreamCfg(const PPDMAUDIOPCMPROPS pProps, PPDMAUDIOSTREAMCFG pCfg)
934{
935 AssertPtrReturn(pProps, VERR_INVALID_POINTER);
936 AssertPtrReturn(pCfg, VERR_INVALID_POINTER);
937
938 DrvAudioHlpStreamCfgInit(pCfg);
939
940 memcpy(&pCfg->Props, pProps, sizeof(PDMAUDIOPCMPROPS));
941 return VINF_SUCCESS;
942}
943
944/**
945 * Initializes a stream configuration with its default values.
946 *
947 * @param pCfg Stream configuration to initialize.
948 */
949void DrvAudioHlpStreamCfgInit(PPDMAUDIOSTREAMCFG pCfg)
950{
951 AssertPtrReturnVoid(pCfg);
952
953 RT_ZERO(*pCfg);
954
955 pCfg->Backend.cFramesPreBuffering = UINT32_MAX; /* Explicitly set to "undefined". */
956}
957
958/**
959 * Checks whether a given stream configuration is valid or not.
960 *
961 * Returns @c true if configuration is valid, @c false if not.
962 * @param pCfg Stream configuration to check.
963 */
964bool DrvAudioHlpStreamCfgIsValid(const PPDMAUDIOSTREAMCFG pCfg)
965{
966 AssertPtrReturn(pCfg, false);
967
968 bool fValid = ( pCfg->enmDir == PDMAUDIODIR_IN
969 || pCfg->enmDir == PDMAUDIODIR_OUT);
970
971 fValid &= ( pCfg->enmLayout == PDMAUDIOSTREAMLAYOUT_NON_INTERLEAVED
972 || pCfg->enmLayout == PDMAUDIOSTREAMLAYOUT_RAW);
973
974 if (fValid)
975 fValid = DrvAudioHlpPCMPropsAreValid(&pCfg->Props);
976
977 return fValid;
978}
979
980/**
981 * Frees an allocated audio stream configuration.
982 *
983 * @param pCfg Audio stream configuration to free.
984 */
985void DrvAudioHlpStreamCfgFree(PPDMAUDIOSTREAMCFG pCfg)
986{
987 if (pCfg)
988 {
989 RTMemFree(pCfg);
990 pCfg = NULL;
991 }
992}
993
994/**
995 * Copies a source stream configuration to a destination stream configuration.
996 *
997 * @returns IPRT status code.
998 * @param pDstCfg Destination stream configuration to copy source to.
999 * @param pSrcCfg Source stream configuration to copy to destination.
1000 */
1001int DrvAudioHlpStreamCfgCopy(PPDMAUDIOSTREAMCFG pDstCfg, const PPDMAUDIOSTREAMCFG pSrcCfg)
1002{
1003 AssertPtrReturn(pDstCfg, VERR_INVALID_POINTER);
1004 AssertPtrReturn(pSrcCfg, VERR_INVALID_POINTER);
1005
1006#ifdef VBOX_STRICT
1007 if (!DrvAudioHlpStreamCfgIsValid(pSrcCfg))
1008 {
1009 AssertMsgFailed(("Stream config '%s' (%p) is invalid\n", pSrcCfg->szName, pSrcCfg));
1010 return VERR_INVALID_PARAMETER;
1011 }
1012#endif
1013
1014 memcpy(pDstCfg, pSrcCfg, sizeof(PDMAUDIOSTREAMCFG));
1015
1016 return VINF_SUCCESS;
1017}
1018
1019/**
1020 * Duplicates an audio stream configuration.
1021 * Must be free'd with DrvAudioHlpStreamCfgFree().
1022 *
1023 * @return Duplicates audio stream configuration on success, or NULL on failure.
1024 * @param pCfg Audio stream configuration to duplicate.
1025 */
1026PPDMAUDIOSTREAMCFG DrvAudioHlpStreamCfgDup(const PPDMAUDIOSTREAMCFG pCfg)
1027{
1028 AssertPtrReturn(pCfg, NULL);
1029
1030#ifdef VBOX_STRICT
1031 if (!DrvAudioHlpStreamCfgIsValid(pCfg))
1032 {
1033 AssertMsgFailed(("Stream config '%s' (%p) is invalid\n", pCfg->szName, pCfg));
1034 return NULL;
1035 }
1036#endif
1037
1038 PPDMAUDIOSTREAMCFG pDst = (PPDMAUDIOSTREAMCFG)RTMemAllocZ(sizeof(PDMAUDIOSTREAMCFG));
1039 if (!pDst)
1040 return NULL;
1041
1042 int rc2 = DrvAudioHlpStreamCfgCopy(pDst, pCfg);
1043 if (RT_FAILURE(rc2))
1044 {
1045 DrvAudioHlpStreamCfgFree(pDst);
1046 pDst = NULL;
1047 }
1048
1049 AssertPtr(pDst);
1050 return pDst;
1051}
1052
1053/**
1054 * Prints an audio stream configuration to the debug log.
1055 *
1056 * @param pCfg Stream configuration to log.
1057 */
1058void DrvAudioHlpStreamCfgPrint(const PPDMAUDIOSTREAMCFG pCfg)
1059{
1060 if (!pCfg)
1061 return;
1062
1063 LogFunc(("szName=%s, enmDir=%RU32 (uHz=%RU32, cBits=%RU8%s, cChannels=%RU8)\n",
1064 pCfg->szName, pCfg->enmDir,
1065 pCfg->Props.uHz, pCfg->Props.cbSample * 8, pCfg->Props.fSigned ? "S" : "U", pCfg->Props.cChannels));
1066}
1067
1068/**
1069 * Converts a stream command to a string.
1070 *
1071 * @returns Stringified stream command, or "Unknown", if not found.
1072 * @param enmCmd Stream command to convert.
1073 */
1074const char *DrvAudioHlpStreamCmdToStr(PDMAUDIOSTREAMCMD enmCmd)
1075{
1076 switch (enmCmd)
1077 {
1078 case PDMAUDIOSTREAMCMD_INVALID: return "Invalid";
1079 case PDMAUDIOSTREAMCMD_UNKNOWN: return "Unknown";
1080 case PDMAUDIOSTREAMCMD_ENABLE: return "Enable";
1081 case PDMAUDIOSTREAMCMD_DISABLE: return "Disable";
1082 case PDMAUDIOSTREAMCMD_PAUSE: return "Pause";
1083 case PDMAUDIOSTREAMCMD_RESUME: return "Resume";
1084 case PDMAUDIOSTREAMCMD_DRAIN: return "Drain";
1085 case PDMAUDIOSTREAMCMD_DROP: return "Drop";
1086 case PDMAUDIOSTREAMCMD_32BIT_HACK:
1087 break;
1088 }
1089 AssertMsgFailed(("Invalid stream command %d\n", enmCmd));
1090 return "Unknown";
1091}
1092
1093/**
1094 * Returns @c true if the given stream status indicates a can-be-read-from stream,
1095 * @c false if not.
1096 *
1097 * @returns @c true if ready to be read from, @c if not.
1098 * @param fStatus Stream status to evaluate, PDMAUDIOSTREAMSTS_FLAGS_XXX.
1099 */
1100bool DrvAudioHlpStreamStatusCanRead(PDMAUDIOSTREAMSTS fStatus)
1101{
1102 AssertReturn(fStatus & PDMAUDIOSTREAMSTS_VALID_MASK, false);
1103
1104 return fStatus & PDMAUDIOSTREAMSTS_FLAGS_INITIALIZED
1105 && fStatus & PDMAUDIOSTREAMSTS_FLAGS_ENABLED
1106 && !(fStatus & PDMAUDIOSTREAMSTS_FLAGS_PAUSED)
1107 && !(fStatus & PDMAUDIOSTREAMSTS_FLAGS_PENDING_REINIT);
1108}
1109
1110/**
1111 * Returns @c true if the given stream status indicates a can-be-written-to stream,
1112 * @c false if not.
1113 *
1114 * @returns @c true if ready to be written to, @c if not.
1115 * @param fStatus Stream status to evaluate, PDMAUDIOSTREAMSTS_FLAGS_XXX.
1116 */
1117bool DrvAudioHlpStreamStatusCanWrite(PDMAUDIOSTREAMSTS fStatus)
1118{
1119 AssertReturn(fStatus & PDMAUDIOSTREAMSTS_VALID_MASK, false);
1120
1121 return fStatus & PDMAUDIOSTREAMSTS_FLAGS_INITIALIZED
1122 && fStatus & PDMAUDIOSTREAMSTS_FLAGS_ENABLED
1123 && !(fStatus & PDMAUDIOSTREAMSTS_FLAGS_PAUSED)
1124 && !(fStatus & PDMAUDIOSTREAMSTS_FLAGS_PENDING_DISABLE)
1125 && !(fStatus & PDMAUDIOSTREAMSTS_FLAGS_PENDING_REINIT);
1126}
1127
1128/**
1129 * Returns @c true if the given stream status indicates a ready-to-operate stream,
1130 * @c false if not.
1131 *
1132 * @returns @c true if ready to operate, @c if not.
1133 * @param fStatus Stream status to evaluate.
1134 */
1135bool DrvAudioHlpStreamStatusIsReady(PDMAUDIOSTREAMSTS fStatus)
1136{
1137 AssertReturn(fStatus & PDMAUDIOSTREAMSTS_VALID_MASK, false);
1138
1139 return fStatus & PDMAUDIOSTREAMSTS_FLAGS_INITIALIZED
1140 && fStatus & PDMAUDIOSTREAMSTS_FLAGS_ENABLED
1141 && !(fStatus & PDMAUDIOSTREAMSTS_FLAGS_PENDING_REINIT);
1142}
1143
1144/**
1145 * Calculates the audio bit rate of the given bits per sample, the Hz and the number
1146 * of audio channels.
1147 *
1148 * Divide the result by 8 to get the byte rate.
1149 *
1150 * @returns The calculated bit rate.
1151 * @param cBits Number of bits per sample.
1152 * @param uHz Hz (Hertz) rate.
1153 * @param cChannels Number of audio channels.
1154 */
1155uint32_t DrvAudioHlpCalcBitrate(uint8_t cBits, uint32_t uHz, uint8_t cChannels)
1156{
1157 return (cBits * uHz * cChannels);
1158}
1159
1160/**
1161 * Calculates the audio bit rate out of a given audio stream configuration.
1162 *
1163 * Divide the result by 8 to get the byte rate.
1164 *
1165 * @returns The calculated bit rate.
1166 * @param pProps PCM properties to calculate bitrate for.
1167 *
1168 * @remark
1169 */
1170uint32_t DrvAudioHlpCalcBitrate(const PPDMAUDIOPCMPROPS pProps)
1171{
1172 return DrvAudioHlpCalcBitrate(pProps->cbSample * 8, pProps->uHz, pProps->cChannels);
1173}
1174
1175/**
1176 * Aligns the given byte amount to the given PCM properties and returns the aligned
1177 * size.
1178 *
1179 * @return Aligned size (in bytes).
1180 * @param cbSize Size (in bytes) to align.
1181 * @param pProps PCM properties to align size to.
1182 */
1183uint32_t DrvAudioHlpBytesAlign(uint32_t cbSize, const PPDMAUDIOPCMPROPS pProps)
1184{
1185 AssertPtrReturn(pProps, 0);
1186
1187 if (!cbSize)
1188 return 0;
1189
1190 return PDMAUDIOPCMPROPS_B2F(pProps, cbSize) * PDMAUDIOPCMPROPS_F2B(pProps, 1 /* Frame */);
1191}
1192
1193/**
1194 * Returns if the the given size is properly aligned to the given PCM properties.
1195 *
1196 * @return @c true if properly aligned, @c false if not.
1197 * @param cbSize Size (in bytes) to check alignment for.
1198 * @param pProps PCM properties to use for checking the alignment.
1199 */
1200bool DrvAudioHlpBytesIsAligned(uint32_t cbSize, const PPDMAUDIOPCMPROPS pProps)
1201{
1202 AssertPtrReturn(pProps, 0);
1203
1204 if (!cbSize)
1205 return true;
1206
1207 return (cbSize % PDMAUDIOPCMPROPS_F2B(pProps, 1 /* Frame */) == 0);
1208}
1209
1210/**
1211 * Returns the bytes per second for given PCM properties.
1212 *
1213 * @returns Bytes per second.
1214 * @param pProps PCM properties to retrieve size for.
1215 */
1216DECLINLINE(uint64_t) drvAudioHlpBytesPerSec(const PPDMAUDIOPCMPROPS pProps)
1217{
1218 return PDMAUDIOPCMPROPS_F2B(pProps, 1 /* Frame */) * pProps->uHz;
1219}
1220
1221/**
1222 * Returns the number of audio frames for a given amount of bytes.
1223 *
1224 * @return Calculated audio frames for given bytes.
1225 * @param cbBytes Bytes to convert to audio frames.
1226 * @param pProps PCM properties to calulate frames for.
1227 */
1228uint32_t DrvAudioHlpBytesToFrames(uint32_t cbBytes, const PPDMAUDIOPCMPROPS pProps)
1229{
1230 AssertPtrReturn(pProps, 0);
1231
1232 return PDMAUDIOPCMPROPS_B2F(pProps, cbBytes);
1233}
1234
1235/**
1236 * Returns the time (in ms) for given byte amount and PCM properties.
1237 *
1238 * @return uint64_t Calculated time (in ms).
1239 * @param cbBytes Amount of bytes to calculate time for.
1240 * @param pProps PCM properties to calculate amount of bytes for.
1241 *
1242 * @note Does rounding up the result.
1243 */
1244uint64_t DrvAudioHlpBytesToMilli(uint32_t cbBytes, const PPDMAUDIOPCMPROPS pProps)
1245{
1246 AssertPtrReturn(pProps, 0);
1247
1248 if (!pProps->uHz) /* Prevent division by zero. */
1249 return 0;
1250
1251 const unsigned cbFrame = PDMAUDIOPCMPROPS_F2B(pProps, 1 /* Frame */);
1252
1253 if (!cbFrame) /* Prevent division by zero. */
1254 return 0;
1255
1256 uint64_t uTimeMs = ((cbBytes + cbFrame - 1) / cbFrame) * RT_MS_1SEC;
1257
1258 return (uTimeMs + pProps->uHz - 1) / pProps->uHz;
1259}
1260
1261/**
1262 * Returns the time (in us) for given byte amount and PCM properties.
1263 *
1264 * @return uint64_t Calculated time (in us).
1265 * @param cbBytes Amount of bytes to calculate time for.
1266 * @param pProps PCM properties to calculate amount of bytes for.
1267 *
1268 * @note Does rounding up the result.
1269 */
1270uint64_t DrvAudioHlpBytesToMicro(uint32_t cbBytes, const PPDMAUDIOPCMPROPS pProps)
1271{
1272 AssertPtrReturn(pProps, 0);
1273
1274 if (!pProps->uHz) /* Prevent division by zero. */
1275 return 0;
1276
1277 const unsigned cbFrame = PDMAUDIOPCMPROPS_F2B(pProps, 1 /* Frame */);
1278
1279 if (!cbFrame) /* Prevent division by zero. */
1280 return 0;
1281
1282 uint64_t uTimeUs = ((cbBytes + cbFrame - 1) / cbFrame) * RT_US_1SEC;
1283
1284 return (uTimeUs + pProps->uHz - 1) / pProps->uHz;
1285}
1286
1287/**
1288 * Returns the time (in ns) for given byte amount and PCM properties.
1289 *
1290 * @return uint64_t Calculated time (in ns).
1291 * @param cbBytes Amount of bytes to calculate time for.
1292 * @param pProps PCM properties to calculate amount of bytes for.
1293 *
1294 * @note Does rounding up the result.
1295 */
1296uint64_t DrvAudioHlpBytesToNano(uint32_t cbBytes, const PPDMAUDIOPCMPROPS pProps)
1297{
1298 AssertPtrReturn(pProps, 0);
1299
1300 if (!pProps->uHz) /* Prevent division by zero. */
1301 return 0;
1302
1303 const unsigned cbFrame = PDMAUDIOPCMPROPS_F2B(pProps, 1 /* Frame */);
1304
1305 if (!cbFrame) /* Prevent division by zero. */
1306 return 0;
1307
1308 uint64_t uTimeNs = ((cbBytes + cbFrame - 1) / cbFrame) * RT_NS_1SEC;
1309
1310 return (uTimeNs + pProps->uHz - 1) / pProps->uHz;
1311}
1312
1313/**
1314 * Returns the bytes for a given audio frames amount and PCM properties.
1315 *
1316 * @return Calculated bytes for given audio frames.
1317 * @param cFrames Amount of audio frames to calculate bytes for.
1318 * @param pProps PCM properties to calculate bytes for.
1319 */
1320uint32_t DrvAudioHlpFramesToBytes(uint32_t cFrames, const PPDMAUDIOPCMPROPS pProps)
1321{
1322 AssertPtrReturn(pProps, 0);
1323
1324 if (!cFrames)
1325 return 0;
1326
1327 return cFrames * PDMAUDIOPCMPROPS_F2B(pProps, 1 /* Frame */);
1328}
1329
1330/**
1331 * Returns the time (in ms) for given audio frames amount and PCM properties.
1332 *
1333 * @return uint64_t Calculated time (in ms).
1334 * @param cFrames Amount of audio frames to calculate time for.
1335 * @param pProps PCM properties to calculate time (in ms) for.
1336 */
1337uint64_t DrvAudioHlpFramesToMilli(uint32_t cFrames, const PPDMAUDIOPCMPROPS pProps)
1338{
1339 AssertPtrReturn(pProps, 0);
1340
1341 if (!cFrames)
1342 return 0;
1343
1344 if (!pProps->uHz) /* Prevent division by zero. */
1345 return 0;
1346
1347 return cFrames / ((double)pProps->uHz / (double)RT_MS_1SEC);
1348}
1349
1350/**
1351 * Returns the time (in ns) for given audio frames amount and PCM properties.
1352 *
1353 * @return uint64_t Calculated time (in ns).
1354 * @param cFrames Amount of audio frames to calculate time for.
1355 * @param pProps PCM properties to calculate time (in ns) for.
1356 */
1357uint64_t DrvAudioHlpFramesToNano(uint32_t cFrames, const PPDMAUDIOPCMPROPS pProps)
1358{
1359 AssertPtrReturn(pProps, 0);
1360
1361 if (!cFrames)
1362 return 0;
1363
1364 if (!pProps->uHz) /* Prevent division by zero. */
1365 return 0;
1366
1367 return cFrames / ((double)pProps->uHz / (double)RT_NS_1SEC);
1368}
1369
1370/**
1371 * Returns the amount of bytes for a given time (in ms) and PCM properties.
1372 *
1373 * Note: The result will return an amount of bytes which is aligned to the audio frame size.
1374 *
1375 * @return uint32_t Calculated amount of bytes.
1376 * @param uMs Time (in ms) to calculate amount of bytes for.
1377 * @param pProps PCM properties to calculate amount of bytes for.
1378 */
1379uint32_t DrvAudioHlpMilliToBytes(uint64_t uMs, const PPDMAUDIOPCMPROPS pProps)
1380{
1381 AssertPtrReturn(pProps, 0);
1382
1383 if (!uMs)
1384 return 0;
1385
1386 const uint32_t uBytesPerFrame = DrvAudioHlpPCMPropsBytesPerFrame(pProps);
1387
1388 uint32_t uBytes = ((double)drvAudioHlpBytesPerSec(pProps) / (double)RT_MS_1SEC) * uMs;
1389 if (uBytes % uBytesPerFrame) /* Any remainder? Make the returned bytes an integral number to the given frames. */
1390 uBytes = uBytes + (uBytesPerFrame - uBytes % uBytesPerFrame);
1391
1392 Assert(uBytes % uBytesPerFrame == 0); /* Paranoia. */
1393
1394 return uBytes;
1395}
1396
1397/**
1398 * Returns the amount of bytes for a given time (in ns) and PCM properties.
1399 *
1400 * Note: The result will return an amount of bytes which is aligned to the audio frame size.
1401 *
1402 * @return uint32_t Calculated amount of bytes.
1403 * @param uNs Time (in ns) to calculate amount of bytes for.
1404 * @param pProps PCM properties to calculate amount of bytes for.
1405 */
1406uint32_t DrvAudioHlpNanoToBytes(uint64_t uNs, const PPDMAUDIOPCMPROPS pProps)
1407{
1408 AssertPtrReturn(pProps, 0);
1409
1410 if (!uNs)
1411 return 0;
1412
1413 const uint32_t uBytesPerFrame = DrvAudioHlpPCMPropsBytesPerFrame(pProps);
1414
1415 uint32_t uBytes = ((double)drvAudioHlpBytesPerSec(pProps) / (double)RT_NS_1SEC) * uNs;
1416 if (uBytes % uBytesPerFrame) /* Any remainder? Make the returned bytes an integral number to the given frames. */
1417 uBytes = uBytes + (uBytesPerFrame - uBytes % uBytesPerFrame);
1418
1419 Assert(uBytes % uBytesPerFrame == 0); /* Paranoia. */
1420
1421 return uBytes;
1422}
1423
1424/**
1425 * Returns the amount of audio frames for a given time (in ms) and PCM properties.
1426 *
1427 * @return uint32_t Calculated amount of audio frames.
1428 * @param uMs Time (in ms) to calculate amount of frames for.
1429 * @param pProps PCM properties to calculate amount of frames for.
1430 */
1431uint32_t DrvAudioHlpMilliToFrames(uint64_t uMs, const PPDMAUDIOPCMPROPS pProps)
1432{
1433 AssertPtrReturn(pProps, 0);
1434
1435 const uint32_t cbFrame = PDMAUDIOPCMPROPS_F2B(pProps, 1 /* Frame */);
1436 if (!cbFrame) /* Prevent division by zero. */
1437 return 0;
1438
1439 return DrvAudioHlpMilliToBytes(uMs, pProps) / cbFrame;
1440}
1441
1442/**
1443 * Returns the amount of audio frames for a given time (in ns) and PCM properties.
1444 *
1445 * @return uint32_t Calculated amount of audio frames.
1446 * @param uNs Time (in ns) to calculate amount of frames for.
1447 * @param pProps PCM properties to calculate amount of frames for.
1448 */
1449uint32_t DrvAudioHlpNanoToFrames(uint64_t uNs, const PPDMAUDIOPCMPROPS pProps)
1450{
1451 AssertPtrReturn(pProps, 0);
1452
1453 const uint32_t cbFrame = PDMAUDIOPCMPROPS_F2B(pProps, 1 /* Frame */);
1454 if (!cbFrame) /* Prevent division by zero. */
1455 return 0;
1456
1457 return DrvAudioHlpNanoToBytes(uNs, pProps) / cbFrame;
1458}
1459
1460/**
1461 * Sanitizes the file name component so that unsupported characters
1462 * will be replaced by an underscore ("_").
1463 *
1464 * @return IPRT status code.
1465 * @param pszPath Path to sanitize.
1466 * @param cbPath Size (in bytes) of path to sanitize.
1467 */
1468int DrvAudioHlpFileNameSanitize(char *pszPath, size_t cbPath)
1469{
1470 RT_NOREF(cbPath);
1471 int rc = VINF_SUCCESS;
1472#ifdef RT_OS_WINDOWS
1473 /* Filter out characters not allowed on Windows platforms, put in by
1474 RTTimeSpecToString(). */
1475 /** @todo Use something like RTPathSanitize() if available later some time. */
1476 static RTUNICP const s_uszValidRangePairs[] =
1477 {
1478 ' ', ' ',
1479 '(', ')',
1480 '-', '.',
1481 '0', '9',
1482 'A', 'Z',
1483 'a', 'z',
1484 '_', '_',
1485 0xa0, 0xd7af,
1486 '\0'
1487 };
1488 ssize_t cReplaced = RTStrPurgeComplementSet(pszPath, s_uszValidRangePairs, '_' /* Replacement */);
1489 if (cReplaced < 0)
1490 rc = VERR_INVALID_UTF8_ENCODING;
1491#else
1492 RT_NOREF(pszPath);
1493#endif
1494 return rc;
1495}
1496
1497/**
1498 * Constructs an unique file name, based on the given path and the audio file type.
1499 *
1500 * @returns IPRT status code.
1501 * @param pszFile Where to store the constructed file name.
1502 * @param cchFile Size (in characters) of the file name buffer.
1503 * @param pszPath Base path to use.
1504 * @param pszName A name for better identifying the file.
1505 * @param uInstance Device / driver instance which is using this file.
1506 * @param enmType Audio file type to construct file name for.
1507 * @param fFlags File naming flags, PDMAUDIOFILENAME_FLAGS_XXX.
1508 */
1509int DrvAudioHlpFileNameGet(char *pszFile, size_t cchFile, const char *pszPath, const char *pszName,
1510 uint32_t uInstance, PDMAUDIOFILETYPE enmType, uint32_t fFlags)
1511{
1512 AssertPtrReturn(pszFile, VERR_INVALID_POINTER);
1513 AssertReturn(cchFile, VERR_INVALID_PARAMETER);
1514 AssertPtrReturn(pszPath, VERR_INVALID_POINTER);
1515 AssertPtrReturn(pszName, VERR_INVALID_POINTER);
1516 /** @todo Validate fFlags. */
1517
1518 int rc;
1519
1520 do
1521 {
1522 char szFilePath[RTPATH_MAX];
1523 rc = RTStrCopy(szFilePath, sizeof(szFilePath), pszPath);
1524 AssertRCBreak(rc);
1525
1526 /* Create it when necessary. */
1527 if (!RTDirExists(szFilePath))
1528 {
1529 rc = RTDirCreateFullPath(szFilePath, RTFS_UNIX_IRWXU);
1530 if (RT_FAILURE(rc))
1531 break;
1532 }
1533
1534 char szFileName[RTPATH_MAX];
1535 szFileName[0] = '\0';
1536
1537 if (fFlags & PDMAUDIOFILENAME_FLAGS_TS)
1538 {
1539 RTTIMESPEC time;
1540 if (!RTTimeSpecToString(RTTimeNow(&time), szFileName, sizeof(szFileName)))
1541 {
1542 rc = VERR_BUFFER_OVERFLOW;
1543 break;
1544 }
1545
1546 rc = DrvAudioHlpFileNameSanitize(szFileName, sizeof(szFileName));
1547 if (RT_FAILURE(rc))
1548 break;
1549
1550 rc = RTStrCat(szFileName, sizeof(szFileName), "-");
1551 if (RT_FAILURE(rc))
1552 break;
1553 }
1554
1555 rc = RTStrCat(szFileName, sizeof(szFileName), pszName);
1556 if (RT_FAILURE(rc))
1557 break;
1558
1559 rc = RTStrCat(szFileName, sizeof(szFileName), "-");
1560 if (RT_FAILURE(rc))
1561 break;
1562
1563 char szInst[16];
1564 RTStrPrintf2(szInst, sizeof(szInst), "%RU32", uInstance);
1565 rc = RTStrCat(szFileName, sizeof(szFileName), szInst);
1566 if (RT_FAILURE(rc))
1567 break;
1568
1569 switch (enmType)
1570 {
1571 case PDMAUDIOFILETYPE_RAW:
1572 rc = RTStrCat(szFileName, sizeof(szFileName), ".pcm");
1573 break;
1574
1575 case PDMAUDIOFILETYPE_WAV:
1576 rc = RTStrCat(szFileName, sizeof(szFileName), ".wav");
1577 break;
1578
1579 default:
1580 AssertFailedStmt(rc = VERR_NOT_IMPLEMENTED);
1581 break;
1582 }
1583
1584 if (RT_FAILURE(rc))
1585 break;
1586
1587 rc = RTPathAppend(szFilePath, sizeof(szFilePath), szFileName);
1588 if (RT_FAILURE(rc))
1589 break;
1590
1591 rc = RTStrCopy(pszFile, cchFile, szFilePath);
1592
1593 } while (0);
1594
1595 LogFlowFuncLeaveRC(rc);
1596 return rc;
1597}
1598
1599/**
1600 * Creates an audio file.
1601 *
1602 * @returns IPRT status code.
1603 * @param enmType Audio file type to open / create.
1604 * @param pszFile File path of file to open or create.
1605 * @param fFlags Audio file flags, PDMAUDIOFILE_FLAGS_XXX.
1606 * @param ppFile Where to store the created audio file handle.
1607 * Needs to be destroyed with DrvAudioHlpFileDestroy().
1608 */
1609int DrvAudioHlpFileCreate(PDMAUDIOFILETYPE enmType, const char *pszFile, uint32_t fFlags, PPDMAUDIOFILE *ppFile)
1610{
1611 AssertPtrReturn(pszFile, VERR_INVALID_POINTER);
1612 /** @todo Validate fFlags. */
1613
1614 PPDMAUDIOFILE pFile = (PPDMAUDIOFILE)RTMemAlloc(sizeof(PDMAUDIOFILE));
1615 if (!pFile)
1616 return VERR_NO_MEMORY;
1617
1618 int rc = VINF_SUCCESS;
1619
1620 switch (enmType)
1621 {
1622 case PDMAUDIOFILETYPE_RAW:
1623 case PDMAUDIOFILETYPE_WAV:
1624 pFile->enmType = enmType;
1625 break;
1626
1627 default:
1628 rc = VERR_INVALID_PARAMETER;
1629 break;
1630 }
1631
1632 if (RT_SUCCESS(rc))
1633 {
1634 RTStrPrintf(pFile->szName, RT_ELEMENTS(pFile->szName), "%s", pszFile);
1635 pFile->hFile = NIL_RTFILE;
1636 pFile->fFlags = fFlags;
1637 pFile->pvData = NULL;
1638 pFile->cbData = 0;
1639 }
1640
1641 if (RT_FAILURE(rc))
1642 {
1643 RTMemFree(pFile);
1644 pFile = NULL;
1645 }
1646 else
1647 *ppFile = pFile;
1648
1649 return rc;
1650}
1651
1652/**
1653 * Destroys a formerly created audio file.
1654 *
1655 * @param pFile Audio file (object) to destroy.
1656 */
1657void DrvAudioHlpFileDestroy(PPDMAUDIOFILE pFile)
1658{
1659 if (!pFile)
1660 return;
1661
1662 DrvAudioHlpFileClose(pFile);
1663
1664 RTMemFree(pFile);
1665 pFile = NULL;
1666}
1667
1668/**
1669 * Opens or creates an audio file.
1670 *
1671 * @returns IPRT status code.
1672 * @param pFile Pointer to audio file handle to use.
1673 * @param fOpen Open flags.
1674 * Use PDMAUDIOFILE_DEFAULT_OPEN_FLAGS for the default open flags.
1675 * @param pProps PCM properties to use.
1676 */
1677int DrvAudioHlpFileOpen(PPDMAUDIOFILE pFile, uint32_t fOpen, const PPDMAUDIOPCMPROPS pProps)
1678{
1679 AssertPtrReturn(pFile, VERR_INVALID_POINTER);
1680 /** @todo Validate fOpen flags. */
1681 AssertPtrReturn(pProps, VERR_INVALID_POINTER);
1682
1683 int rc;
1684
1685 if (pFile->enmType == PDMAUDIOFILETYPE_RAW)
1686 {
1687 rc = RTFileOpen(&pFile->hFile, pFile->szName, fOpen);
1688 }
1689 else if (pFile->enmType == PDMAUDIOFILETYPE_WAV)
1690 {
1691 Assert(pProps->cChannels);
1692 Assert(pProps->uHz);
1693 Assert(pProps->cbSample);
1694
1695 pFile->pvData = (PAUDIOWAVFILEDATA)RTMemAllocZ(sizeof(AUDIOWAVFILEDATA));
1696 if (pFile->pvData)
1697 {
1698 pFile->cbData = sizeof(PAUDIOWAVFILEDATA);
1699
1700 PAUDIOWAVFILEDATA pData = (PAUDIOWAVFILEDATA)pFile->pvData;
1701 AssertPtr(pData);
1702
1703 /* Header. */
1704 pData->Hdr.u32RIFF = AUDIO_MAKE_FOURCC('R','I','F','F');
1705 pData->Hdr.u32Size = 36;
1706 pData->Hdr.u32WAVE = AUDIO_MAKE_FOURCC('W','A','V','E');
1707
1708 pData->Hdr.u32Fmt = AUDIO_MAKE_FOURCC('f','m','t',' ');
1709 pData->Hdr.u32Size1 = 16; /* Means PCM. */
1710 pData->Hdr.u16AudioFormat = 1; /* PCM, linear quantization. */
1711 pData->Hdr.u16NumChannels = pProps->cChannels;
1712 pData->Hdr.u32SampleRate = pProps->uHz;
1713 pData->Hdr.u32ByteRate = DrvAudioHlpCalcBitrate(pProps) / 8;
1714 pData->Hdr.u16BlockAlign = pProps->cChannels * pProps->cbSample;
1715 pData->Hdr.u16BitsPerSample = pProps->cbSample * 8;
1716
1717 /* Data chunk. */
1718 pData->Hdr.u32ID2 = AUDIO_MAKE_FOURCC('d','a','t','a');
1719 pData->Hdr.u32Size2 = 0;
1720
1721 rc = RTFileOpen(&pFile->hFile, pFile->szName, fOpen);
1722 if (RT_SUCCESS(rc))
1723 {
1724 rc = RTFileWrite(pFile->hFile, &pData->Hdr, sizeof(pData->Hdr), NULL);
1725 if (RT_FAILURE(rc))
1726 {
1727 RTFileClose(pFile->hFile);
1728 pFile->hFile = NIL_RTFILE;
1729 }
1730 }
1731
1732 if (RT_FAILURE(rc))
1733 {
1734 RTMemFree(pFile->pvData);
1735 pFile->pvData = NULL;
1736 pFile->cbData = 0;
1737 }
1738 }
1739 else
1740 rc = VERR_NO_MEMORY;
1741 }
1742 else
1743 rc = VERR_INVALID_PARAMETER;
1744
1745 if (RT_SUCCESS(rc))
1746 {
1747 LogRel2(("Audio: Opened file '%s'\n", pFile->szName));
1748 }
1749 else
1750 LogRel(("Audio: Failed opening file '%s', rc=%Rrc\n", pFile->szName, rc));
1751
1752 return rc;
1753}
1754
1755/**
1756 * Closes an audio file.
1757 *
1758 * @returns IPRT status code.
1759 * @param pFile Audio file handle to close.
1760 */
1761int DrvAudioHlpFileClose(PPDMAUDIOFILE pFile)
1762{
1763 if (!pFile)
1764 return VINF_SUCCESS;
1765
1766 size_t cbSize = DrvAudioHlpFileGetDataSize(pFile);
1767
1768 int rc = VINF_SUCCESS;
1769
1770 if (pFile->enmType == PDMAUDIOFILETYPE_RAW)
1771 {
1772 if (RTFileIsValid(pFile->hFile))
1773 rc = RTFileClose(pFile->hFile);
1774 }
1775 else if (pFile->enmType == PDMAUDIOFILETYPE_WAV)
1776 {
1777 if (RTFileIsValid(pFile->hFile))
1778 {
1779 PAUDIOWAVFILEDATA pData = (PAUDIOWAVFILEDATA)pFile->pvData;
1780 if (pData) /* The .WAV file data only is valid when a file actually has been created. */
1781 {
1782 /* Update the header with the current data size. */
1783 RTFileWriteAt(pFile->hFile, 0, &pData->Hdr, sizeof(pData->Hdr), NULL);
1784 }
1785
1786 rc = RTFileClose(pFile->hFile);
1787 }
1788
1789 if (pFile->pvData)
1790 {
1791 RTMemFree(pFile->pvData);
1792 pFile->pvData = NULL;
1793 }
1794 }
1795 else
1796 AssertFailedStmt(rc = VERR_NOT_IMPLEMENTED);
1797
1798 if ( RT_SUCCESS(rc)
1799 && !cbSize
1800 && !(pFile->fFlags & PDMAUDIOFILE_FLAGS_KEEP_IF_EMPTY))
1801 {
1802 rc = DrvAudioHlpFileDelete(pFile);
1803 }
1804
1805 pFile->cbData = 0;
1806
1807 if (RT_SUCCESS(rc))
1808 {
1809 pFile->hFile = NIL_RTFILE;
1810 LogRel2(("Audio: Closed file '%s' (%zu bytes)\n", pFile->szName, cbSize));
1811 }
1812 else
1813 LogRel(("Audio: Failed closing file '%s', rc=%Rrc\n", pFile->szName, rc));
1814
1815 return rc;
1816}
1817
1818/**
1819 * Deletes an audio file.
1820 *
1821 * @returns IPRT status code.
1822 * @param pFile Audio file handle to delete.
1823 */
1824int DrvAudioHlpFileDelete(PPDMAUDIOFILE pFile)
1825{
1826 AssertPtrReturn(pFile, VERR_INVALID_POINTER);
1827
1828 int rc = RTFileDelete(pFile->szName);
1829 if (RT_SUCCESS(rc))
1830 {
1831 LogRel2(("Audio: Deleted file '%s'\n", pFile->szName));
1832 }
1833 else if (rc == VERR_FILE_NOT_FOUND) /* Don't bitch if the file is not around (anymore). */
1834 rc = VINF_SUCCESS;
1835
1836 if (RT_FAILURE(rc))
1837 LogRel(("Audio: Failed deleting file '%s', rc=%Rrc\n", pFile->szName, rc));
1838
1839 return rc;
1840}
1841
1842/**
1843 * Returns the raw audio data size of an audio file.
1844 *
1845 * Note: This does *not* include file headers and other data which does
1846 * not belong to the actual PCM audio data.
1847 *
1848 * @returns Size (in bytes) of the raw PCM audio data.
1849 * @param pFile Audio file handle to retrieve the audio data size for.
1850 */
1851size_t DrvAudioHlpFileGetDataSize(PPDMAUDIOFILE pFile)
1852{
1853 AssertPtrReturn(pFile, 0);
1854
1855 size_t cbSize = 0;
1856
1857 if (pFile->enmType == PDMAUDIOFILETYPE_RAW)
1858 {
1859 cbSize = RTFileTell(pFile->hFile);
1860 }
1861 else if (pFile->enmType == PDMAUDIOFILETYPE_WAV)
1862 {
1863 PAUDIOWAVFILEDATA pData = (PAUDIOWAVFILEDATA)pFile->pvData;
1864 if (pData) /* The .WAV file data only is valid when a file actually has been created. */
1865 cbSize = pData->Hdr.u32Size2;
1866 }
1867
1868 return cbSize;
1869}
1870
1871/**
1872 * Returns whether the given audio file is open and in use or not.
1873 *
1874 * @return bool True if open, false if not.
1875 * @param pFile Audio file handle to check open status for.
1876 */
1877bool DrvAudioHlpFileIsOpen(PPDMAUDIOFILE pFile)
1878{
1879 if (!pFile)
1880 return false;
1881
1882 return RTFileIsValid(pFile->hFile);
1883}
1884
1885/**
1886 * Write PCM data to a wave (.WAV) file.
1887 *
1888 * @returns IPRT status code.
1889 * @param pFile Audio file handle to write PCM data to.
1890 * @param pvBuf Audio data to write.
1891 * @param cbBuf Size (in bytes) of audio data to write.
1892 * @param fFlags Additional write flags. Not being used at the moment and must be 0.
1893 */
1894int DrvAudioHlpFileWrite(PPDMAUDIOFILE pFile, const void *pvBuf, size_t cbBuf, uint32_t fFlags)
1895{
1896 AssertPtrReturn(pFile, VERR_INVALID_POINTER);
1897 AssertPtrReturn(pvBuf, VERR_INVALID_POINTER);
1898
1899 AssertReturn(fFlags == 0, VERR_INVALID_PARAMETER); /** @todo fFlags are currently not implemented. */
1900
1901 if (!cbBuf)
1902 return VINF_SUCCESS;
1903
1904 AssertReturn(RTFileIsValid(pFile->hFile), VERR_WRONG_ORDER);
1905
1906 int rc;
1907
1908 if (pFile->enmType == PDMAUDIOFILETYPE_RAW)
1909 {
1910 rc = RTFileWrite(pFile->hFile, pvBuf, cbBuf, NULL);
1911 }
1912 else if (pFile->enmType == PDMAUDIOFILETYPE_WAV)
1913 {
1914 PAUDIOWAVFILEDATA pData = (PAUDIOWAVFILEDATA)pFile->pvData;
1915 AssertPtr(pData);
1916
1917 rc = RTFileWrite(pFile->hFile, pvBuf, cbBuf, NULL);
1918 if (RT_SUCCESS(rc))
1919 {
1920 pData->Hdr.u32Size += (uint32_t)cbBuf;
1921 pData->Hdr.u32Size2 += (uint32_t)cbBuf;
1922 }
1923 }
1924 else
1925 rc = VERR_NOT_SUPPORTED;
1926
1927 return rc;
1928}
1929
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use