mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
pngdec: Don't use GST_FLOW_IS_FATAL()
And don't post an error message if downstream returns UNEXPECTED.
This commit is contained in:
parent
0cf904f0bb
commit
58427ee02d
1 changed files with 6 additions and 2 deletions
|
@ -335,7 +335,9 @@ pause:
|
||||||
GST_INFO_OBJECT (pngdec, "pausing task, reason %s",
|
GST_INFO_OBJECT (pngdec, "pausing task, reason %s",
|
||||||
gst_flow_get_name (ret));
|
gst_flow_get_name (ret));
|
||||||
gst_pad_pause_task (pngdec->sinkpad);
|
gst_pad_pause_task (pngdec->sinkpad);
|
||||||
if (GST_FLOW_IS_FATAL (ret) || ret == GST_FLOW_NOT_LINKED) {
|
if (ret == GST_FLOW_UNEXPECTED) {
|
||||||
|
gst_pad_push_event (pngdec->srcpad, gst_event_new_eos ());
|
||||||
|
} else if (ret < GST_FLOW_UNEXPECTED || ret == GST_FLOW_NOT_LINKED) {
|
||||||
GST_ELEMENT_ERROR (pngdec, STREAM, FAILED,
|
GST_ELEMENT_ERROR (pngdec, STREAM, FAILED,
|
||||||
(_("Internal data stream error.")),
|
(_("Internal data stream error.")),
|
||||||
("stream stopped, reason %s", gst_flow_get_name (ret)));
|
("stream stopped, reason %s", gst_flow_get_name (ret)));
|
||||||
|
@ -544,7 +546,9 @@ pause:
|
||||||
GST_INFO_OBJECT (pngdec, "pausing task, reason %s",
|
GST_INFO_OBJECT (pngdec, "pausing task, reason %s",
|
||||||
gst_flow_get_name (ret));
|
gst_flow_get_name (ret));
|
||||||
gst_pad_pause_task (pngdec->sinkpad);
|
gst_pad_pause_task (pngdec->sinkpad);
|
||||||
if (GST_FLOW_IS_FATAL (ret) || ret == GST_FLOW_NOT_LINKED) {
|
if (ret == GST_FLOW_UNEXPECTED) {
|
||||||
|
gst_pad_push_event (pngdec->srcpad, gst_event_new_eos ());
|
||||||
|
} else if (ret == GST_FLOW_NOT_LINKED || ret < GST_FLOW_UNEXPECTED) {
|
||||||
GST_ELEMENT_ERROR (pngdec, STREAM, FAILED,
|
GST_ELEMENT_ERROR (pngdec, STREAM, FAILED,
|
||||||
(_("Internal data stream error.")),
|
(_("Internal data stream error.")),
|
||||||
("stream stopped, reason %s", gst_flow_get_name (ret)));
|
("stream stopped, reason %s", gst_flow_get_name (ret)));
|
||||||
|
|
Loading…
Reference in a new issue