Changeset 45731 in vbox
- Timestamp:
- Apr 25, 2013 2:33:35 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85288
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r45612 r45731 2750 2750 endif 2751 2751 2752 #VPXLIB2753 2752 SDK_VBOX_VPX = . 2754 2753 if1of ($(KBUILD_TARGET), darwin linux os2 solaris) … … 2757 2756 $(PATH_ROOT)/src/libs/libvpx/vp8 \ 2758 2757 $(PATH_ROOT)/src/libs/libvpx/vpx_mem 2759 SDK_VBOX_VPX_LIBS ?=$(PATH_STAGE_BIN)/VBox-libvpx.so2760 2761 SDK_VBOX_VPX_LIBS 2762 endif 2763 2764 SDK_VBOX_BOOST 2765 SDK_VBOX_BOOST_DEFS 2766 SDK_VBOX_BOOST_INCS 2758 SDK_VBOX_VPX_LIBS ?= $(PATH_STAGE_BIN)/VBox-libvpx.so 2759 else 2760 SDK_VBOX_VPX_LIBS ?= $(PATH_STAGE_BIN)/VBox-libvpx$(SUFF_DLL) 2761 endif 2762 2763 SDK_VBOX_BOOST = . 2764 SDK_VBOX_BOOST_DEFS ?= BOOST_DISABLE_ASSERTS 2765 SDK_VBOX_BOOST_INCS ?= $(PATH_ROOT)/src/libs/boost-1.37.0 2767 2766 2768 2767 # -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r45674 r45731 367 367 " [--autostop-type disabled|savestate|poweroff|\n" 368 368 " acpishutdown]\n" 369 #endif 370 #ifdef VBOX_WITH_VPX 371 " [--vcpenabled on|off]\n" 372 " [--vcpfile <filename>]\n" 373 " [--vcpwidth <width>]\n" 374 " [--vcpheight <height>]\n" 369 375 #endif 370 376 " [--defaultfrontend default|<name]\n" -
trunk/src/VBox/Main/Makefile.kmk
r45518 r45731 566 566 VBoxC_DEFS.win.amd64 += _WIN32_WINNT=0x0510 567 567 568 VBoxC_SDKS = VBOX_LIBPNG VBOX_ZLIB 568 569 ifdef VBOX_WITH_VPX 569 VBoxC_SDKS = VBOX_LIBPNG VBOX_ZLIB VBOX_VPX 570 else 571 VBoxC_SDKS = VBOX_LIBPNG VBOX_ZLIB 570 VBoxC_SDKS += VBOX_VPX 572 571 endif 573 572 -
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r45674 r45731 496 496 BSTR strVideoCaptureFile; 497 497 mParent->machine()->COMGETTER(VideoCaptureFile)(&strVideoCaptureFile); 498 LogFlow(("VidoeRecording VPX enabled\n"));499 498 if (VideoRecContextInit(mpVideoRecContext, strVideoCaptureFile, 500 499 ulVideoCaptureHorzRes, ulVideoCaptureVertRes)) 501 500 { 502 LogFlow(("Failed to initialize video recording context \n"));501 LogFlow(("Failed to initialize video recording context!\n")); 503 502 return E_FAIL; 504 503 } 504 LogFlow(("Vidoe recording VPX enabled!\n")); 505 505 } 506 506 #endif -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r45720 r45731 8775 8775 mHWData->mVideoCaptureWidth = data.ulVideoCaptureHorzRes; 8776 8776 mHWData->mVideoCaptureHeight = data.ulVideoCaptureVertRes; 8777 mHWData->mVideoCaptureEnabled = false; /* @todo r=klaus restore to data.fVideoCaptureEnabled */8777 mHWData->mVideoCaptureEnabled = data.fVideoCaptureEnabled; 8778 8778 mHWData->mVideoCaptureFile = data.strVideoCaptureFile; 8779 8779 mHWData->mFirmwareType = data.firmwareType; -
trunk/src/VBox/Main/xml/Settings.cpp
r45674 r45731 5082 5082 { 5083 5083 // VirtualBox 4.1 adds PCI passthrough. 5084 if (hardwareMachine.pciAttachments.size()) 5084 if ( hardwareMachine.pciAttachments.size() 5085 || hardwareMachine.fVideoCaptureEnabled) 5085 5086 m->sv = SettingsVersion_v1_12; 5086 5087 }
Note:
See TracChangeset
for help on using the changeset viewer.