Changeset 75361 in vbox for trunk/src/VBox/Main/src-client/DrvAudioRec.cpp
- Timestamp:
- Nov 9, 2018 12:56:40 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 126494
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DrvAudioRec.cpp
r75354 r75361 1088 1088 * @param Settings Capturing configuration to apply. 1089 1089 */ 1090 int AudioVideoRec::applyConfiguration(const settings::Record Settings &Settings)1090 int AudioVideoRec::applyConfiguration(const settings::RecordingSettings &Settings) 1091 1091 { 1092 1092 /** @todo Do some validation here. */ … … 1108 1108 /** @todo For now we're using the configuration of the first screen here audio-wise. */ 1109 1109 Assert(mVideoRecCfg.mapScreens.size() >= 1); 1110 const settings::Record ScreenSettings &Screen0Settings = mVideoRecCfg.mapScreens[0];1110 const settings::RecordingScreenSettings &Screen0Settings = mVideoRecCfg.mapScreens[0]; 1111 1111 1112 1112 rc = CFGMR3InsertInteger(pLunCfg, "ContainerType", (uint64_t)Screen0Settings.enmDest); 1113 1113 AssertRCReturn(rc, rc); 1114 if (Screen0Settings.enmDest == Record Destination_File)1114 if (Screen0Settings.enmDest == RecordingDestination_File) 1115 1115 { 1116 1116 rc = CFGMR3InsertString(pLunCfg, "ContainerFileName", Utf8Str(Screen0Settings.File.strName).c_str());
Note:
See TracChangeset
for help on using the changeset viewer.