From 0f4689cdf437526642de47d24ee7e380e42dfa42 Mon Sep 17 00:00:00 2001 From: Flavio Oliveira Date: Tue, 25 Oct 2005 21:09:36 +0000 Subject: Just removed a couple of lines of weird code used during development/test time. Original commit message from CVS: Just removed a couple of lines of weird code used during development/test time. --- ChangeLog | 6 ++++++ gst/rtp/gstrtpg711dec.c | 12 ++---------- gst/rtp/gstrtpg711depay.c | 12 ++---------- 3 files changed, 10 insertions(+), 20 deletions(-) diff --git a/ChangeLog b/ChangeLog index dd257090..d554595f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-10-25 Edgard Lima + + * gst/rtp/gstrtpg711dec.c + Just removed a couple of lines of weird code used during + development/test time. + 2005-10-25 Edgard Lima * gst/rtp/Makefile.am diff --git a/gst/rtp/gstrtpg711dec.c b/gst/rtp/gstrtpg711dec.c index 6456f72c..d1feeba4 100644 --- a/gst/rtp/gstrtpg711dec.c +++ b/gst/rtp/gstrtpg711dec.c @@ -204,22 +204,14 @@ gst_rtpg711dec_chain (GstPad * pad, GstBuffer * buf) { 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); diff --git a/gst/rtp/gstrtpg711depay.c b/gst/rtp/gstrtpg711depay.c index 6456f72c..d1feeba4 100644 --- a/gst/rtp/gstrtpg711depay.c +++ b/gst/rtp/gstrtpg711depay.c @@ -204,22 +204,14 @@ gst_rtpg711dec_chain (GstPad * pad, GstBuffer * buf) { 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); -- cgit