[gstreamer-bugs] [Bug 613206] New: [rtph264depay] wrong timestamp for gst_base_rtp_depayload_push_ts?
GStreamer (bugzilla.gnome.org)
bugzilla at gnome.org
Wed Mar 17 17:46:42 PDT 2010
https://bugzilla.gnome.org/show_bug.cgi?id=613206
GStreamer | gst-plugins-good | 0.10.21
Summary: [rtph264depay] wrong timestamp for
gst_base_rtp_depayload_push_ts?
Classification: Desktop
Product: GStreamer
Version: 0.10.21
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: Normal
Component: gst-plugins-good
AssignedTo: gstreamer-bugs at lists.sourceforge.net
ReportedBy: dxssx.dxssx at gmail.com
QAContact: gstreamer-bugs at lists.sourceforge.net
GNOME target: ---
GNOME version: ---
Created an attachment (id=156419)
--> (https://bugzilla.gnome.org/attachment.cgi?id=156419)
a patch for this
Current code use the following code to generate a timestamp for
gst_base_rtp_depayload_push_ts:
ts = GST_BUFFER_TIMESTAMP (buf);
ts = gst_segment_to_running_time (&depayload->segment, GST_FORMAT_TIME, ts);
But I think it should be rtptime like below:
ts = gst_rtp_buffer_get_timestamp (buf);
Although the timestamp will never be used in current gstreamer, this bug may be
a problem in future.
--
Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the Gstreamer-bugs
mailing list