Detect used GStreamer plugin names

Allows seeing what plugins are used with GST_DEBUG=Clapper:4. This is also needed for yet to come functionality of setting elements props.
This commit is contained in:
Rafał Dzięgiel
2021-06-01 21:57:14 +02:00
parent 95c8316af6
commit 1f4698448a

View File

@@ -2930,9 +2930,21 @@ mute_notify_cb (G_GNUC_UNUSED GObject * obj, G_GNUC_UNUSED GParamSpec * pspec,
static void static void
element_setup_cb (GstElement * playbin, GstElement * element, GstClapper * self) element_setup_cb (GstElement * playbin, GstElement * element, GstClapper * self)
{ {
GParamSpec *prop = g_object_class_find_property (G_OBJECT_GET_CLASS (element), GstElementFactory *factory;
"user-agent"); GParamSpec *prop;
factory = gst_element_get_factory (element);
if (factory) {
gchar *plugin_name = gst_object_get_name (GST_OBJECT_CAST (factory));
if (plugin_name) {
GST_INFO_OBJECT (self, "Plugin setup: %s", plugin_name);
/* TODO: Set plugin props */
}
g_free (plugin_name);
}
prop = g_object_class_find_property (G_OBJECT_GET_CLASS (element), "user-agent");
if (prop && prop->value_type == G_TYPE_STRING) { if (prop && prop->value_type == G_TYPE_STRING) {
const gchar *user_agent = const gchar *user_agent =
"Mozilla/5.0 (X11; Linux x86_64; rv:86.0) Gecko/20100101 Firefox/86.0"; "Mozilla/5.0 (X11; Linux x86_64; rv:86.0) Gecko/20100101 Firefox/86.0";