mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
Forgot to set the name on a new schedulerfactory, oops
Original commit message from CVS: Forgot to set the name on a new schedulerfactory, oops
This commit is contained in:
parent
8e19b6a4d4
commit
6e55b3394c
2 changed files with 2 additions and 1 deletions
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit 5b6a58f419c3d6fdd4abbe9943cd17a4fd2addcc
|
Subproject commit 895baa0fa0f829ef752424a31bbb2cf68e63842e
|
|
@ -832,6 +832,7 @@ gst_scheduler_factory_new (const gchar *name, const gchar *longdesc, GType type)
|
||||||
|
|
||||||
if (!factory) {
|
if (!factory) {
|
||||||
factory = GST_SCHEDULER_FACTORY (g_object_new (GST_TYPE_SCHEDULER_FACTORY, NULL));
|
factory = GST_SCHEDULER_FACTORY (g_object_new (GST_TYPE_SCHEDULER_FACTORY, NULL));
|
||||||
|
GST_PLUGIN_FEATURE_NAME (factory) = g_strdup (name);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
g_free (factory->longdesc);
|
g_free (factory->longdesc);
|
||||||
|
|
Loading…
Reference in a new issue