mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
basertppay: don't print RTP timestamps as clocktime
Don't try to print the RTP timestamp as a GstClockTime, it's just a guint32. Fixes #594757
This commit is contained in:
parent
662a31983f
commit
e2e7ae0129
1 changed files with 1 additions and 2 deletions
|
@ -730,8 +730,7 @@ gst_basertppayload_prepare_push (GstBaseRTPPayload * payload,
|
|||
data.rtptime = payload->ts_base + rtime;
|
||||
} else {
|
||||
GST_LOG_OBJECT (payload,
|
||||
"Using previous timestamp %" GST_TIME_FORMAT " for RTP timestamp",
|
||||
GST_TIME_ARGS (payload->timestamp));
|
||||
"Using previous RTP timestamp %" G_GUINT32_FORMAT, payload->timestamp);
|
||||
/* no timestamp to convert, take previous timestamp */
|
||||
data.rtptime = payload->timestamp;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue