Changeset 45838 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 30, 2013 1:54:20 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85412
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r45731 r45838 373 373 " [--vcpwidth <width>]\n" 374 374 " [--vcpheight <height>]\n" 375 " [--vcprate <rate>]\n" 375 376 #endif 376 377 " [--defaultfrontend default|<name]\n" -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r45835 r45838 2308 2308 ULONG Height; 2309 2309 CHECK_ERROR_RET(machine, COMGETTER(VideoCaptureHeight)(&Height), rc); 2310 ULONG Rate; 2311 CHECK_ERROR_RET(machine, COMGETTER(VideoCaptureRate)(&Rate), rc); 2310 2312 Bstr File; 2311 2313 CHECK_ERROR_RET(machine, COMGETTER(VideoCaptureFile)(File.asOutParam()), rc); … … 2316 2318 RTPrintf("VideoCaptureFile=\"%ls\"\n", File.raw()); 2317 2319 RTPrintf("VideoCaptureHeight=%u\n", (unsigned)Height); 2320 RTPrintf("VideoCaptureRate=%u\n", (unsigned)Rate); 2318 2321 } 2319 2322 else … … 2322 2325 RTPrintf("Capture file: %ls\n", File.raw()); 2323 2326 RTPrintf("Capture dimensions: %ux%u\n", Width, Height); 2327 RTPrintf("Capture rate: %ukbps\n", Rate); 2324 2328 RTPrintf("\n"); 2325 2329 } -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp
r45674 r45838 197 197 MODIFYVM_VCP_WIDTH, 198 198 MODIFYVM_VCP_HEIGHT, 199 MODIFYVM_VCP_RATE, 199 200 #endif 200 201 MODIFYVM_CHIPSET, … … 341 342 { "--vcpwidth", MODIFYVM_VCP_WIDTH, RTGETOPT_REQ_UINT32 }, 342 343 { "--vcpheight", MODIFYVM_VCP_HEIGHT, RTGETOPT_REQ_UINT32 }, 344 { "--vcprate", MODIFYVM_VCP_RATE, RTGETOPT_REQ_UINT32 }, 343 345 #endif 344 346 { "--autostart-enabled", MODIFYVM_AUTOSTART_ENABLED, RTGETOPT_REQ_BOOL_ONOFF }, … … 2445 2447 break; 2446 2448 } 2449 case MODIFYVM_VCP_RATE: 2450 { 2451 CHECK_ERROR(machine, COMSETTER(VideoCaptureRate)(ValueUnion.u32)); 2452 break; 2453 } 2447 2454 #endif 2448 2455 case MODIFYVM_AUTOSTART_ENABLED:
Note:
See TracChangeset
for help on using the changeset viewer.