提交 5f65ca81 编写于 作者: L Lad, Prabhakar 提交者: Mauro Carvalho Chehab

[media] media: blackfin: bfin_capture: set min_buffers_needed

this patch sets the min_buffers_needed field of the vb2 queue
so that the vb2 core will make sure start_streaming() callback
is called only when we have minimum buffers queued.
Signed-off-by: NLad, Prabhakar <prabhakar.csengg@gmail.com>
Tested-by: NScott Jiang <scott.jiang.linux@gmail.com>
Signed-off-by: NHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: NMauro Carvalho Chehab <mchehab@osg.samsung.com>
上级 6692871a
...@@ -986,6 +986,7 @@ static int bcap_probe(struct platform_device *pdev) ...@@ -986,6 +986,7 @@ static int bcap_probe(struct platform_device *pdev)
q->mem_ops = &vb2_dma_contig_memops; q->mem_ops = &vb2_dma_contig_memops;
q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC; q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
q->lock = &bcap_dev->mutex; q->lock = &bcap_dev->mutex;
q->min_buffers_needed = 1;
ret = vb2_queue_init(q); ret = vb2_queue_init(q);
if (ret) if (ret)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册