mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
make bytestream use the shiny new timestamp macros
Original commit message from CVS: make bytestream use the shiny new timestamp macros
This commit is contained in:
parent
4bf4de13ed
commit
ef0f37e429
1 changed files with 2 additions and 4 deletions
|
@ -159,7 +159,6 @@ gst_bytestream_get_next_buf (GstByteStream *bs)
|
|||
{
|
||||
GstBuffer *nextbuf, *lastbuf, *headbuf;
|
||||
GSList *end;
|
||||
GstClockTime ts;
|
||||
|
||||
/* if there is an event pending, return FALSE */
|
||||
if (bs->event)
|
||||
|
@ -176,9 +175,8 @@ gst_bytestream_get_next_buf (GstByteStream *bs)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
ts = GST_BUFFER_TIMESTAMP (nextbuf);
|
||||
if (ts != GST_CLOCK_TIME_NONE)
|
||||
bs->last_ts = ts;
|
||||
if (GST_BUFFER_TIMESTAMP_IS_VALID (nextbuf))
|
||||
bs->last_ts = GST_BUFFER_TIMESTAMP (nextbuf);
|
||||
|
||||
bs_print ("get_next_buf: got buffer of %d bytes", GST_BUFFER_SIZE (nextbuf));
|
||||
|
||||
|
|
Loading…
Reference in a new issue