gst/gstpreset.c: Use g_unlink instead of unlink.
authorStefan Kost <ensonic@users.sourceforge.net>
Fri, 31 Oct 2008 14:24:49 +0000 (14:24 +0000)
committerStefan Kost <ensonic@users.sourceforge.net>
Fri, 31 Oct 2008 14:24:49 +0000 (14:24 +0000)
Original commit message from CVS:
* gst/gstpreset.c:
Use g_unlink instead of unlink.
* gst/gststructure.c:
Use glib type.
* gst/gstutils.c:
Add a FIXME:.
* gst/gsttaglist.c:
* gst/gsttypefind.c:
* gst/gstvalue.c:
Formatting & whitespaces.

ChangeLog
gst/gstpreset.c
gst/gststructure.c
gst/gsttaglist.c
gst/gsttypefind.c
gst/gstutils.c
gst/gstvalue.c

index 7f0a1e5..8c665a1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,21 @@
 2008-10-31  Stefan Kost  <ensonic@users.sf.net>
 
+       * gst/gstpreset.c:
+         Use g_unlink instead of unlink.
+
+       * gst/gststructure.c:
+         Use glib type.
+
+       * gst/gstutils.c:
+         Add a FIXME:.
+
+       * gst/gsttaglist.c:
+       * gst/gsttypefind.c:
+       * gst/gstvalue.c:
+         Formatting & whitespaces.
+
+2008-10-31  Stefan Kost  <ensonic@users.sf.net>
+
        * plugins/elements/gstidentity.c:
          Doc typo. Use return value of parent_class->event.
   
index 8ddef4a..31e195c 100644 (file)
@@ -620,7 +620,7 @@ no_presets:
     GST_WARNING_OBJECT (preset,
         "no presets, trying to unlink possibly existing preset file: '%s'",
         preset_path);
-    unlink (preset_path);
+    g_unlink (preset_path);
     return FALSE;
   }
 convert_failed:
index 6939fb4..64501ee 100644 (file)
@@ -1374,7 +1374,7 @@ gst_structure_get_fraction (const GstStructure * structure,
 
 typedef struct _GstStructureAbbreviation
 {
-  char *type_name;
+  gchar *type_name;
   GType type;
 }
 GstStructureAbbreviation;
index cb65d7d..a3d3b65 100644 (file)
@@ -811,9 +811,7 @@ gst_tag_list_add_valist (GstTagList * list, GstTagMergeMode mode,
     const gchar * tag, va_list var_args)
 {
   GstTagInfo *info;
-
   GQuark quark;
-
   gchar *error = NULL;
 
   g_return_if_fail (GST_IS_TAG_LIST (list));
@@ -858,7 +856,6 @@ gst_tag_list_add_valist_values (GstTagList * list, GstTagMergeMode mode,
     const gchar * tag, va_list var_args)
 {
   GstTagInfo *info;
-
   GQuark quark;
 
   g_return_if_fail (GST_IS_TAG_LIST (list));
index 683ccc9..f4e6aa7 100644 (file)
@@ -85,13 +85,14 @@ gst_type_find_register (GstPlugin * plugin, const gchar * name, guint rank,
   factory = g_object_new (GST_TYPE_TYPE_FIND_FACTORY, NULL);
   GST_DEBUG_OBJECT (factory, "using new typefind factory for %s", name);
   g_assert (GST_IS_TYPE_FIND_FACTORY (factory));
-  gst_plugin_feature_set_name (GST_PLUGIN_FEATURE (factory), name);
 
+  gst_plugin_feature_set_name (GST_PLUGIN_FEATURE (factory), name);
   gst_plugin_feature_set_rank (GST_PLUGIN_FEATURE (factory), rank);
+
   if (factory->extensions)
     g_strfreev (factory->extensions);
-
   factory->extensions = g_strdupv (extensions);
+
   gst_caps_replace (&factory->caps, (GstCaps *) possible_caps);
   factory->function = func;
   factory->user_data = data;
index ec8fc44..b17841d 100644 (file)
@@ -965,6 +965,7 @@ gst_element_get_compatible_pad (GstElement * element, GstPad * pad,
 
   /* try to create a new one */
   /* requesting is a little crazy, we need a template. Let's create one */
+  /* FIXME: why not gst_pad_get_pad_template (pad); */
   templcaps = gst_pad_get_caps (pad);
 
   templ = gst_pad_template_new ((gchar *) GST_PAD_NAME (pad),
index 18f264f..a2809e9 100644 (file)
@@ -2346,8 +2346,8 @@ gst_value_intersect_fraction_fraction_range (GValue * dest, const GValue * src1,
 }
 
 static gboolean
-    gst_value_intersect_fraction_range_fraction_range
-    (GValue * dest, const GValue * src1, const GValue * src2)
+gst_value_intersect_fraction_range_fraction_range (GValue * dest,
+    const GValue * src1, const GValue * src2)
 {
   GValue *min;
   GValue *max;