mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-29 23:32:04 +02:00
Merge pull request #299 from Rafostar/web-fix
api: Do not set default user-agent string
This commit is contained in:
16
lib/gst/clapper/gstclapper.c
vendored
16
lib/gst/clapper/gstclapper.c
vendored
@@ -3166,26 +3166,16 @@ static void
|
||||
element_setup_cb (GstElement * playbin, GstElement * element, GstClapper * self)
|
||||
{
|
||||
GstElementFactory *factory;
|
||||
GParamSpec *prop;
|
||||
|
||||
factory = gst_element_get_factory (element);
|
||||
if (factory) {
|
||||
if ((factory = gst_element_get_factory (element))) {
|
||||
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);
|
||||
}
|
||||
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) {
|
||||
const gchar *user_agent =
|
||||
"Mozilla/5.0 (X11; Linux x86_64; rv:86.0) Gecko/20100101 Firefox/86.0";
|
||||
|
||||
GST_INFO_OBJECT (self, "Setting element user-agent: %s", user_agent);
|
||||
g_object_set (element, "user-agent", user_agent, NULL);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user