wildmidi: Don't use GST_FLOW_IS_FATAL()

This commit is contained in:
Sebastian Dröge 2010-08-27 19:00:18 +02:00
parent e618365a19
commit e0694abd0a

View File

@ -848,20 +848,18 @@ pause:
GST_DEBUG_OBJECT (wildmidi, "pausing task, reason %s", reason); GST_DEBUG_OBJECT (wildmidi, "pausing task, reason %s", reason);
gst_pad_pause_task (sinkpad); gst_pad_pause_task (sinkpad);
if (GST_FLOW_IS_FATAL (ret) || ret == GST_FLOW_NOT_LINKED) { if (ret == GST_FLOW_UNEXPECTED) {
if (ret == GST_FLOW_UNEXPECTED) { /* perform EOS logic */
/* perform EOS logic */ event = gst_event_new_eos ();
event = gst_event_new_eos (); gst_pad_push_event (wildmidi->srcpad, event);
gst_pad_push_event (wildmidi->srcpad, event); } else if (ret == GST_FLOW_NOT_LINKED || ret < GST_FLOW_UNEXPECTED) {
} else { event = gst_event_new_eos ();
event = gst_event_new_eos (); /* for fatal errors we post an error message, post the error
/* for fatal errors we post an error message, post the error * first so the app knows about the error first. */
* first so the app knows about the error first. */ GST_ELEMENT_ERROR (wildmidi, STREAM, FAILED,
GST_ELEMENT_ERROR (wildmidi, STREAM, FAILED, ("Internal data flow error."),
("Internal data flow error."), ("streaming task paused, reason %s (%d)", reason, ret));
("streaming task paused, reason %s (%d)", reason, ret)); gst_pad_push_event (wildmidi->srcpad, event);
gst_pad_push_event (wildmidi->srcpad, event);
}
} }
} }
} }