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:
Armando Taffarel Neto 2007-11-15 08:28:29 +00:00 committed by Thijs Vermeir
parent 7ec3ec9dd9
commit 88f5ef13bf
2 changed files with 9 additions and 0 deletions

View file

@ -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):

View file

@ -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;
}