Changeset 88718 in vbox for trunk/src/VBox/Main
- Timestamp:
- Apr 26, 2021 9:21:24 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144036
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DrvAudioRec.cpp
r88534 r88718 246 246 typedef struct AVRECSTREAM 247 247 { 248 /** Common part. */ 249 PDMAUDIOBACKENDSTREAM Core; 248 250 /** The stream's acquired configuration. */ 249 PDMAUDIOSTREAMCFG Cfg;251 PDMAUDIOSTREAMCFG Cfg; 250 252 /** (Audio) frame buffer. */ 251 PRTCIRCBUF pCircBuf;253 PRTCIRCBUF pCircBuf; 252 254 /** Pointer to sink to use for writing. */ 253 PAVRECSINK pSink;255 PAVRECSINK pSink; 254 256 /** Last encoded PTS (in ms). */ 255 uint64_t uLastPTSMs;257 uint64_t uLastPTSMs; 256 258 /** Temporary buffer for the input (source) data to encode. */ 257 void *pvSrcBuf;259 void *pvSrcBuf; 258 260 /** Size (in bytes) of the temporary buffer holding the input (source) data to encode. */ 259 size_t cbSrcBuf;261 size_t cbSrcBuf; 260 262 /** Temporary buffer for the encoded output (destination) data. */ 261 void *pvDstBuf;263 void *pvDstBuf; 262 264 /** Size (in bytes) of the temporary buffer holding the encoded output (destination) data. */ 263 size_t cbDstBuf;265 size_t cbDstBuf; 264 266 } AVRECSTREAM, *PAVRECSTREAM; 265 267 -
trunk/src/VBox/Main/src-client/DrvAudioVRDE.cpp
r88534 r88718 48 48 typedef struct VRDESTREAM 49 49 { 50 /** Common part. */ 51 PDMAUDIOBACKENDSTREAM Core; 50 52 /** The stream's acquired configuration. */ 51 PDMAUDIOSTREAMCFG Cfg;53 PDMAUDIOSTREAMCFG Cfg; 52 54 union 53 55 { … … 55 57 { 56 58 /** Circular buffer for holding the recorded audio frames from the host. */ 57 PRTCIRCBUF pCircBuf;59 PRTCIRCBUF pCircBuf; 58 60 } In; 59 61 };
Note:
See TracChangeset
for help on using the changeset viewer.