diff options
author | Sakari Ailus <sakari.ailus@iki.fi> | 2014-02-08 14:21:35 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-03-05 16:47:15 -0300 |
commit | 309f4d62eda0e864c2d4eef536cc82e41931c3c5 (patch) | |
tree | d5750f1dce1f46da1c35935cc02d344c3d4b4899 /drivers/media/platform/mem2mem_testdev.c | |
parent | 599b08929efe9b90e44b504454218a120bb062a0 (diff) | |
download | kernel_replicant_linux-309f4d62eda0e864c2d4eef536cc82e41931c3c5.tar.gz kernel_replicant_linux-309f4d62eda0e864c2d4eef536cc82e41931c3c5.tar.bz2 kernel_replicant_linux-309f4d62eda0e864c2d4eef536cc82e41931c3c5.zip |
[media] v4l: Copy timestamp source flags to destination on m2m devices
Copy the flags containing the timestamp source from source buffer flags to
the destination buffer flags on memory-to-memory devices. This is analogous
to copying the timestamp field from source to destination.
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
Acked-by: Kamil Debski <k.debski@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/platform/mem2mem_testdev.c')
-rw-r--r-- | drivers/media/platform/mem2mem_testdev.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/media/platform/mem2mem_testdev.c b/drivers/media/platform/mem2mem_testdev.c index 02a40c541e4e..4bb5e883df89 100644 --- a/drivers/media/platform/mem2mem_testdev.c +++ b/drivers/media/platform/mem2mem_testdev.c @@ -239,6 +239,9 @@ static int device_process(struct m2mtest_ctx *ctx, memcpy(&out_vb->v4l2_buf.timestamp, &in_vb->v4l2_buf.timestamp, sizeof(struct timeval)); + out_vb->v4l2_buf.flags &= ~V4L2_BUF_FLAG_TSTAMP_SRC_MASK; + out_vb->v4l2_buf.flags |= + in_vb->v4l2_buf.flags & V4L2_BUF_FLAG_TSTAMP_SRC_MASK; switch (ctx->mode) { case MEM2MEM_HFLIP | MEM2MEM_VFLIP: |