diff options
author | Armando Taffarel Neto <taffarel@solis.coop.br> | 2007-11-15 08:28:29 +0000 |
---|---|---|
committer | Thijs Vermeir <thijsvermeir@gmail.com> | 2007-11-15 08:28:29 +0000 |
commit | 88f5ef13bf5e8203b88b21fd2392b639a0161665 (patch) | |
tree | 2ce38e4ad7cebf8f277249b115aa3895cdd8f0c0 | |
parent | 7ec3ec9dd9967cf5a1889f78b8c77c1ed5b56c8a (diff) | |
download | gst-plugins-bad-88f5ef13bf5e8203b88b21fd2392b639a0161665.tar.gz gst-plugins-bad-88f5ef13bf5e8203b88b21fd2392b639a0161665.tar.bz2 gst-plugins-bad-88f5ef13bf5e8203b88b21fd2392b639a0161665.zip |
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
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | gst/librfb/gstrfbsrc.c | 3 |
2 files changed, 9 insertions, 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): diff --git a/gst/librfb/gstrfbsrc.c b/gst/librfb/gstrfbsrc.c index 37757156..0f4af6c1 100644 --- a/gst/librfb/gstrfbsrc.c +++ b/gst/librfb/gstrfbsrc.c @@ -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; } |