+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:
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:
typedef struct _GstStructureAbbreviation
{
- char *type_name;
+ gchar *type_name;
GType type;
}
GstStructureAbbreviation;
const gchar * tag, va_list var_args)
{
GstTagInfo *info;
-
GQuark quark;
-
gchar *error = NULL;
g_return_if_fail (GST_IS_TAG_LIST (list));
const gchar * tag, va_list var_args)
{
GstTagInfo *info;
-
GQuark quark;
g_return_if_fail (GST_IS_TAG_LIST (list));
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;
/* 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),
}
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;