[Spice-devel] [PATCH spice 04/11] client: handle the new SpiceMsgDisplayStreamData (common/messages.h)
Christophe Fergeau
cfergeau at redhat.com
Tue Apr 10 03:31:39 PDT 2012
On Sun, Apr 08, 2012 at 06:43:13PM +0300, Yonit Halperin wrote:
> SpiceMsgDisplayStreamData now contains SpiceStreamDataHeader,
> which is shared with SpiceMsgDisplayStreamDataSized.
>
> Signed-off-by: Yonit Halperin <yhalperi at redhat.com>
> ---
> client/display_channel.cpp | 6 ++++--
> 1 files changed, 4 insertions(+), 2 deletions(-)
I don't see a spice-protocol/spice-common update there, this means
compilation will be broken before or after this change.
Christophe
>
> diff --git a/client/display_channel.cpp b/client/display_channel.cpp
> index ebeacd2..17bdf6a 100644
> --- a/client/display_channel.cpp
> +++ b/client/display_channel.cpp
> @@ -1419,7 +1419,7 @@ void DisplayChannel::handle_stream_data(RedPeer::InMessage* message)
> SpiceMsgDisplayStreamData* stream_data = (SpiceMsgDisplayStreamData*)message->data();
> VideoStream* stream;
>
> - if (stream_data->id >= _streams.size() || !(stream = _streams[stream_data->id])) {
> + if (stream_data->base.id >= _streams.size() || !(stream = _streams[stream_data->base.id])) {
> THROW("invalid stream");
> }
>
> @@ -1427,7 +1427,9 @@ void DisplayChannel::handle_stream_data(RedPeer::InMessage* message)
> THROW("access violation");
> }
>
> - stream->push_data(stream_data->multi_media_time, stream_data->data_size, stream_data->data);
> + stream->push_data(stream_data->base.multi_media_time,
> + stream_data->data_size,
> + stream_data->data);
> }
>
> void DisplayChannel::handle_stream_clip(RedPeer::InMessage* message)
> --
> 1.7.7.6
>
> _______________________________________________
> Spice-devel mailing list
> Spice-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/spice-devel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 198 bytes
Desc: not available
URL: <http://lists.freedesktop.org/archives/spice-devel/attachments/20120410/48f850b2/attachment.pgp>
More information about the Spice-devel
mailing list