Changeset 63362 in vbox for trunk/src/VBox/Devices/Audio/testcase
- Timestamp:
- Aug 12, 2016 2:21:25 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110003
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/testcase/tstAudioMixBuffer.cpp
r62981 r63362 51 51 PDMAUDIOENDIANNESS_LITTLE /* ENDIANNESS */ 52 52 }; 53 PDM PCMPROPS props;53 PDMAUDIOPCMPROPS props; 54 54 55 55 int rc = DrvAudioHlpStreamCfgToProps(&config, &props); … … 154 154 PDMAUDIOENDIANNESS_LITTLE /* ENDIANNESS */ 155 155 }; 156 PDMPCMPROPS props; 157 156 157 PDMAUDIOPCMPROPS props; 158 158 int rc = DrvAudioHlpStreamCfgToProps(&cfg_p, &props); 159 159 AssertRC(rc); … … 260 260 static int tstConversion8(RTTEST hTest) 261 261 { 262 unsigned i;263 uint32_t cBufSize = 256;264 PDM PCMPROPSprops;262 unsigned i; 263 uint32_t cBufSize = 256; 264 PDMAUDIOPCMPROPS props; 265 265 266 266 RTTestSubF(hTest, "Sample conversion (U8)"); … … 368 368 static int tstConversion16(RTTEST hTest) 369 369 { 370 unsigned i;371 uint32_t cBufSize = 256;372 PDM PCMPROPSprops;370 unsigned i; 371 uint32_t cBufSize = 256; 372 PDMAUDIOPCMPROPS props; 373 373 374 374 RTTestSubF(hTest, "Sample conversion (S16)"); … … 468 468 static int tstVolume(RTTEST hTest) 469 469 { 470 unsigned i;471 uint32_t cBufSize = 256;472 PDM PCMPROPSprops;470 unsigned i; 471 uint32_t cBufSize = 256; 472 PDMAUDIOPCMPROPS props; 473 473 474 474 RTTestSubF(hTest, "Volume control");
Note:
See TracChangeset
for help on using the changeset viewer.