Changeset 64879 in vbox
- Timestamp:
- Dec 15, 2016 12:21:03 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 112285
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmaudioifs.h
r63865 r64879 326 326 327 327 /** 328 * Union for keeping an audio stream destination or source. 329 */ 330 typedef union PDMAUDIODESTSOURCE 331 { 332 /** Desired playback destination (for an output stream). */ 333 PDMAUDIOPLAYBACKDEST Dest; 334 /** Desired recording source (for an input stream). */ 335 PDMAUDIORECSOURCE Source; 336 } PDMAUDIODESTSOURCE, *PPDMAUDIODESTSOURCE; 337 338 /** 328 339 * Structure for keeping an audio stream configuration. 329 340 */ … … 334 345 /** Direction of the stream. */ 335 346 PDMAUDIODIR enmDir; 336 union 337 { 338 /** Desired playback destination (for an output stream). */ 339 PDMAUDIOPLAYBACKDEST Dest; 340 /** Desired recording source (for an input stream). */ 341 PDMAUDIORECSOURCE Source; 342 } DestSource; 347 /** Destination / source indicator, depending on enmDir. */ 348 PDMAUDIODESTSOURCE DestSource; 343 349 /** Frequency in Hertz (Hz). */ 344 350 uint32_t uHz;
Note:
See TracChangeset
for help on using the changeset viewer.