converted gst_element_error to new format in gst/ - gettext pending
authorBenjamin Otte <otte@gnome.org>
Mon, 15 Sep 2003 00:34:47 +0000 (00:34 +0000)
committerBenjamin Otte <otte@gnome.org>
Mon, 15 Sep 2003 00:34:47 +0000 (00:34 +0000)
Original commit message from CVS:
converted gst_element_error to new format in gst/ - gettext pending

gst/auparse/gstauparse.c
gst/avi/gstavidemux.c
gst/avi/gstavimux.c
gst/flx/gstflxdec.c
gst/goom/gstgoom.c
gst/monoscope/gstmonoscope.c
gst/smpte/gstsmpte.c
gst/videocrop/gstvideocrop.c
gst/wavenc/gstwavenc.c
gst/wavparse/gstwavparse.c

index 422ee1b..075f5f4 100644 (file)
@@ -287,7 +287,9 @@ gst_auparse_chain (GstPad *pad, GstBuffer *buf)
 
     if (gst_pad_try_set_caps (auparse->srcpad, tempcaps) <= 0) {
       gst_buffer_unref (buf);
-      gst_element_error (GST_ELEMENT (auparse), "could not set audio caps");
+      gst_element_gerror(GST_ELEMENT (auparse), GST_ERROR_UNKNOWN,
+        g_strdup ("unconverted error, file a bug"),
+        g_strdup_printf("could not set audio caps"));
       return;
     }
 
index ed60593..e79d707 100644 (file)
@@ -1691,7 +1691,9 @@ gst_avi_demux_loop (GstElement *element)
     case GST_AVI_DEMUX_START:
       if (chunk.id != GST_RIFF_TAG_RIFF && 
           chunk.type != GST_RIFF_RIFF_AVI) {
-        gst_element_error (element, "This doesn't appear to be an AVI file %08x %08x", chunk.id, chunk.type);
+        gst_element_gerror(element, GST_ERROR_UNKNOWN,
+          g_strdup ("unconverted error, file a bug"),
+          g_strdup_printf("This doesn't appear to be an AVI file %08x %08x", chunk.id, chunk.type));
        return;
       }
       avi_demux->state = GST_AVI_DEMUX_HEADER;
index 4a980a1..68105d9 100644 (file)
@@ -1062,7 +1062,9 @@ gst_avimux_stop_file (GstAviMux *avimux)
       if (avimux->audio_time) {
         avimux->auds_hdr.rate = (GST_SECOND * avimux->audio_size) / avimux->audio_time;
       } else {
-        gst_element_error (GST_ELEMENT (avimux), "Audio stream available, but no audio data transferred (or data with invalid timestamps). Resulting AVI will be corrupt");
+        gst_element_gerror(GST_ELEMENT (avimux), GST_ERROR_UNKNOWN,
+          g_strdup ("unconverted error, file a bug"),
+          g_strdup ("Audio stream availablebut no audio data transferred (or data with invalid timestamps). Resulting AVI will be corrupt"));
         avimux->auds_hdr.rate = 0;
       }
       avimux->auds.av_bps = avimux->auds_hdr.rate * avimux->auds_hdr.scale;
index c20327a..fe20443 100644 (file)
@@ -499,7 +499,9 @@ gst_flxdec_loop (GstElement *element)
     if (flxh->type != FLX_MAGICHDR_FLI &&
       flxh->type != FLX_MAGICHDR_FLC &&
       flxh->type != FLX_MAGICHDR_FLX) {
-      gst_element_error (element, "not a flx file (type %d)\n", flxh->type);
+      gst_element_gerror(element, GST_ERROR_UNKNOWN,
+        g_strdup ("unconverted error, file a bug"),
+        g_strdup_printf("not a flx file (type %d)\n", flxh->type));
       return;
     }
   
index bbf49bb..8a4a5eb 100644 (file)
@@ -300,7 +300,9 @@ gst_goom_chain (GstPad *pad, GstBuffer *bufin)
   }
 
   if (goom->channels == 0) {
-    gst_element_error (GST_ELEMENT (goom), "sink format not negotiated");
+    gst_element_gerror(GST_ELEMENT (goom), GST_ERROR_UNKNOWN,
+      g_strdup ("unconverted error, file a bug"),
+      g_strdup_printf("sink format not negotiated"));
     goto done;
   }
 
