mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 20:59:44 +00:00
sdpdemux: Don't use GST_FLOW_IS_SUCCESS()
This commit is contained in:
parent
793a3563fa
commit
d4782cbff8
1 changed files with 1 additions and 1 deletions
|
@ -1110,7 +1110,7 @@ gst_sdp_demux_combine_flows (GstSDPDemux * demux, GstSDPStream * stream,
|
||||||
stream->last_ret = ret;
|
stream->last_ret = ret;
|
||||||
|
|
||||||
/* if it's success we can return the value right away */
|
/* if it's success we can return the value right away */
|
||||||
if (GST_FLOW_IS_SUCCESS (ret))
|
if (ret == GST_FLOW_OK)
|
||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
/* any other error that is not-linked can be returned right
|
/* any other error that is not-linked can be returned right
|
||||||
|
|
Loading…
Reference in a new issue