VirtualBox

Ignore:
Timestamp:
May 11, 2010 3:13:50 PM (15 years ago)
Author:
vboxsync
Message:

Implemented VBoxManage controlvm vrdpvideochannelquality

Location:
trunk/src/VBox/Frontends/VBoxManage
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageControlVM.cpp

    r28800 r29364  
    549549            }
    550550        }
     551        else if (!strcmp(a->argv[1], "vrdpvideochannelquality"))
     552        {
     553            if (a->argc <= 1 + 1)
     554            {
     555                errorArgument("Missing argument to '%s'", a->argv[1]);
     556                rc = E_FAIL;
     557                break;
     558            }
     559            /* get the corresponding VRDP server */
     560            ComPtr<IVRDPServer> vrdpServer;
     561            sessionMachine->COMGETTER(VRDPServer)(vrdpServer.asOutParam());
     562            ASSERT(vrdpServer);
     563            if (vrdpServer)
     564            {
     565                unsigned n = parseNum(a->argv[2], 100, "VRDP video channel quality in percent");
     566
     567                CHECK_ERROR(vrdpServer, COMSETTER(VideoChannelQuality)(n));
     568            }
     569        }
    551570#endif /* VBOX_WITH_VRDP */
    552571        else if (   !strcmp(a->argv[1], "usbattach")
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp

    r29218 r29364  
    371371        {
    372372            RTPrintf("                            vrdp on|off |\n");
    373             RTPrintf("                            vrdpport default|<ports> |\n");
     373            RTPrintf("                            vrdpport default|<ports> |\n"
     374                     "                            vrdpvideochannelquality <percent>\n");
    374375        }
    375376        RTPrintf("                            setvideomodehint <xres> <yres> <bpp> [display] |\n"
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette