Changeset 88718 in vbox for trunk/src/VBox/Devices/Audio/DrvHostAudioAlsa.cpp
- Timestamp:
- Apr 26, 2021 9:21:24 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144036
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostAudioAlsa.cpp
r88672 r88718 109 109 typedef struct ALSAAUDIOSTREAM 110 110 { 111 /** Common part. */ 112 PDMAUDIOBACKENDSTREAM Core; 113 111 114 /** Handle to the ALSA PCM stream. */ 112 snd_pcm_t *hPCM;115 snd_pcm_t *hPCM; 113 116 /** Internal stream offset (for debugging). */ 114 uint64_t offInternal;117 uint64_t offInternal; 115 118 116 119 /** The stream's acquired configuration. */ 117 PDMAUDIOSTREAMCFG Cfg;120 PDMAUDIOSTREAMCFG Cfg; 118 121 /** The acquired ALSA stream config (same as Cfg). */ 119 ALSAAUDIOSTREAMCFG AlsaCfg;122 ALSAAUDIOSTREAMCFG AlsaCfg; 120 123 } ALSAAUDIOSTREAM; 121 124 /** Pointer to the ALSA host audio specific stream data. */
Note:
See TracChangeset
for help on using the changeset viewer.