@@ -309,7 +311,9 @@ gst_goom_chain (GstPad *pad, GstBuffer *bufin)
 
   if (!goom->srcnegotiated) {
     if (!gst_goom_negotiate_default (goom)) {
-      gst_element_error (GST_ELEMENT (goom), "could not negotiate src format");
+      gst_element_gerror(GST_ELEMENT (goom), GST_ERROR_UNKNOWN,
+        g_strdup ("unconverted error, file a bug"),
+        g_strdup_printf("could not negotiate src format"));
       goto done;
     }
   }
index 9eb8bb4..0b94604 100644 (file)
@@ -285,7 +285,9 @@ gst_monoscope_chain (GstPad *pad, GstBuffer *bufin)
     GST_DEBUG ("making new pad");
     if (!GST_PAD_CAPS (monoscope->srcpad)) {
       if (gst_monoscope_negotiate (monoscope) <= 0) {
-        gst_element_error (GST_ELEMENT (monoscope), "could not set caps");
+        gst_element_gerror(GST_ELEMENT (monoscope), GST_ERROR_UNKNOWN,
+          g_strdup ("unconverted error, file a bug"),
+          g_strdup_printf("could not set caps"));
         return;
       }
     }
index bf042e4..9b203fe 100644 (file)
@@ -364,7 +364,9 @@ gst_smpte_loop (GstElement *element)
                       "framerate", GST_PROPS_FLOAT (smpte->fps)
                    )))
       {
-        gst_element_error (element, "cannot set caps");
+        gst_element_gerror(element, GST_ERROR_UNKNOWN,
+          g_strdup ("unconverted error, file a bug"),
+          g_strdup_printf("cannot set caps"));
         return;
       }
     }
index d96061a..54702e5 100644 (file)
@@ -380,7 +380,9 @@ gst_video_crop_chain (GstPad *pad, GstBuffer *buffer)
                                          "framerate", GST_PROPS_FLOAT (video_crop->fps)
                                       )) <= 0)
     {
-      gst_element_error (GST_ELEMENT (video_crop), "could not negotiate pads");
+      gst_element_gerror(GST_ELEMENT (video_crop), GST_ERROR_UNKNOWN,
+        g_strdup ("unconverted error, file a bug"),
+        g_strdup_printf("could not negotiate pads"));
       return;
     }
   }
index 2dde7c6..08f2c99 100644 (file)
@@ -322,7 +322,9 @@ gst_wavenc_chain (GstPad *pad,
 
   if (!wavenc->setup) {
     gst_buffer_unref (buf);
-    gst_element_error (GST_ELEMENT (wavenc), "encoder not initialised (input is not audio?)");
+    gst_element_gerror(GST_ELEMENT (wavenc), GST_ERROR_UNKNOWN,
+      g_strdup ("unconverted error, file a bug"),
+      g_strdup_printf("encoder not initialised (input is not audio?)"));
     return;
   }
 
index c2e6063..af99512 100644 (file)
@@ -292,12 +292,16 @@ static void wav_new_chunk_callback(GstRiffChunk *chunk, gpointer data)
        break;
 
       default:
-       gst_element_error (GST_ELEMENT (wavparse), "wavparse: format %d not handled", wavparse->format);
+       gst_element_gerror(GST_ELEMENT (wavparse), GST_ERROR_UNKNOWN,
+         g_strdup ("unconverted error, file a bug"),
+         g_strdup_printf("wavparse: format %d not handled", wavparse->format));
        return;
     }
 
     if (gst_pad_try_set_caps (wavparse->srcpad, caps) <= 0) {
-      gst_element_error (GST_ELEMENT (wavparse), "Could not set caps");
+      gst_element_gerror(GST_ELEMENT (wavparse), GST_ERROR_UNKNOWN,
+        g_strdup ("unconverted error, file a bug"),
+        g_strdup_printf("Could not set caps"));
       return;
     }