mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
faad: parse wants a GstFlowReturn return value, not a gboolean
This commit is contained in:
parent
ad1883f54d
commit
c9f7e9b26d
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue