]> git.karo-electronics.de Git - linux-beck.git/commitdiff
[media] solo6x10: use v4l2_get_timestamp to fill in buffer timestamp
authorHans Verkuil <hans.verkuil@cisco.com>
Fri, 20 Nov 2015 09:16:56 +0000 (07:16 -0200)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Fri, 18 Dec 2015 15:49:47 +0000 (13:49 -0200)
The timestamp of a v4l2_buffer was advertised as being CLOCK_MONOTONIC,
but instead a timestamp from a header field was used. This is inconsistent
and not what applications expect. Use v4l2_get_timestamp to properly
set the timestamp.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/pci/solo6x10/solo6x10-v4l2-enc.c

index 1f81f8d3649e55515c87db7534c3ceeab6993386..5b7853b75d2a4a55fc005a8d43c977534893b993 100644 (file)
@@ -531,8 +531,7 @@ static int solo_enc_fillbuf(struct solo_enc_dev *solo_enc,
 
        if (!ret) {
                vbuf->sequence = solo_enc->sequence++;
-               vbuf->timestamp.tv_sec = vop_sec(vh);
-               vbuf->timestamp.tv_usec = vop_usec(vh);
+               v4l2_get_timestamp(&vbuf->timestamp);
 
                /* Check for motion flags */
                if (solo_is_motion_on(solo_enc) && enc_buf->motion) {