signedness fixes
authorThomas Vander Stichele <thomas@apestaart.org>
Sat, 15 Oct 2005 00:15:43 +0000 (00:15 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Sat, 15 Oct 2005 00:15:43 +0000 (00:15 +0000)
Original commit message from CVS:
signedness fixes

gst/gstelementfactory.c
gst/gstelementfactory.h
gst/gstpad.c

index 80b28f4..87bc13f 100644 (file)
@@ -594,7 +594,7 @@ gst_element_factory_get_static_pad_templates (GstElementFactory * factory)
  *
  * Returns: type of URIs this element supports
  */
-guint
+gint
 gst_element_factory_get_uri_type (GstElementFactory * factory)
 {
   g_return_val_if_fail (GST_IS_ELEMENT_FACTORY (factory), GST_URI_UNKNOWN);
index 761ad7a..738d660 100644 (file)
@@ -128,7 +128,7 @@ G_CONST_RETURN gchar *      gst_element_factory_get_description     (GstElementFactory
 G_CONST_RETURN gchar * gst_element_factory_get_author          (GstElementFactory *factory);
 guint                  gst_element_factory_get_num_pad_templates (GstElementFactory *factory);
 G_CONST_RETURN GList * gst_element_factory_get_static_pad_templates (GstElementFactory *factory);
-guint                  gst_element_factory_get_uri_type        (GstElementFactory *factory);           
+gint                   gst_element_factory_get_uri_type        (GstElementFactory *factory);           
 gchar **               gst_element_factory_get_uri_protocols   (GstElementFactory *factory);           
 
 GstElement*            gst_element_factory_create              (GstElementFactory *factory,
index 0e97b96..67242b5 100644 (file)
@@ -1939,7 +1939,7 @@ fixate_value (GValue * dest, const GValue * src)
     g_value_unset (&temp);
   } else if (G_VALUE_TYPE (src) == GST_TYPE_ARRAY) {
     gboolean res = FALSE;
-    gint n;
+    guint n;
 
     g_value_init (dest, GST_TYPE_ARRAY);
     for (n = 0; n < gst_value_list_get_size (src); n++) {
@@ -1991,7 +1991,7 @@ void
 gst_pad_fixate_caps (GstPad * pad, GstCaps * caps)
 {
   GstPadFixateCapsFunction fixatefunc;
-  gint n;
+  guint n;
 
   g_return_if_fail (GST_IS_PAD (pad));
   g_return_if_fail (caps != NULL);