From 5c8fff0807c69d3d20ccc98272ed035270c427d1 Mon Sep 17 00:00:00 2001 From: Jeff Wilson Date: Fri, 27 Oct 2023 22:45:53 +0000 Subject: [PATCH] examples: webrtc: Actually create the custom ICE agent Part-of: --- subprojects/gst-examples/webrtc/sendrecv/gst/custom_agent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-examples/webrtc/sendrecv/gst/custom_agent.c b/subprojects/gst-examples/webrtc/sendrecv/gst/custom_agent.c index b059669d4b..126d2dd2c7 100644 --- a/subprojects/gst-examples/webrtc/sendrecv/gst/custom_agent.c +++ b/subprojects/gst-examples/webrtc/sendrecv/gst/custom_agent.c @@ -166,5 +166,5 @@ customice_agent_init (CustomICEAgent * ice) CustomICEAgent * customice_agent_new (const gchar * name) { - return g_object_new (GST_TYPE_WEBRTC_NICE, "name", name, NULL); + return g_object_new (CUSTOMICE_TYPE_AGENT, "name", name, NULL); }