amrnbec, mad: fix two more parse function declarations
authorTim-Philipp Müller <tim@centricular.com>
Sat, 16 Apr 2016 08:15:43 +0000 (09:15 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 16 Apr 2016 08:15:43 +0000 (09:15 +0100)
ext/amrnb/amrnbdec.c
ext/mad/gstmad.c

index 1e2225d..653f1c5 100644 (file)
@@ -96,8 +96,8 @@ static void gst_amrnbdec_get_property (GObject * object, guint prop_id,
 static gboolean gst_amrnbdec_start (GstAudioDecoder * dec);
 static gboolean gst_amrnbdec_stop (GstAudioDecoder * dec);
 static gboolean gst_amrnbdec_set_format (GstAudioDecoder * dec, GstCaps * caps);
-static gboolean gst_amrnbdec_parse (GstAudioDecoder * dec, GstAdapter * adapter,
-    gint * offset, gint * length);
+static GstFlowReturn gst_amrnbdec_parse (GstAudioDecoder * dec,
+    GstAdapter * adapter, gint * offset, gint * length);
 static GstFlowReturn gst_amrnbdec_handle_frame (GstAudioDecoder * dec,
     GstBuffer * buffer);
 
index 7588473..55899a5 100644 (file)
@@ -85,8 +85,8 @@ GST_STATIC_PAD_TEMPLATE ("sink",
 
 static gboolean gst_mad_start (GstAudioDecoder * dec);
 static gboolean gst_mad_stop (GstAudioDecoder * dec);
-static gboolean gst_mad_parse (GstAudioDecoder * dec, GstAdapter * adapter,
-    gint * offset, gint * length);
+static GstFlowReturn gst_mad_parse (GstAudioDecoder * dec,
+    GstAdapter * adapter, gint * offset, gint * length);
 static GstFlowReturn gst_mad_handle_frame (GstAudioDecoder * dec,
     GstBuffer * buffer);
 static void gst_mad_flush (GstAudioDecoder * dec, gboolean hard);