mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-15 20:05:40 +00:00
gst/librfb/gstrfbsrc.c: Set the timestamp for the output buffers
Original commit message from CVS: patch by: Armando Taffarel Neto <taffarel@solis.coop.br> * gst/librfb/gstrfbsrc.c: Set the timestamp for the output buffers
This commit is contained in:
parent
7ec3ec9dd9
commit
88f5ef13bf
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-11-15 Thijs Vermeir <thijsvermeir@gmail.com>
|
||||
|
||||
patch by: Armando Taffarel Neto <taffarel@solis.coop.br>
|
||||
* gst/librfb/gstrfbsrc.c:
|
||||
Set the timestamp for the output buffers
|
||||
|
||||
2007-11-14 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* tests/check/elements/spectrum.c: (GST_START_TEST):
|
||||
|
|
|
@ -401,6 +401,9 @@ gst_rfb_src_create (GstPushSrc * psrc, GstBuffer ** outbuf)
|
|||
|
||||
memcpy (GST_BUFFER_DATA (*outbuf), decoder->frame, newsize);
|
||||
GST_BUFFER_SIZE (*outbuf) = newsize;
|
||||
GST_BUFFER_TIMESTAMP (*outbuf) =
|
||||
gst_clock_get_time (GST_ELEMENT_CLOCK (src)) -
|
||||
GST_ELEMENT_CAST (src)->base_time;
|
||||
|
||||
return GST_FLOW_OK;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue