summaryrefslogtreecommitdiff
path: root/ext/faad
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-09-23 09:57:01 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-09-23 09:57:01 +0100
commitc9f7e9b26dc83b861f87739febd51a22d6701ebf (patch)
tree8f9df4bbf68b5a1ba5a8dc9c2d5c5ba8083fd416 /ext/faad
parentad1883f54d100e0bb2d6aa6ec3463accc6cc26cc (diff)
downloadgstreamer-plugins-bad-c9f7e9b26dc83b861f87739febd51a22d6701ebf.tar.gz
faad: parse wants a GstFlowReturn return value, not a 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 ae851da8a..cc7276027 100644
--- a/ext/faad/gstfaad.c
+++ b/ext/faad/gstfaad.c
@@ -650,7 +650,7 @@ gst_faad_parse (GstAudioDecoder * dec, GstAdapter * adapter,
faad = GST_FAAD (dec);
size = gst_adapter_available (adapter);
- g_return_val_if_fail (size > 0, FALSE);
+ g_return_val_if_fail (size > 0, GST_FLOW_ERROR);
gst_audio_decoder_get_parse_state (dec, &sync, &eos);