From a87811f49a55794e520de622e4faad2a455420f0 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 16 Oct 2009 10:54:31 +0200 Subject: [PATCH] basertppayload: small comment fix --- gst-libs/gst/rtp/gstbasertppayload.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst-libs/gst/rtp/gstbasertppayload.c b/gst-libs/gst/rtp/gstbasertppayload.c index eaa0f9381c..e3b4d7f8ab 100644 --- a/gst-libs/gst/rtp/gstbasertppayload.c +++ b/gst-libs/gst/rtp/gstbasertppayload.c @@ -651,7 +651,8 @@ find_timestamp (GstBuffer ** buffer, guint group, guint idx, HeaderData * data) data->timestamp = GST_BUFFER_TIMESTAMP (*buffer); data->offset = GST_BUFFER_OFFSET (*buffer); - /* stop when we find a timestamp */ + /* stop when we find a timestamp. We take whatever offset is associated with + * the timestamp (if any) to do perfect timestamps when we need to. */ if (data->timestamp != -1) return GST_BUFFER_LIST_END; else