Changeset 95741 in vbox for trunk/src/VBox/Main/src-server/SystemPropertiesImpl.cpp
- Timestamp:
- Jul 20, 2022 9:30:30 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 152447
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/SystemPropertiesImpl.cpp
r95395 r95741 1576 1576 } 1577 1577 1578 HRESULT SystemProperties::getSupportedRecordingFeatures(std::vector<RecordingFeature_T> &aSupportedRecordingFeatures) 1579 { 1580 #ifdef VBOX_WITH_RECORDING 1581 static const RecordingFeature_T aRecordingFeatures[] = 1582 { 1583 # ifdef VBOX_WITH_AUDIO_RECORDING 1584 RecordingFeature_Audio, 1585 # endif 1586 RecordingFeature_Video, 1587 }; 1588 aSupportedRecordingFeatures.assign(aRecordingFeatures, 1589 aRecordingFeatures + RT_ELEMENTS(aRecordingFeatures)); 1590 #else /* !VBOX_WITH_RECORDING */ 1591 aSupportedRecordingFeatures.clear(); 1592 #endif /* VBOX_WITH_RECORDING */ 1593 return S_OK; 1594 } 1595 1578 1596 HRESULT SystemProperties::getSupportedRecordingAudioCodecs(std::vector<RecordingAudioCodec_T> &aSupportedRecordingAudioCodecs) 1579 1597 {
Note:
See TracChangeset
for help on using the changeset viewer.