Commit 5f82572c authored by sergeyu@chromium.org's avatar sergeyu@chromium.org

Increase framerate limit in remoting host to 30fps

BUG=344675
R=jamiewalch@chromium.org

Review URL: https://codereview.chromium.org/171523003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251937 0039d316-1c4b-4281-b951-d872f2087c98
parent 7e503f9a
......@@ -16,8 +16,8 @@ namespace {
// over.
const int kStatisticsWindow = 3;
// The hard limit is 20fps or 50ms per recording cycle.
const int64 kMinimumRecordingDelay = 50;
// The hard limit is 30fps or 33ms per recording cycle.
const int64 kMinimumRecordingDelay = 33;
// Controls how much CPU time we can use for encode and capture.
// Range of this value is between 0 to 1. 0 means using 0% of of all CPUs
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment