Changeset 96285 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Aug 18, 2022 8:01:23 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 153099
- Location:
- trunk/src/VBox/Main/src-server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/RecordingScreenSettingsImpl.cpp
r96175 r96285 583 583 return setError(E_INVALIDARG, tr("Cannot change audio codec while recording is enabled")); 584 584 585 if (aCodec != RecordingAudioCodec_O pus)585 if (aCodec != RecordingAudioCodec_OggVorbis) 586 586 return setError(E_INVALIDARG, tr("Audio codec not supported")); 587 587 … … 1232 1232 return ASMAtomicReadS32(&m->cRefs); 1233 1233 } 1234 -
trunk/src/VBox/Main/src-server/SystemPropertiesImpl.cpp
r96143 r96285 1602 1602 RecordingAudioCodec_WavPCM, 1603 1603 #endif 1604 #ifdef VBOX_WITH_LIBOPUS1605 RecordingAudioCodec_Opus,1606 #endif1607 1604 #ifdef VBOX_WITH_LIBVORBIS 1608 1605 RecordingAudioCodec_OggVorbis, … … 2398 2395 #endif 2399 2396 } 2400
Note:
See TracChangeset
for help on using the changeset viewer.