mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
gst/udp/gstmultiudpsink.c: Turn a g_print into a DEBUG line.
Original commit message from CVS: * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add): Turn a g_print into a DEBUG line.
This commit is contained in:
parent
d5e01fa63f
commit
64faced49c
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-08-16 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
|
||||
Turn a g_print into a DEBUG line.
|
||||
|
||||
2006-08-13 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* sys/oss/gstossmixer.c: (gst_ossmixer_open), (gst_ossmixer_new):
|
||||
|
|
|
@ -473,7 +473,7 @@ gst_multiudpsink_add (GstMultiUDPSink * sink, const gchar * host, gint port)
|
|||
if (inet_aton (host, &addr)) {
|
||||
/* check if its a multicast address */
|
||||
if ((ntohl (addr.s_addr) & 0xe0000000) == 0xe0000000) {
|
||||
printf ("multicast address detected\n");
|
||||
GST_DEBUG_OBJECT (sink, "multicast address detected");
|
||||
client->multi_addr.imr_multiaddr.s_addr = addr.s_addr;
|
||||
client->multi_addr.imr_interface.s_addr = INADDR_ANY;
|
||||
|
||||
|
|
Loading…
Reference in a new issue