summaryrefslogtreecommitdiff
path: root/gst/tta
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2010-08-27 18:52:54 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2010-09-21 12:26:36 +0200
commit21d74bb58df925c79a9f232ed8a3b725f933b4b3 (patch)
treead0460f46bc97633ad1a1900593ce15500369a7d /gst/tta
parentd4782cbff8264e9e45dc76c7a70ff52c88dc9df5 (diff)
downloadgstreamer-plugins-bad-21d74bb58df925c79a9f232ed8a3b725f933b4b3.tar.gz
ttaparse: Don't post an error message on UNEXPECTED
Also don't use GST_FLOW_IS_FATAL()
Diffstat (limited to 'gst/tta')
-rw-r--r--gst/tta/gstttaparse.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gst/tta/gstttaparse.c b/gst/tta/gstttaparse.c
index 82187a00a..3d64995c6 100644
--- a/gst/tta/gstttaparse.c
+++ b/gst/tta/gstttaparse.c
@@ -464,7 +464,9 @@ gst_tta_parse_loop (GstTtaParse * ttaparse)
pause:
GST_LOG_OBJECT (ttaparse, "pausing task, %s", gst_flow_get_name (ret));
gst_pad_pause_task (ttaparse->sinkpad);
- if (GST_FLOW_IS_FATAL (ret) || ret == GST_FLOW_NOT_LINKED) {
+ if (ret == GST_FLOW_UNEXPECTED) {
+ gst_pad_push_event (ttaparse->srcpad, gst_event_new_eos ());
+ } else if (ret < GST_FLOW_UNEXPECTED || ret == GST_FLOW_NOT_LINKED) {
GST_ELEMENT_ERROR (ttaparse, STREAM, FAILED,
("Internal data stream error."),
("streaming stopped, reason %s", gst_flow_get_name (ret)));