From c59d8930ac1dc4a0480d6e3ba2b88cd5affe1c7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 15 Mar 2013 09:32:42 +0100 Subject: omxvideodec: Give the codec_data the timestamp of the first frame and no duration --- omx/gstomxvideodec.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/omx/gstomxvideodec.c b/omx/gstomxvideodec.c index b26c657..d4ce85a 100644 --- a/omx/gstomxvideodec.c +++ b/omx/gstomxvideodec.c @@ -2320,6 +2320,13 @@ gst_omx_video_dec_handle_frame (GstVideoDecoder * decoder, buf->omx_buf->pBuffer + buf->omx_buf->nOffset, buf->omx_buf->nFilledLen); + if (GST_CLOCK_TIME_IS_VALID (timestamp)) + buf->omx_buf->nTimeStamp = + gst_util_uint64_scale (timestamp, OMX_TICKS_PER_SECOND, GST_SECOND); + else + buf->omx_buf->nTimeStamp = 0; + buf->omx_buf->nTickCount = 0; + self->started = TRUE; err = gst_omx_port_release_buffer (port, buf); gst_buffer_replace (&self->codec_data, NULL); -- cgit v1.2.1