mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 18:48:44 +00:00
autoconvert: Don't use GST_FLOW_IS_FATAL()
This commit is contained in:
parent
2c6372f41a
commit
dab5cbb1c0
1 changed files with 1 additions and 1 deletions
|
@ -1037,7 +1037,7 @@ gst_auto_convert_sink_chain (GstPad * pad, GstBuffer * buffer)
|
|||
|
||||
ret = gst_pad_push (internal_srcpad, buffer);
|
||||
gst_object_unref (internal_srcpad);
|
||||
if (GST_FLOW_IS_FATAL (ret)) {
|
||||
if (ret != GST_FLOW_OK) {
|
||||
GstElement *child = gst_auto_convert_get_subelement (autoconvert, TRUE);
|
||||
GST_DEBUG_OBJECT (autoconvert,
|
||||
"Child element %" GST_PTR_FORMAT "returned flow %s", child,
|
||||
|
|
Loading…
Reference in a new issue