summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndriy Gelman <andriy.gelman@gmail.com>2020-05-09 19:34:06 -0400
committerAndriy Gelman <andriy.gelman@gmail.com>2020-05-09 19:35:05 -0400
commitc76b2bf0b4e752455e5ffbd7dee12e935c2eaccd (patch)
tree960af26e9dc2bcf4004bad184c62057b71f20f48
parente3b49aaa4eed7955e243b110e1209960ba5aaf74 (diff)
avcodec/v4l2_context: Finish draining if V4L2_BUF_FLAG_LAST is set
V4L2 api can indicate that flushing of the capture buffers is completed by setting the V4L2_BUF_FLAG_LAST flag. Use guards because the flag was only defined in Linux v4.2. Reference: linux/Documentation/media/uapi/v4l/dev-decoder.rst "The client must continue to handle both queues independently, similarly to normal decode operation. This includes: ... - queuing and dequeuing CAPTURE buffers, until a buffer marked with the V4L2_BUF_FLAG_LAST flag is dequeued" Reviewed-by: Ming Qian <ming.qian@nxp.com> Signed-off-by: Andriy Gelman <andriy.gelman@gmail.com>
-rw-r--r--libavcodec/v4l2_context.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/v4l2_context.c b/libavcodec/v4l2_context.c
index 52dedb119f..29b144ed73 100644
--- a/libavcodec/v4l2_context.c
+++ b/libavcodec/v4l2_context.c
@@ -412,6 +412,10 @@ dequeue:
ctx->done = 1;
return NULL;
}
+#ifdef V4L2_BUF_FLAG_LAST
+ if (buf.flags & V4L2_BUF_FLAG_LAST)
+ ctx->done = 1;
+#endif
}
avbuf = &ctx->buffers[buf.index];