summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2011-02-02 18:27:52 +0100
committerWim Taymans <wim.taymans@collabora.co.uk>2011-02-02 18:30:47 +0100
commit61382aad280abfd719c5ce23b4cd0fe34552b1c1 (patch)
tree7b7b880073efc7a0cb6696755b29b82efe7abc8a
parent8598aaf81b2d8ba601ff5407b3084e525824ce1c (diff)
source: fix type of ntpnstime
-rw-r--r--gst/rtpmanager/rtpsource.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtpmanager/rtpsource.c b/gst/rtpmanager/rtpsource.c
index e7872d808..fb9e03955 100644
--- a/gst/rtpmanager/rtpsource.c
+++ b/gst/rtpmanager/rtpsource.c
@@ -1361,7 +1361,7 @@ rtp_source_process_sr (RTPSource * src, GstClockTime time, guint64 ntptime,
1361 * Update the report block in @src. 1361 * Update the report block in @src.
1362 */ 1362 */
1363void 1363void
1364rtp_source_process_rb (RTPSource * src, GstClockTime ntpnstime, 1364rtp_source_process_rb (RTPSource * src, guint64 ntpnstime,
1365 guint8 fractionlost, gint32 packetslost, guint32 exthighestseq, 1365 guint8 fractionlost, gint32 packetslost, guint32 exthighestseq,
1366 guint32 jitter, guint32 lsr, guint32 dlsr) 1366 guint32 jitter, guint32 lsr, guint32 dlsr)
1367{ 1367{