summaryrefslogtreecommitdiffstats
path: root/gst/tta
diff options
context:
space:
mode:
Diffstat (limited to 'gst/tta')
-rw-r--r--gst/tta/gstttaparse.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gst/tta/gstttaparse.c b/gst/tta/gstttaparse.c
index efbd4ce6..c9efbe56 100644
--- a/gst/tta/gstttaparse.c
+++ b/gst/tta/gstttaparse.c
@@ -464,11 +464,12 @@ gst_tta_parse_loop (GstTtaParse * ttaparse)
return;
pause:
- GST_LOG_OBJECT (ttaparse, "pausing task %d", ret);
+ GST_LOG_OBJECT (ttaparse, "pausing task, %s", gst_flow_get_name (ret));
gst_pad_pause_task (ttaparse->sinkpad);
- if (GST_FLOW_IS_FATAL (ret)) {
+ if (GST_FLOW_IS_FATAL (ret) || ret == GST_FLOW_NOT_LINKED) {
GST_ELEMENT_ERROR (ttaparse, STREAM, FAILED,
- ("Internal data stream error."), ("streaming stopped, reason %d", ret));
+ ("Internal data stream error."),
+ ("streaming stopped, reason %s", gst_flow_get_name (ret)));
gst_pad_push_event (ttaparse->srcpad, gst_event_new_eos ());
}
}