Changeset 91194 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Sep 10, 2021 10:11:03 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146849
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioTest.h
r91178 r91194 72 72 73 73 /** 74 * Structure for a common test parameters header. 75 */ 76 typedef struct AUDIOTESTPARMSHDR 77 { 78 /** Index in some defined sequence this test has. Can be freely used / assigned 79 * and depends on the actual implementation. 80 * Set to UINT32_MAX if not being used. */ 81 uint32_t idxSeq; 82 /** Time of the caller when this test was being created. */ 83 RTTIME tsCreated; 84 } AUDIOTESTPARMSHDR; 85 /** Pointer to an audio test tone. */ 86 typedef AUDIOTESTPARMSHDR *PAUDIOTESTPARMSHDR; 87 88 /** 74 89 * Structure for handling audio test tone parameters. 75 90 */ 76 91 typedef struct AUDIOTESTTONEPARMS 77 92 { 93 /** Common test header. */ 94 AUDIOTESTPARMSHDR Hdr; 78 95 /** The PCM properties. */ 79 PDMAUDIOPCMPROPS Props;96 PDMAUDIOPCMPROPS Props; 80 97 /** Tone frequency (in Hz) to use. 81 98 * Will be later converted to a double value. */ 82 double dbFreqHz;99 double dbFreqHz; 83 100 /** Prequel (in ms) to play silence. Optional and can be set to 0. */ 84 RTMSINTERVAL msPrequel;101 RTMSINTERVAL msPrequel; 85 102 /** Duration (in ms) to play the test tone. */ 86 RTMSINTERVAL msDuration;103 RTMSINTERVAL msDuration; 87 104 /** Sequel (in ms) to play silence. Optional and can be set to 0. */ 88 RTMSINTERVAL msSequel;105 RTMSINTERVAL msSequel; 89 106 /** Volume (in percent, 0-100) to use. 90 107 * If set to 0, the tone is muted (i.e. silent). */ 91 uint8_t uVolumePercent;108 uint8_t uVolumePercent; 92 109 } AUDIOTESTTONEPARMS; 93 110 /** Pointer to audio test tone parameters. */
Note:
See TracChangeset
for help on using the changeset viewer.