Changeset 95750 in vbox
- Timestamp:
- Jul 20, 2022 11:35:11 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 152458
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r95702 r95750 838 838 VBOX_WITH_LIBVPX = 1 839 839 # Enables audio support for recording (depends on VBOX_WITH_RECORDING). 840 VBOX_WITH_AUDIO_RECORDING = 1840 VBOX_WITH_AUDIO_RECORDING = 841 841 # Enables libopus (Opus), required for encoding audio into the recorded data. 842 VBOX_WITH_LIBOPUS = 1842 VBOX_WITH_LIBOPUS = 843 843 # Enable SEE (+ AVX) optimizations for Opus. 844 844 VBOX_WITH_OPUS_SSE = 1 -
trunk/src/VBox/Main/src-client/RecordingStream.cpp
r95665 r95750 416 416 } 417 417 } 418 #endif 418 #endif /* VBOX_WITH_LIBVPX */ 419 419 pBlocks->List.pop_front(); 420 420 delete pBlock; … … 488 488 LogFunc(("Common blocks: %zu\n", mapBlocksCommon.size())); 489 489 } 490 #endif 490 #else 491 RT_NOREF(mapBlocksCommon); 492 #endif /* VBOX_WITH_AUDIO_RECORDING */ 491 493 492 494 unlock();
Note:
See TracChangeset
for help on using the changeset viewer.