summaryrefslogtreecommitdiff
path: root/ext/faad
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2016-10-27 09:08:41 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2016-10-27 23:06:26 +0530
commit83df90ed6c75dc387915366ce547f08649e60cde (patch)
treefc6735c43e3be1a1e09932510e4d658b8671ef65 /ext/faad
parent27df1b6c902f0c1790eae884265b44b465d1fbb4 (diff)
downloadgstreamer-plugins-bad-83df90ed6c75dc387915366ce547f08649e60cde.tar.gz
Fix incorrect return type in several functions
All these should return GstFlowReturn, not gboolean
Diffstat (limited to 'ext/faad')
-rw-r--r--ext/faad/gstfaad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/faad/gstfaad.c b/ext/faad/gstfaad.c
index 07cca309a..09d927c82 100644
--- a/ext/faad/gstfaad.c
+++ b/ext/faad/gstfaad.c
@@ -93,7 +93,7 @@ static void gst_faad_reset (GstFaad * faad);
static gboolean gst_faad_start (GstAudioDecoder * dec);
static gboolean gst_faad_stop (GstAudioDecoder * dec);
static gboolean gst_faad_set_format (GstAudioDecoder * dec, GstCaps * caps);
-static gboolean gst_faad_parse (GstAudioDecoder * dec, GstAdapter * adapter,
+static GstFlowReturn gst_faad_parse (GstAudioDecoder * dec, GstAdapter * adapter,
gint * offset, gint * length);
static GstFlowReturn gst_faad_handle_frame (GstAudioDecoder * dec,
GstBuffer * buffer);