From d006b0680f9e1c6dde993efa56dafde61d51429f Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 23 Oct 2005 11:07:10 +0000 Subject: STOPPED->FAILED Original commit message from CVS: STOPPED->FAILED --- ext/libpng/gstpngdec.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'ext') diff --git a/ext/libpng/gstpngdec.c b/ext/libpng/gstpngdec.c index 317eea5d..7edd8e0d 100644 --- a/ext/libpng/gstpngdec.c +++ b/ext/libpng/gstpngdec.c @@ -21,6 +21,7 @@ #include #include +#include static GstElementDetails gst_pngdec_details = { "PNG decoder", @@ -291,8 +292,9 @@ pause: gst_pad_pause_task (pngdec->sinkpad); if (GST_FLOW_IS_FATAL (ret)) { gst_pad_push_event (pngdec->srcpad, gst_event_new_eos ()); - GST_ELEMENT_ERROR (pngdec, STREAM, STOPPED, - (NULL), ("stream stopped, reason %s", gst_flow_get_name (ret))); + GST_ELEMENT_ERROR (pngdec, STREAM, FAILED, + (_("Internal data stream error.")), + ("stream stopped, reason %s", gst_flow_get_name (ret))); } } @@ -436,8 +438,9 @@ pause: gst_pad_pause_task (pngdec->sinkpad); if (GST_FLOW_IS_FATAL (ret)) { gst_pad_push_event (pngdec->srcpad, gst_event_new_eos ()); - GST_ELEMENT_ERROR (pngdec, STREAM, STOPPED, - (NULL), ("stream stopped, reason %s", gst_flow_get_name (ret))); + GST_ELEMENT_ERROR (pngdec, STREAM, FAILED, + (_("Internal data stream error.")), + ("stream stopped, reason %s", gst_flow_get_name (ret))); } } -- cgit