Changeset 62117 in vbox for trunk/include
- Timestamp:
- Jul 7, 2016 4:16:01 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108603
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmaudioifs.h
r61888 r62117 311 311 /** Sample frequency in Hertz (Hz). */ 312 312 uint32_t uHz; 313 /** B andwidth (bytes/s). */314 uint32_t cb PerSec;313 /** Bitrate (in bytes/s). */ 314 uint32_t cbBitrate; 315 315 /** Whether the endianness is swapped or not. */ 316 316 bool fSwapEndian; … … 524 524 typedef enum PDMAUDIOBACKENDSTS 525 525 { 526 /** Unknown/invalid status. */ 526 527 PDMAUDIOBACKENDSTS_UNKNOWN = 0, 527 PDMAUDIOBACKENDSTS_INIT, 528 /** The backend is in its initialization phase. 529 * Not all backends support this status. */ 530 PDMAUDIOBACKENDSTS_INITIALIZING, 531 /** The backend has stopped its operation. */ 532 PDMAUDIOBACKENDSTS_STOPPED, 533 /** The backend is up and running. */ 528 534 PDMAUDIOBACKENDSTS_RUNNING, 529 PDMAUDIOBACKENDSTS_SHUTDOWN 535 /** The backend ran into an error and is unable to recover. 536 * A manual re-initialization might help. */ 537 PDMAUDIOBACKENDSTS_ERROR 530 538 } PDMAUDIOBACKENDSTS; 531 539
Note:
See TracChangeset
for help on using the changeset viewer.