Changeset 61167 in vbox for trunk/src/VBox/Devices/Audio/testcase
- Timestamp:
- May 24, 2016 3:48:51 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107453
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/testcase/tstAudioMixBuffer.cpp
r60925 r61167 53 53 PDMPCMPROPS props; 54 54 55 int rc = DrvAudio StreamCfgToProps(&config, &props);55 int rc = DrvAudioHlpStreamCfgToProps(&config, &props); 56 56 AssertRC(rc); 57 57 … … 155 155 PDMPCMPROPS props; 156 156 157 int rc = DrvAudio StreamCfgToProps(&cfg_p, &props);157 int rc = DrvAudioHlpStreamCfgToProps(&cfg_p, &props); 158 158 AssertRC(rc); 159 159 … … 172 172 }; 173 173 174 rc = DrvAudio StreamCfgToProps(&cfg_c1, &props);174 rc = DrvAudioHlpStreamCfgToProps(&cfg_c1, &props); 175 175 AssertRC(rc); 176 176 … … 190 190 }; 191 191 192 rc = DrvAudio StreamCfgToProps(&cfg_c2, &props);192 rc = DrvAudioHlpStreamCfgToProps(&cfg_c2, &props); 193 193 AssertRC(rc); 194 194 … … 275 275 }; 276 276 277 int rc = DrvAudio StreamCfgToProps(&cfg_p, &props);277 int rc = DrvAudioHlpStreamCfgToProps(&cfg_p, &props); 278 278 AssertRC(rc); 279 279 … … 299 299 }; 300 300 301 rc = DrvAudio StreamCfgToProps(&cfg_c, &props);301 rc = DrvAudioHlpStreamCfgToProps(&cfg_c, &props); 302 302 AssertRC(rc); 303 303 … … 385 385 }; 386 386 387 int rc = DrvAudio StreamCfgToProps(&cfg_p, &props);387 int rc = DrvAudioHlpStreamCfgToProps(&cfg_p, &props); 388 388 AssertRC(rc); 389 389 … … 402 402 }; 403 403 404 rc = DrvAudio StreamCfgToProps(&cfg_c, &props);404 rc = DrvAudioHlpStreamCfgToProps(&cfg_c, &props); 405 405 AssertRC(rc); 406 406 … … 489 489 }; 490 490 491 int rc = DrvAudio StreamCfgToProps(&cfg, &props);491 int rc = DrvAudioHlpStreamCfgToProps(&cfg, &props); 492 492 AssertRC(rc); 493 493
Note:
See TracChangeset
for help on using the changeset viewer.