mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:36:20 +00:00
udp: log WARNING debug message if UDP multicast is likely to be broken
This commit is contained in:
parent
4273eccace
commit
7ccb387e85
1 changed files with 6 additions and 0 deletions
|
@ -31,6 +31,12 @@
|
||||||
static gboolean
|
static gboolean
|
||||||
plugin_init (GstPlugin * plugin)
|
plugin_init (GstPlugin * plugin)
|
||||||
{
|
{
|
||||||
|
/* not using GLIB_CHECK_VERSION on purpose, run-time version matters */
|
||||||
|
if (glib_check_version (2, 36, 0) != NULL) {
|
||||||
|
GST_WARNING ("Your GLib version is < 2.36, UDP multicasting support may "
|
||||||
|
"be broken, see https://bugzilla.gnome.org/show_bug.cgi?id=688378");
|
||||||
|
}
|
||||||
|
|
||||||
/* register info of the netaddress metadata so that we can use it from
|
/* register info of the netaddress metadata so that we can use it from
|
||||||
* multiple threads right away. Note that the plugin loading is always
|
* multiple threads right away. Note that the plugin loading is always
|
||||||
* serialized */
|
* serialized */
|
||||||
|
|
Loading…
Reference in a new issue