From: Jan Schmidt Date: Mon, 5 Jun 2017 04:32:36 +0000 (+1000) Subject: Fix new_sample signal handler so the example works X-Git-Tag: 1.19.3~489^2~303 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3be8a37124a9df30a4e3b36ab24956fdd9b052b9;p=platform%2Fupstream%2Fgstreamer.git Fix new_sample signal handler so the example works --- diff --git a/examples/tutorials/basic-tutorial-8.c b/examples/tutorials/basic-tutorial-8.c index 558ac2d..1ab3bf6 100644 --- a/examples/tutorials/basic-tutorial-8.c +++ b/examples/tutorials/basic-tutorial-8.c @@ -87,7 +87,7 @@ static void stop_feed (GstElement *source, CustomData *data) { } /* The appsink has received a buffer */ -static void new_sample (GstElement *sink, CustomData *data) { +static GstFlowReturn new_sample (GstElement *sink, CustomData *data) { GstSample *sample; /* Retrieve the buffer */ @@ -97,6 +97,8 @@ static void new_sample (GstElement *sink, CustomData *data) { g_print ("*"); gst_sample_unref (sample); } + + return GST_FLOW_OK; } /* This function is called when an error message is posted on the bus */