signedness fixes

Original commit message from CVS:
signedness fixes
This commit is contained in:
Thomas Vander Stichele 2005-10-15 00:15:43 +00:00
parent 58db19c2e7
commit 9ffd425b5d
3 changed files with 4 additions and 4 deletions

View 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);

View 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,

View 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);