+2005-10-25 Edgard Lima <edgard.lima@indt.org.br>
+
+ * gst/rtp/gstrtpg711dec.c
+ Just removed a couple of lines of weird code used during
+ development/test time.
+
2005-10-25 Edgard Lima <edgard.lima@indt.org.br>
* gst/rtp/Makefile.am
{
gint payload_len;
guint8 *payload;
- guint32 timestamp;
- static guint32 firstTS = -1;
payload_len = gst_rtpbuffer_get_payload_len (buf);
payload = gst_rtpbuffer_get_payload (buf);
- timestamp = gst_rtpbuffer_get_timestamp (buf);
-
- if (firstTS == -1) {
- firstTS = gst_rtpbuffer_get_timestamp (buf);
- }
- timestamp = gst_rtpbuffer_get_timestamp (buf) - firstTS;
-
outbuf = gst_buffer_new_and_alloc (payload_len);
- GST_BUFFER_TIMESTAMP (outbuf) = timestamp * GST_SECOND / 8000;
+ GST_BUFFER_TIMESTAMP (outbuf) =
+ gst_rtpbuffer_get_timestamp (buf) * GST_SECOND / 8000;
memcpy (GST_BUFFER_DATA (outbuf), payload, payload_len);
{
gint payload_len;
guint8 *payload;
- guint32 timestamp;
- static guint32 firstTS = -1;
payload_len = gst_rtpbuffer_get_payload_len (buf);
payload = gst_rtpbuffer_get_payload (buf);
- timestamp = gst_rtpbuffer_get_timestamp (buf);
-
- if (firstTS == -1) {
- firstTS = gst_rtpbuffer_get_timestamp (buf);
- }
- timestamp = gst_rtpbuffer_get_timestamp (buf) - firstTS;
-
outbuf = gst_buffer_new_and_alloc (payload_len);
- GST_BUFFER_TIMESTAMP (outbuf) = timestamp * GST_SECOND / 8000;
+ GST_BUFFER_TIMESTAMP (outbuf) =
+ gst_rtpbuffer_get_timestamp (buf) * GST_SECOND / 8000;
memcpy (GST_BUFFER_DATA (outbuf), payload, payload_len);