mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
gsttypefind: Use _CAST variants when the type has alredy been checked.
This avoids checking the type n_typefinders * 4 times when loading the registry.
This commit is contained in:
parent
15229ab669
commit
0aff2c55b7
1 changed files with 5 additions and 5 deletions
|
@ -85,8 +85,8 @@ gst_type_find_register (GstPlugin * plugin, const gchar * name, guint rank,
|
||||||
GST_DEBUG_OBJECT (factory, "using new typefind factory for %s", name);
|
GST_DEBUG_OBJECT (factory, "using new typefind factory for %s", name);
|
||||||
g_assert (GST_IS_TYPE_FIND_FACTORY (factory));
|
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_CAST (factory), name);
|
||||||
gst_plugin_feature_set_rank (GST_PLUGIN_FEATURE (factory), rank);
|
gst_plugin_feature_set_rank (GST_PLUGIN_FEATURE_CAST (factory), rank);
|
||||||
|
|
||||||
if (factory->extensions)
|
if (factory->extensions)
|
||||||
g_strfreev (factory->extensions);
|
g_strfreev (factory->extensions);
|
||||||
|
@ -97,11 +97,11 @@ gst_type_find_register (GstPlugin * plugin, const gchar * name, guint rank,
|
||||||
factory->user_data = data;
|
factory->user_data = data;
|
||||||
factory->user_data_notify = data_notify;
|
factory->user_data_notify = data_notify;
|
||||||
if (plugin && plugin->desc.name) {
|
if (plugin && plugin->desc.name) {
|
||||||
GST_PLUGIN_FEATURE (factory)->plugin_name = plugin->desc.name; /* interned string */
|
GST_PLUGIN_FEATURE_CAST (factory)->plugin_name = plugin->desc.name; /* interned string */
|
||||||
} else {
|
} else {
|
||||||
GST_PLUGIN_FEATURE (factory)->plugin_name = "NULL";
|
GST_PLUGIN_FEATURE_CAST (factory)->plugin_name = "NULL";
|
||||||
}
|
}
|
||||||
GST_PLUGIN_FEATURE (factory)->loaded = TRUE;
|
GST_PLUGIN_FEATURE_CAST (factory)->loaded = TRUE;
|
||||||
|
|
||||||
gst_registry_add_feature (gst_registry_get_default (),
|
gst_registry_add_feature (gst_registry_get_default (),
|
||||||
GST_PLUGIN_FEATURE (factory));
|
GST_PLUGIN_FEATURE (factory));
|
||||||
|
|
Loading…
Reference in a new issue