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 7f0a1e5d71bfd9bb867b79318d2e66ffd6d28bdb..8c665a151bec80bf9d6dbb355fde83377b429e0e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+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:
index 8ddef4ab43d59c00c704db635956eaee44627743..31e195c972aa00ef22e58d562455fcfcfd5df010 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 6939fb452a9c8cf78c3be58a3bfb0f5603dc195d..64501eed73de426bb38e105407e7b5be2c8729d4 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 cb65d7d1f14f801d1e0b4343427bede6313fbd34..a3d3b6512c34548f2f53dab23e5256ddb72ea634 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 683ccc98cb6962903355d8648354f2c681497016..f4e6aa7856662c2f2c4ee29f1c5510ae28838793 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 ec8fc44c118e8439311509a1f022fb5ea379bd54..b17841d2fd72bd95b87ded812a0fffa2081add57 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 18f264fa6f8432bdbb8026da5b1e5583630aaad8..a2809e9f38918e42fd5e9bb18ce26c54a9569c16 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;