Re: [Spice-devel] [spice-gtk v1 02/11] channel-display: rename display_stream_destroy()

2018-04-05 Thread Victor Toso
On Tue, Mar 13, 2018 at 09:20:11AM -0400, Frediano Ziglio wrote:
> > 
> > From: Victor Toso 
> > 
> > This patch also renames destroy_display_stream() to
> 
> I would remove the "also", I think just a leftover.

Yes, it is. I'll remove it locally

> 
> > display_stream_destroy() to keep compatibility with
> > display_stream_create()
> > 
> > Signed-off-by: Victor Toso 
> > ---
> >  src/channel-display.c | 8 
> >  1 file changed, 4 insertions(+), 4 deletions(-)
> > 
> > diff --git a/src/channel-display.c b/src/channel-display.c
> > index de40798..1a79a8b 100644
> > --- a/src/channel-display.c
> > +++ b/src/channel-display.c
> > @@ -106,7 +106,7 @@ static display_surface
> > *find_surface(SpiceDisplayChannelPrivate *c, guint32 surf
> >  static void spice_display_channel_reset(SpiceChannel *channel, gboolean
> >  migrating);
> >  static void spice_display_channel_reset_capabilities(SpiceChannel 
> > *channel);
> >  static void destroy_canvas(display_surface *surface);
> > -static void destroy_display_stream(gpointer st);
> > +static void display_stream_destroy(gpointer st);
> >  static void display_session_mm_time_reset_cb(SpiceSession *session, 
> > gpointer
> >  data);
> >  static SpiceGlScanout* spice_gl_scanout_copy(const SpiceGlScanout 
> > *scanout);
> >  
> > @@ -1269,7 +1269,7 @@ static display_stream
> > *display_stream_create(SpiceChannel *channel,
> >  }
> >  if (st->video_decoder == NULL) {
> >  spice_printerr("could not create a video decoder for codec %u",
> >  codec_type);
> > -g_clear_pointer(, destroy_display_stream);
> > +g_clear_pointer(, display_stream_destroy);
> >  }
> >  return st;
> >  }
> > @@ -1282,7 +1282,7 @@ static void destroy_stream(SpiceChannel *channel, int
> > id)
> >  g_return_if_fail(c->streams != NULL);
> >  g_return_if_fail(c->nstreams > id);
> >  
> > -g_clear_pointer(>streams[id], destroy_display_stream);
> > +g_clear_pointer(>streams[id], display_stream_destroy);
> >  }
> >  
> >  static void display_handle_stream_create(SpiceChannel *channel, SpiceMsgIn
> >  *in)
> > @@ -1596,7 +1596,7 @@ static void display_handle_stream_clip(SpiceChannel
> > *channel, SpiceMsgIn *in)
> >  display_update_stream_region(st);
> >  }
> >  
> > -static void destroy_display_stream(gpointer st_pointer)
> > +static void display_stream_destroy(gpointer st_pointer)
> >  {
> >  int i;
> >  display_stream *st = st_pointer;
> 
> Otherwise,
>   Acked-by: Frediano Ziglio 

Cheers,
toso



signature.asc
Description: PGP signature
___
Spice-devel mailing list
Spice-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/spice-devel


Re: [Spice-devel] [spice-gtk v1 02/11] channel-display: rename display_stream_destroy()

2018-03-13 Thread Frediano Ziglio
> 
> From: Victor Toso 
> 
> This patch also renames destroy_display_stream() to

I would remove the "also", I think just a leftover.

> display_stream_destroy() to keep compatibility with
> display_stream_create()
> 
> Signed-off-by: Victor Toso 
> ---
>  src/channel-display.c | 8 
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/src/channel-display.c b/src/channel-display.c
> index de40798..1a79a8b 100644
> --- a/src/channel-display.c
> +++ b/src/channel-display.c
> @@ -106,7 +106,7 @@ static display_surface
> *find_surface(SpiceDisplayChannelPrivate *c, guint32 surf
>  static void spice_display_channel_reset(SpiceChannel *channel, gboolean
>  migrating);
>  static void spice_display_channel_reset_capabilities(SpiceChannel *channel);
>  static void destroy_canvas(display_surface *surface);
> -static void destroy_display_stream(gpointer st);
> +static void display_stream_destroy(gpointer st);
>  static void display_session_mm_time_reset_cb(SpiceSession *session, gpointer
>  data);
>  static SpiceGlScanout* spice_gl_scanout_copy(const SpiceGlScanout *scanout);
>  
> @@ -1269,7 +1269,7 @@ static display_stream
> *display_stream_create(SpiceChannel *channel,
>  }
>  if (st->video_decoder == NULL) {
>  spice_printerr("could not create a video decoder for codec %u",
>  codec_type);
> -g_clear_pointer(, destroy_display_stream);
> +g_clear_pointer(, display_stream_destroy);
>  }
>  return st;
>  }
> @@ -1282,7 +1282,7 @@ static void destroy_stream(SpiceChannel *channel, int
> id)
>  g_return_if_fail(c->streams != NULL);
>  g_return_if_fail(c->nstreams > id);
>  
> -g_clear_pointer(>streams[id], destroy_display_stream);
> +g_clear_pointer(>streams[id], display_stream_destroy);
>  }
>  
>  static void display_handle_stream_create(SpiceChannel *channel, SpiceMsgIn
>  *in)
> @@ -1596,7 +1596,7 @@ static void display_handle_stream_clip(SpiceChannel
> *channel, SpiceMsgIn *in)
>  display_update_stream_region(st);
>  }
>  
> -static void destroy_display_stream(gpointer st_pointer)
> +static void display_stream_destroy(gpointer st_pointer)
>  {
>  int i;
>  display_stream *st = st_pointer;

Otherwise,
  Acked-by: Frediano Ziglio 

Frediano
___
Spice-devel mailing list
Spice-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/spice-devel


[Spice-devel] [spice-gtk v1 02/11] channel-display: rename display_stream_destroy()

2018-03-13 Thread Victor Toso
From: Victor Toso 

This patch also renames destroy_display_stream() to
display_stream_destroy() to keep compatibility with
display_stream_create()

Signed-off-by: Victor Toso 
---
 src/channel-display.c | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/channel-display.c b/src/channel-display.c
index de40798..1a79a8b 100644
--- a/src/channel-display.c
+++ b/src/channel-display.c
@@ -106,7 +106,7 @@ static display_surface 
*find_surface(SpiceDisplayChannelPrivate *c, guint32 surf
 static void spice_display_channel_reset(SpiceChannel *channel, gboolean 
migrating);
 static void spice_display_channel_reset_capabilities(SpiceChannel *channel);
 static void destroy_canvas(display_surface *surface);
-static void destroy_display_stream(gpointer st);
+static void display_stream_destroy(gpointer st);
 static void display_session_mm_time_reset_cb(SpiceSession *session, gpointer 
data);
 static SpiceGlScanout* spice_gl_scanout_copy(const SpiceGlScanout *scanout);
 
@@ -1269,7 +1269,7 @@ static display_stream *display_stream_create(SpiceChannel 
*channel,
 }
 if (st->video_decoder == NULL) {
 spice_printerr("could not create a video decoder for codec %u", 
codec_type);
-g_clear_pointer(, destroy_display_stream);
+g_clear_pointer(, display_stream_destroy);
 }
 return st;
 }
@@ -1282,7 +1282,7 @@ static void destroy_stream(SpiceChannel *channel, int id)
 g_return_if_fail(c->streams != NULL);
 g_return_if_fail(c->nstreams > id);
 
-g_clear_pointer(>streams[id], destroy_display_stream);
+g_clear_pointer(>streams[id], display_stream_destroy);
 }
 
 static void display_handle_stream_create(SpiceChannel *channel, SpiceMsgIn *in)
@@ -1596,7 +1596,7 @@ static void display_handle_stream_clip(SpiceChannel 
*channel, SpiceMsgIn *in)
 display_update_stream_region(st);
 }
 
-static void destroy_display_stream(gpointer st_pointer)
+static void display_stream_destroy(gpointer st_pointer)
 {
 int i;
 display_stream *st = st_pointer;
-- 
2.16.2

___
Spice-devel mailing list
Spice-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/spice-devel