Ssergeyu@chromium.orgLimit audio buffer size in the audio player used by the chromoting client.
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
Limit audio buffer size in the audio player used by the chromoting client. Review URL: https://chromiumcodereview.appspot.com/10914210 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156465 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Piping for audio decoding. Review URL: https://chromiumcodereview.appspot.com/10843031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149990 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Don't use base::Unretained in AudioDecodeScheduler. BUG=148510 Review URL: https://chromiumcodereview.appspot.com/10907187 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156436 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Don't use base::Unretained in AudioDecodeScheduler. BUG=148510 Review URL: https://chromiumcodereview.appspot.com/10907187 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156436 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Support for both 44.1 kHz and 48 kHz on the client. Review URL: https://chromiumcodereview.appspot.com/10795066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148203 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Cleanup RectangleUpdateDecoder and VideoStub Previously RectangleUpdateDecoder maintaned list of pending packets. That's not really necessary. Simplified it by queue tasks on the decode thread. Also some minor cleanups for the VideoStub interface - removed GetPendingVideoPackets() that wasn't used anywhere. Review URL: https://chromiumcodereview.appspot.com/10879085 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@154272 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Moved video stub implementation to RectangleUpdateDecoder. Review URL: https://chromiumcodereview.appspot.com/10867039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153305 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Cleanup: Remove static storage for variables in an unnamed namespace. BUG=none TEST=none R=binji Review URL: https://chromiumcodereview.appspot.com/9271061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119535 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Show framerate in chromoting debug log Add frame rate as a statistic that we collect. This can be used to determine the size of video frames that we're sending. Frame rate recorded is the number of frames received per second but not the frame rate displayed. BUG=None TEST=chromoting runs just fine Review URL: http://codereview.chromium.org/8310001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107121 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Disable V1 auth support in remoting client and Me2Me host. BUG=110483 Review URL: https://chromiumcodereview.appspot.com/10446084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139815 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Disable V1 auth support in remoting client and Me2Me host. BUG=110483 Review URL: https://chromiumcodereview.appspot.com/10446084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139815 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Piping for audio decoding. Review URL: https://chromiumcodereview.appspot.com/10843031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149990 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Piping for audio decoding. Review URL: https://chromiumcodereview.appspot.com/10843031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149990 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Show connection state in the Chromoting client UI. Now screen is desaturated when we get notification that video channel is not working. BUG=131411 Review URL: https://chromiumcodereview.appspot.com/10692179 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147830 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Propagate DPI information to web-app. BUG=135089 TEST= Review URL: https://chromiumcodereview.appspot.com/10801003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147605 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Propagate DPI information to web-app. BUG=135089 TEST= Review URL: https://chromiumcodereview.appspot.com/10801003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147605 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Propagate DPI information to web-app. BUG=135089 TEST= Review URL: https://chromiumcodereview.appspot.com/10801003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147605 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
RefCounted types should not have public destructors, delegate cleanup For Delegate/Observer-type classes that specify an interface but do not have any particular lifetime requirements, make their destructors protected. This is to allow their interfaces to be implemented safely by RefCounted types. With public destructors, it's possible to do "scoped_ptr<Delegate> foo", and then assign a RefCountedDelegateImpl, which would lead to a double free. As none of these Delegates actually need public destructors (ownership of the Delegate* is not transferred during a function call / class constructor), mark the destructors protected so that it becomes a compile warning to try to delete them via the Delegate*. BUG=123295 TEST=it compiles Review URL: https://chromiumcodereview.appspot.com/10383262 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@144086 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Add APIs to the client plugin to re-map and trap key events. Re-mapped events allow keys to be re-mapped by the plugin before being delivered to the host. Trapped events are posted to the web-app in a trappedKeyEvent message, allowing more complex processing to be performed, at the cost of higher input latency. BUG=121787 Review URL: http://codereview.chromium.org/10025001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131321 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Add APIs to the client plugin to re-map and trap key events. Re-mapped events allow keys to be re-mapped by the plugin before being delivered to the host. Trapped events are posted to the web-app in a trappedKeyEvent message, allowing more complex processing to be performed, at the cost of higher input latency. BUG=121787 Review URL: http://codereview.chromium.org/10025001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131321 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Remove support for Windows-style keycodes. BUG=145057 Review URL: https://chromiumcodereview.appspot.com/10894050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155905 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Cleanup RectangleUpdateDecoder and VideoStub Previously RectangleUpdateDecoder maintaned list of pending packets. That's not really necessary. Simplified it by queue tasks on the decode thread. Also some minor cleanups for the VideoStub interface - removed GetPendingVideoPackets() that wasn't used anywhere. Review URL: https://chromiumcodereview.appspot.com/10879085 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@154272 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Cleanup RectangleUpdateDecoder and VideoStub Previously RectangleUpdateDecoder maintaned list of pending packets. That's not really necessary. Simplified it by queue tasks on the decode thread. Also some minor cleanups for the VideoStub interface - removed GetPendingVideoPackets() that wasn't used anywhere. Review URL: https://chromiumcodereview.appspot.com/10879085 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@154272 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 |