summaryrefslogtreecommitdiff
path: root/gst/siren
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2016-07-11 19:21:11 +0530
committerTim-Philipp Müller <tim@centricular.com>2016-07-11 15:02:06 +0100
commita3d58818e812ae1c7f10dcfc6d00e8368c6735ec (patch)
tree35a7c320dcc2c8b36f176960e2ccefd9fd4fb92d /gst/siren
parent2ae16c2f685ab81916526a65969d821c4fa3322e (diff)
Fix various gboolean vs GstFlowReturn problems
Caught by building with MSVC which gave warnings for these
Diffstat (limited to 'gst/siren')
-rw-r--r--gst/siren/gstsirendec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/siren/gstsirendec.c b/gst/siren/gstsirendec.c
index 93aadf0ad..78338ae2b 100644
--- a/gst/siren/gstsirendec.c
+++ b/gst/siren/gstsirendec.c
@@ -57,7 +57,7 @@ static gboolean gst_siren_dec_start (GstAudioDecoder * dec);
static gboolean gst_siren_dec_stop (GstAudioDecoder * dec);
static gboolean gst_siren_dec_set_format (GstAudioDecoder * dec,
GstCaps * caps);
-static gboolean gst_siren_dec_parse (GstAudioDecoder * dec,
+static GstFlowReturn gst_siren_dec_parse (GstAudioDecoder * dec,
GstAdapter * adapter, gint * offset, gint * length);
static GstFlowReturn gst_siren_dec_handle_frame (GstAudioDecoder * dec,
GstBuffer * buffer);