Changeset 88030 in vbox
- Timestamp:
- Mar 8, 2021 11:18:23 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DrvAudioRec.cpp
r88028 r88030 2 2 /** @file 3 3 * Video recording audio backend for Main. 4 * 5 * This driver is part of Main and is responsible for providing audio 6 * data to Main's video capturing feature. 7 * 8 * The driver itself implements a PDM host audio backend, which in turn 9 * provides the driver with the required audio data and audio events. 10 * 11 * For now there is support for the following destinations (called "sinks"): 12 * 13 * - Direct writing of .webm files to the host. 14 * - Communicating with Main via the Console object to send the encoded audio data to. 15 * The Console object in turn then will route the data to the Display / video capturing interface then. 4 16 */ 5 17 … … 63 75 * https://datatracker.ietf.org/ipr/1526/ 64 76 * 65 */66 67 /**68 * This driver is part of Main and is responsible for providing audio69 * data to Main's video capturing feature.70 *71 * The driver itself implements a PDM host audio backend, which in turn72 * provides the driver with the required audio data and audio events.73 *74 * For now there is support for the following destinations (called "sinks"):75 *76 * - Direct writing of .webm files to the host.77 * - Communicating with Main via the Console object to send the encoded audio data to.78 * The Console object in turn then will route the data to the Display / video capturing interface then.79 77 */ 80 78
Note:
See TracChangeset
for help on using the changeset viewer.