mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
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.
This commit is contained in:
parent
c12772c616
commit
0f4689cdf4
3 changed files with 10 additions and 20 deletions
|
@ -1,3 +1,9 @@
|
|||
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
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue