mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
ges: Remove unused functions
This commit is contained in:
parent
f88cc0f433
commit
0a25ed00a1
2 changed files with 0 additions and 20 deletions
|
@ -822,15 +822,6 @@ ges_meta_container_get_float (GESMetaContainer * container,
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
static inline gchar *
|
||||
_gst_strdup0 (const gchar * s)
|
||||
{
|
||||
if (s == NULL || *s == '\0')
|
||||
return NULL;
|
||||
|
||||
return g_strdup (s);
|
||||
}
|
||||
|
||||
/**
|
||||
* ges_meta_container_get_string:
|
||||
* @container: Target container
|
||||
|
|
|
@ -127,17 +127,6 @@ pitivi_can_load_uri (GESFormatter * dummy_instance, const gchar * uri,
|
|||
return ret;
|
||||
}
|
||||
|
||||
/* Project saving functions */
|
||||
|
||||
static void inline
|
||||
write_int_attribute (xmlTextWriterPtr writer, guint64 nb, const gchar * attr,
|
||||
const gchar * type)
|
||||
{
|
||||
gchar *str = g_strdup_printf ("%s%" G_GUINT64_FORMAT, type, nb);
|
||||
xmlTextWriterWriteAttribute (writer, BAD_CAST attr, BAD_CAST str);
|
||||
g_free (str);
|
||||
}
|
||||
|
||||
/* Project loading functions */
|
||||
|
||||
/* Return: a GHashTable containing:
|
||||
|
|
Loading…
Reference in a new issue