Changeset 52312 in vbox for trunk/src/VBox/Main/xml
- Timestamp:
- Aug 7, 2014 12:54:38 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95429
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r51476 r52312 1920 1920 ulVideoCaptureRate(512), 1921 1921 ulVideoCaptureFPS(25), 1922 ulVideoCaptureMaxTime(0), 1923 ulVideoCaptureMaxSize(0), 1922 1924 fVideoCaptureEnabled(false), 1923 1925 u64VideoCaptureScreens(UINT64_C(0xffffffffffffffff)), … … 1998 2000 && (ulVideoCaptureRate == h.ulVideoCaptureRate) 1999 2001 && (ulVideoCaptureFPS == h.ulVideoCaptureFPS) 2002 && (ulVideoCaptureMaxTime == h.ulVideoCaptureMaxTime) 2003 && (ulVideoCaptureMaxSize == h.ulVideoCaptureMaxTime) 2000 2004 && (firmwareType == h.firmwareType) 2001 2005 && (pointingHIDType == h.pointingHIDType) … … 2937 2941 pelmHwChild->getAttributeValue("rate", hw.ulVideoCaptureRate); 2938 2942 pelmHwChild->getAttributeValue("fps", hw.ulVideoCaptureFPS); 2943 pelmHwChild->getAttributeValue("maxTime", hw.ulVideoCaptureMaxTime); 2944 pelmHwChild->getAttributeValue("maxSize", hw.ulVideoCaptureMaxSize); 2939 2945 } 2940 2946 else if (pelmHwChild->nameEquals("RemoteDisplay")) … … 4227 4233 pelmVideoCapture->setAttribute("rate", hw.ulVideoCaptureRate); 4228 4234 pelmVideoCapture->setAttribute("fps", hw.ulVideoCaptureFPS); 4235 pelmVideoCapture->setAttribute("maxTime", hw.ulVideoCaptureMaxTime); 4236 pelmVideoCapture->setAttribute("maxSize", hw.ulVideoCaptureMaxSize); 4229 4237 } 4230 4238
Note:
See TracChangeset
for help on using the changeset viewer.