STOPPED->FAILED

Original commit message from CVS:
STOPPED->FAILED
This commit is contained in:
Thomas Vander Stichele 2005-10-23 11:07:10 +00:00
parent 512eb8ab25
commit d006b0680f
3 changed files with 12 additions and 6 deletions

View file

@ -21,6 +21,7 @@
#include <string.h>
#include <gst/video/video.h>
#include <gst/gst-i18n-plugin.h>
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)));
}
}

View file

@ -27,6 +27,7 @@
#include "gstwavparse.h"
#include "gst/riff/riff-ids.h"
#include "gst/riff/riff-media.h"
#include <gst/gst-i18n-plugin.h>
#ifndef G_MAXUINT32
#define G_MAXUINT32 0xffffffff
@ -1027,8 +1028,8 @@ pause:
gst_pad_pause_task (wav->sinkpad);
if (GST_FLOW_IS_FATAL (ret)) {
/* for fatal errors we post an error message */
GST_ELEMENT_ERROR (wav, STREAM, STOPPED,
("streaming stopped, reason %s", gst_flow_get_name (ret)),
GST_ELEMENT_ERROR (wav, STREAM, FAILED,
(_("Internal data stream error.")),
("streaming stopped, reason %s", gst_flow_get_name (ret)));
gst_pad_push_event (wav->srcpad, gst_event_new_eos ());
}

View file

@ -1,2 +1,4 @@
ext/libpng/gstpngdec.c
gst/avi/gstavimux.c
gst/wavparse/gstwavparse.c
sys/oss/gstossmixer.c