summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ext/libpng/gstpngdec.c11
-rw-r--r--gst/wavparse/gstwavparse.c5
-rw-r--r--po/POTFILES.in2
3 files changed, 12 insertions, 6 deletions
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 <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)));
}
}
diff --git a/gst/wavparse/gstwavparse.c b/gst/wavparse/gstwavparse.c
index 4bd772a3..cb0ab683 100644
--- a/gst/wavparse/gstwavparse.c
+++ b/gst/wavparse/gstwavparse.c
@@ -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 ());
}
diff --git a/po/POTFILES.in b/po/POTFILES.in
index d9c67abc..a35c6c64 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -1,2 +1,4 @@
+ext/libpng/gstpngdec.c
gst/avi/gstavimux.c
+gst/wavparse/gstwavparse.c
sys/oss/gstossmixer.c