Changeset 44153 in vbox for trunk/src/VBox
- Timestamp:
- Dec 18, 2012 5:32:13 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 82846
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r44091 r44153 169 169 mVideoCaptureWidth = 640; 170 170 mVideoCaptureHeight = 480; 171 mVideoCaptureEnabled = true;171 mVideoCaptureEnabled = false; 172 172 173 173 mHWVirtExEnabled = true; … … 1667 1667 } 1668 1668 1669 STDMETHODIMP Machine::COMGETTER(VideoCaptureEnabled)(BOOL * 1669 STDMETHODIMP Machine::COMGETTER(VideoCaptureEnabled)(BOOL *fEnabled) 1670 1670 { 1671 1671 AutoCaller autoCaller(this); … … 1678 1678 } 1679 1679 1680 STDMETHODIMP Machine::COMSETTER(VideoCaptureEnabled)(BOOL 1680 STDMETHODIMP Machine::COMSETTER(VideoCaptureEnabled)(BOOL fEnabled) 1681 1681 { 1682 1682 AutoCaller autoCaller(this); … … 8527 8527 mHWData->mVideoCaptureWidth = data.ulVideoCaptureHorzRes; 8528 8528 mHWData->mVideoCaptureHeight = data.ulVideoCaptureVertRes; 8529 mHWData->mVideoCaptureEnabled = data.fVideoCaptureEnabled;8529 mHWData->mVideoCaptureEnabled = false; /* @todo r=klaus restore to data.fVideoCaptureEnabled */ 8530 8530 mHWData->mVideoCaptureFile = data.strVideoCaptureFile; 8531 8531 mHWData->mFirmwareType = data.firmwareType; … … 9737 9737 data.ulVideoCaptureHorzRes = mHWData->mVideoCaptureWidth; 9738 9738 data.ulVideoCaptureVertRes = mHWData->mVideoCaptureHeight; 9739 data.fVideoCaptureEnabled = !! 9739 data.fVideoCaptureEnabled = !!mHWData->mVideoCaptureEnabled; 9740 9740 data.strVideoCaptureFile = mHWData->mVideoCaptureFile; 9741 9741
Note:
See TracChangeset
for help on using the changeset viewer.