[Spice-devel] [PATCH 1/2][spice-gtk v3] audio: new-sample callback must return GST_FLOW_OK

Marc-André Lureau marcandre.lureau at gmail.com
Mon Dec 1 05:43:36 PST 2014


ack

On Wed, Nov 26, 2014 at 3:30 PM, Victor Toso <victortoso at redhat.com> wrote:
> Changes since v2
> * changing the label from 'lerr' to 'cleanup'
>
> ---
>  gtk/spice-gstaudio.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/gtk/spice-gstaudio.c b/gtk/spice-gstaudio.c
> index 6173783..5f9abb2 100644
> --- a/gtk/spice-gstaudio.c
> +++ b/gtk/spice-gstaudio.c
> @@ -120,13 +120,13 @@ static void spice_gstaudio_class_init(SpiceGstaudioClass *klass)
>      g_type_class_add_private(klass, sizeof(SpiceGstaudioPrivate));
>  }
>
> -static void record_new_buffer(GstAppSink *appsink, gpointer data)
> +static GstFlowReturn record_new_buffer(GstAppSink *appsink, gpointer data)
>  {
>      SpiceGstaudio *gstaudio = data;
>      SpiceGstaudioPrivate *p = gstaudio->priv;
>      GstMessage *msg;
>
> -    g_return_if_fail(p != NULL);
> +    g_return_val_if_fail(p != NULL, GST_FLOW_ERROR);
>
>  #ifdef WITH_GST1AUDIO
>      msg = gst_message_new_application(GST_OBJECT(p->record.pipe),
> @@ -135,6 +135,7 @@ static void record_new_buffer(GstAppSink *appsink, gpointer data)
>      msg = gst_message_new_application(GST_OBJECT(p->record.pipe), NULL);
>  #endif
>      gst_element_post_message(p->record.pipe, msg);
> +    return GST_FLOW_OK;
>  }
>
>  static void record_stop(SpiceGstaudio *gstaudio)
> --
> 2.1.0
>
> _______________________________________________
> Spice-devel mailing list
> Spice-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/spice-devel



-- 
Marc-André Lureau


More information about the Spice-devel mailing list