From cfbf5bf16db213ff2149d61d517b79a192ca16c5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Sat, 10 May 2014 22:47:56 +0200 Subject: [PATCH] omxvideodec: Set nTickCount based on the buffer's duration instead of something wrong --- omx/gstomxvideodec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/omx/gstomxvideodec.c b/omx/gstomxvideodec.c index 84812d8..256694c 100644 --- a/omx/gstomxvideodec.c +++ b/omx/gstomxvideodec.c @@ -2193,7 +2193,7 @@ gst_omx_video_dec_handle_frame (GstVideoDecoder * decoder, if (duration != GST_CLOCK_TIME_NONE && offset == 0) { buf->omx_buf->nTickCount = - gst_util_uint64_scale (buf->omx_buf->nFilledLen, duration, size); + gst_util_uint64_scale (duration, OMX_TICKS_PER_SECOND, GST_SECOND); self->last_upstream_ts += duration; } else { buf->omx_buf->nTickCount = 0; -- 2.7.4