Re: [Spice-devel] [PATCH spice-html5 3/3] Add support for stream reports.

2015-06-04 Thread Jeremy White
Hey Christophe, -if (msg.type == SPICE_MSG_DISPLAY_STREAM_DATA) +if (msg.type == SPICE_MSG_DISPLAY_STREAM_DATA || +msg.type == SPICE_MSG_DISPLAY_STREAM_DATA_SIZED) { -var m = new SpiceMsgDisplayStreamData(msg.data); +var m; +if (msg.type == SPICE_MS

Re: [Spice-devel] [PATCH spice-html5 3/3] Add support for stream reports.

2015-06-04 Thread Christophe Fergeau
Hey, On Wed, Jun 03, 2015 at 05:22:55PM -0500, Jeremy White wrote: > This helps video playback do a slightly better job of keeping up > in the browser. It's not a dramatic effect, but enough to start making > video playback almost tolerable. > > Signed-off-by: Jeremy White > --- > display.js

[Spice-devel] [PATCH spice-html5 3/3] Add support for stream reports.

2015-06-03 Thread Jeremy White
This helps video playback do a slightly better job of keeping up in the browser. It's not a dramatic effect, but enough to start making video playback almost tolerable. Signed-off-by: Jeremy White --- display.js | 67 ++-- enums.js |