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/chart/gstchart.c
gst/flx/gstflxdec.c
gst/modplug/gstmodplug.cc
gst/mpeg1videoparse/gstmp1videoparse.c
gst/mpegaudioparse/gstmpegaudioparse.c
gst/overlay/gstoverlay.c
gst/smpte/gstsmpte.c
gst/speed/gstspeed.c
gst/videocrop/gstvideocrop.c

index bc86b89322bb5d752146251967a0dd9352056759..16558b4ff8db4e7a207c690a2a1e67b5d9ab7474 100644 (file)
@@ -372,8 +372,9 @@ gst_chart_chain (GstPad *pad, GstBuffer *bufin)
                                      "height",     GST_PROPS_INT (chart->height),
                                      "framerate",  GST_PROPS_FLOAT (chart->framerate));
            if (gst_pad_try_set_caps (chart->srcpad, newcaps) <= 0) {
-             gst_element_error (GST_ELEMENT (chart),
-                                "chart: could not negotiate format");
+             gst_element_gerror(GST_ELEMENT (chart), GST_ERROR_UNKNOWN,
+               g_strdup ("unconverted error, file a bug"),
+               g_strdup ("chart: could not negotiate format"));
              return;
            }
           }
index c20327a704b81457bd2da30430f469ca711f7d5a..fe2044393ed382f95dd3dd00493857bd4d165cdc 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 2fa602f71792a06557a63ecd959e8ff54a78e49b..b0a0bb76ae13aacdc284f65f597ebed70fd01c04 100644 (file)
@@ -625,7 +625,9 @@ gst_modplug_loop (GstElement *element)
     
     if (!GST_PAD_CAPS (modplug->srcpad) &&
         modplug_negotiate (modplug) <= 0) {
-      gst_element_error (GST_ELEMENT (modplug), "could not negotiate format");
+      gst_element_gerror (GST_ELEMENT (modplug), GST_ERROR_CAPS_NEGOTIATION,
+                         g_strdup ("could not negotiate format"),
+                         g_strdup ("could not negotiate format"));
       return;
     }
         
index 4af360fd8d7792463fe643c55d341ec1b6a6a6f8..e82d7588e4471a3ee9d2b4cb71d02321f1aa6c09 100644 (file)
@@ -198,8 +198,9 @@ mp1videoparse_parse_seq (Mp1VideoParse *mp1videoparse, GstBuffer *buf)
     gst_caps_debug (caps, "New mpeg1videoparse caps");
 
     if (gst_pad_try_set_caps (mp1videoparse->srcpad, caps) <= 0) {
-      gst_element_error (GST_ELEMENT (mp1videoparse),
-                         "mp1videoparse: failed to negotiate a new format");
+      gst_element_gerror(GST_ELEMENT (mp1videoparse), GST_ERROR_UNKNOWN,
+        g_strdup ("unconverted error, file a bug"),
+        g_strdup_printf ("mp1videoparse: failed to negotiate a new format"));
       return; 
     }
   }
index ba207c0eb6afeaa5a26024fee2473073d90a768e..58576a9ae8e0a9575a9d56b3c2cb55c9423fe502 100644 (file)
@@ -360,8 +360,9 @@ bpf_from_header (GstMPEGAudioParse *parse, unsigned long header)
                                     "channels", GST_PROPS_INT (channels),
                                     "rate",     GST_PROPS_INT (rate));
     if (gst_pad_try_set_caps(parse->srcpad, caps) <= 0) {
-      gst_element_error (GST_ELEMENT (parse),
-                         "mp3parse: failed to negotiate format with next element");
+      gst_element_gerror(GST_ELEMENT (parse), GST_ERROR_UNKNOWN,
+        g_strdup ("unconverted error, file a bug"),
+        g_strdup_printf ("mp3parse: failed to negotiate format with next element"));
     }
 
     parse->channels = channels;
index 79c061fa880cc8ae03b11e0e06da5cf81f080744..27b168c32faeb96a598a831b0f79d1b4c3fea359 100644 (file)
@@ -315,7 +315,9 @@ gst_overlay_loop (GstElement *element)
                      "framerate",GST_PROPS_FLOAT (overlay->framerate)
                    )))
     {
-      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 bf042e4c15a17933e3f0b348d2414a100e64c599..9b203fe17f39fa30111929c82082c970077becf3 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 07dad78c698dcd0aa7eb877f2db11ce17951092e..64020f6de6c3720b7ae8e8e106002e9c39261ff8 100644 (file)
@@ -280,7 +280,9 @@ speed_loop (GstElement *element)
 #include "filter.func"
 #undef _FORMAT
   } else {
-    gst_element_error (element, "capsnego was never performed, bailing...");
+    gst_element_gerror(element, GST_ERROR_UNKNOWN,
+      g_strdup ("unconverted error, file a bug"),
+      g_strdup_printf("capsnego was never performed, bailing..."));
     gst_element_yield (element);
   }
 }
index d96061a05806389cc18b56c922833fa536a2543e..54702e5cf25f0ae2aaee8ac8f76cbb39b18fd8a4 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;
     }
   }