Changeset 70496 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jan 9, 2018 4:09:23 PM (7 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/Makefile.kmk
r69783 r70496 5 5 6 6 # 7 # Copyright (C) 2004-201 7Oracle Corporation7 # Copyright (C) 2004-2018 Oracle Corporation 8 8 # 9 9 # This file is part of VirtualBox Open Source Edition (OSE), as … … 347 347 $(if $(VBOX_WITH_AUDIO_VIDEOREC),VBOX_WITH_AUDIO_VIDEOREC,) \ 348 348 $(if $(VBOX_WITH_VIDEOREC),VBOX_WITH_VIDEOREC,) \ 349 $(if $(VBOX_WITH_ VRDE_AUDIO),VBOX_WITH_VRDE_AUDIO,) \349 $(if $(VBOX_WITH_AUDIO_VRDE),VBOX_WITH_AUDIO_VRDE,) \ 350 350 $(if $(VBOX_WITH_E1000),VBOX_WITH_E1000,) \ 351 351 $(if $(VBOX_WITH_VIRTIO),VBOX_WITH_VIRTIO,) \ … … 747 747 $(if $(VBOX_WITH_AUDIO_VIDEOREC),VBOX_WITH_AUDIO_VIDEOREC,) \ 748 748 $(if $(VBOX_WITH_VIDEOREC),VBOX_WITH_VIDEOREC,) \ 749 $(if $(VBOX_WITH_ VRDE_AUDIO),VBOX_WITH_VRDE_AUDIO,) \749 $(if $(VBOX_WITH_AUDIO_VRDE),VBOX_WITH_AUDIO_VRDE,) \ 750 750 $(if $(VBOX_WITH_E1000),VBOX_WITH_E1000,) \ 751 751 $(if $(VBOX_WITH_VIRTIO),VBOX_WITH_VIRTIO,) \ … … 912 912 ../Devices/Audio/AudioMixBuffer.cpp \ 913 913 ../Devices/Audio/DrvAudioCommon.cpp \ 914 $(if $(VBOX_WITH_ VRDE_AUDIO),src-client/DrvAudioVRDE.cpp,) \914 $(if $(VBOX_WITH_AUDIO_VRDE),src-client/DrvAudioVRDE.cpp,) \ 915 915 $(if $(VBOX_WITH_AUDIO_VIDEOREC),src-client/DrvAudioVideoRec.cpp,) 916 916 -
trunk/src/VBox/Main/include/ConsoleImpl.h
r70322 r70496 5 5 6 6 /* 7 * Copyright (C) 2005-201 7Oracle Corporation7 * Copyright (C) 2005-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 135 135 Display *i_getDisplay() const { return mDisplay; } 136 136 MachineDebugger *i_getMachineDebugger() const { return mDebugger; } 137 #ifdef VBOX_WITH_ VRDE_AUDIO137 #ifdef VBOX_WITH_AUDIO_VRDE 138 138 AudioVRDE *i_getAudioVRDE() const { return mAudioVRDE; } 139 139 #endif -
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r70322 r70496 5 5 6 6 /* 7 * Copyright (C) 2005-201 7Oracle Corporation7 * Copyright (C) 2005-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 59 59 #include "RemoteUSBDeviceImpl.h" 60 60 #include "SharedFolderImpl.h" 61 #ifdef VBOX_WITH_ VRDE_AUDIO61 #ifdef VBOX_WITH_AUDIO_VRDE 62 62 # include "DrvAudioVRDE.h" 63 63 #endif … … 585 585 meAttachmentType[slot] = NetworkAttachmentType_Null; 586 586 587 #ifdef VBOX_WITH_ VRDE_AUDIO587 #ifdef VBOX_WITH_AUDIO_VRDE 588 588 unconst(mAudioVRDE) = new AudioVRDE(this); 589 589 AssertReturn(mAudioVRDE, E_FAIL); … … 729 729 #endif 730 730 731 #ifdef VBOX_WITH_ VRDE_AUDIO731 #ifdef VBOX_WITH_AUDIO_VRDE 732 732 if (mAudioVRDE) 733 733 { … … 1439 1439 } 1440 1440 1441 #ifdef VBOX_WITH_ VRDE_AUDIO1441 #ifdef VBOX_WITH_AUDIO_VRDE 1442 1442 if (fu32Intercepted & VRDE_CLIENT_INTERCEPT_AUDIO) 1443 1443 { … … 1477 1477 LogFlowFunc(("u32ClientId=%RU32\n", u32ClientId)); 1478 1478 1479 #ifdef VBOX_WITH_ VRDE_AUDIO1479 #ifdef VBOX_WITH_AUDIO_VRDE 1480 1480 if (mAudioVRDE) 1481 1481 mAudioVRDE->onVRDEControl(true /* fEnable */, 0 /* uFlags */); -
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r70238 r70496 10 10 11 11 /* 12 * Copyright (C) 2006-201 7Oracle Corporation12 * Copyright (C) 2006-2018 Oracle Corporation 13 13 * 14 14 * This file is part of VirtualBox Open Source Edition (OSE), as … … 2963 2963 InsertConfigString(pLunL1, "Driver", strAudioDriver.c_str()); 2964 2964 2965 #ifdef VBOX_WITH_ VRDE_AUDIO2965 #ifdef VBOX_WITH_AUDIO_VRDE 2966 2966 /* 2967 2967 * The VRDE audio backend driver. … … 2984 2984 InsertConfigInteger(pCfg, "Object", (uintptr_t)mAudioVRDE); 2985 2985 InsertConfigInteger(pCfg, "ObjectVRDPServer", (uintptr_t)mConsoleVRDPServer); 2986 #endif /* VBOX_WITH_ VRDE_AUDIO*/2986 #endif /* VBOX_WITH_AUDIO_VRDE */ 2987 2987 2988 2988 #ifdef VBOX_WITH_AUDIO_VIDEOREC -
trunk/src/VBox/Main/src-client/ConsoleVRDPServer.cpp
r67914 r70496 5 5 6 6 /* 7 * Copyright (C) 2006-201 7Oracle Corporation7 * Copyright (C) 2006-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 24 24 #include "KeyboardImpl.h" 25 25 #include "MouseImpl.h" 26 #ifdef VBOX_WITH_ VRDE_AUDIO26 #ifdef VBOX_WITH_AUDIO_VRDE 27 27 #include "DrvAudioVRDE.h" 28 28 #endif … … 961 961 ASMAtomicWriteU32(&pServer->mu32AudioInputClientId, 0); 962 962 963 #ifdef VBOX_WITH_ VRDE_AUDIO963 #ifdef VBOX_WITH_AUDIO_VRDE 964 964 AudioVRDE *pVRDE = pServer->mConsole->i_getAudioVRDE(); 965 965 if (pVRDE) … … 1024 1024 LogFunc(("Intercepting audio input by client %RU32\n", u32ClientId)); 1025 1025 1026 #ifdef VBOX_WITH_ VRDE_AUDIO1026 #ifdef VBOX_WITH_AUDIO_VRDE 1027 1027 AudioVRDE *pVRDE = pServer->mConsole->i_getAudioVRDE(); 1028 1028 if (pVRDE) … … 1299 1299 AssertPtrReturnVoid(pServer); 1300 1300 1301 #ifdef VBOX_WITH_ VRDE_AUDIO1301 #ifdef VBOX_WITH_AUDIO_VRDE 1302 1302 AudioVRDE *pVRDE = pServer->mConsole->i_getAudioVRDE(); 1303 1303 if (!pVRDE) /* Nothing to do, bail out early. */ … … 1325 1325 #else 1326 1326 RT_NOREF(pvCtx, u32Event, pvData, cbData); 1327 #endif /* VBOX_WITH_ VRDE_AUDIO*/1327 #endif /* VBOX_WITH_AUDIO_VRDE */ 1328 1328 } 1329 1329 -
trunk/src/VBox/Main/src-client/VBoxDriversRegister.cpp
r67914 r70496 6 6 7 7 /* 8 * Copyright (C) 2006-201 7Oracle Corporation8 * Copyright (C) 2006-2018 Oracle Corporation 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 28 28 #include "DisplayImpl.h" 29 29 #include "VMMDev.h" 30 #ifdef VBOX_WITH_ VRDE_AUDIO30 #ifdef VBOX_WITH_AUDIO_VRDE 31 31 # include "DrvAudioVRDE.h" 32 32 #endif … … 75 75 if (RT_FAILURE(rc)) 76 76 return rc; 77 #ifdef VBOX_WITH_ VRDE_AUDIO77 #ifdef VBOX_WITH_AUDIO_VRDE 78 78 rc = pCallbacks->pfnRegister(pCallbacks, &AudioVRDE::DrvReg); 79 79 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.