STOPPED->FAILED
authorThomas Vander Stichele <thomas@apestaart.org>
Sun, 23 Oct 2005 11:07:10 +0000 (11:07 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Sun, 23 Oct 2005 11:07:10 +0000 (11:07 +0000)
Original commit message from CVS:
STOPPED->FAILED

ext/libpng/gstpngdec.c
gst/wavparse/gstwavparse.c
po/POTFILES.in

index 317eea5..7edd8e0 100644 (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)));
   }
 }
 
index 4bd772a..cb0ab68 100644 (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 ());
   }
index d9c67ab..a35c6c6 100644 (file)
@@ -1,2 +1,4 @@
+ext/libpng/gstpngdec.c
 gst/avi/gstavimux.c
+gst/wavparse/gstwavparse.c
 sys/oss/gstossmixer.c