Changeset 85655 in vbox for trunk/src/VBox
- Timestamp:
- Aug 10, 2020 8:02:03 AM (4 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostCoreAudio.cpp
r85199 r85655 129 129 } COREAUDIOUNIT, *PCOREAUDIOUNIT; 130 130 131 132 DECLHIDDEN(int) coreAudioInputPermissionCheck(void); 131 133 132 134 /******************************************************************************* … … 1578 1580 1579 1581 int rc = VINF_SUCCESS; 1582 1583 if (fIn) 1584 { 1585 rc = coreAudioInputPermissionCheck(); 1586 if (RT_FAILURE(rc)) 1587 return rc; 1588 } 1580 1589 1581 1590 /* Create the recording device's out format based on our required audio settings. */ -
trunk/src/VBox/Devices/Makefile.kmk
r85507 r85655 245 245 -framework Carbon \ 246 246 -framework DiskArbitration \ 247 -framework SystemConfiguration 247 -framework SystemConfiguration \ 248 -framework AVFoundation \ 249 -framework Foundation 248 250 VBoxDD_LDFLAGS.linux = $(VBOX_GCC_NO_UNDEFINED) 249 251 … … 623 625 ifeq ($(KBUILD_TARGET),darwin) 624 626 VBoxDD_SOURCES += \ 625 Audio/DrvHostCoreAudio.cpp 627 Audio/DrvHostCoreAudio.cpp \ 628 Audio/DrvHostCoreAudio-auth.mm 626 629 endif 627 630
Note:
See TracChangeset
for help on using the changeset viewer.