mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
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:
parent
aaa193fce3
commit
31ce2b47c6
2 changed files with 6 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue