gst/sdp/gstsdpdemux.c: Use floating point math for latencies < 0 sec in log output.

Original commit message from CVS:
* gst/sdp/gstsdpdemux.c:
Use floating point math for latencies < 0 sec in log output.
This commit is contained in:
Stefan Kost 2008-07-07 10:43:45 +00:00
parent aaa193fce3
commit 31ce2b47c6
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-07-07 Stefan Kost <ensonic@users.sf.net>
* gst/sdp/gstsdpdemux.c:
Use floating point math for latencies < 0 sec in log output.
2008-07-06 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll2.inc:

View file

@ -1120,7 +1120,7 @@ gst_sdp_demux_handle_message (GstBin * bin, GstMessage * message)
GST_ELEMENT_ERROR (demux, RESOURCE, READ, (NULL),
("Could not receive any UDP packets for %.4f seconds, maybe your "
"firewall is blocking it.",
gst_guint64_to_gdouble (demux->udp_timeout / 1000000)));
gst_guint64_to_gdouble (demux->udp_timeout / 1000000.0)));
}
return;
}