diff options
author | NĂcolas F. R. A. Prado <nfraprado@collabora.com> | 2021-03-17 16:28:31 -0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-03-20 22:11:42 +0200 |
commit | aade93f503a313217dcaf117b1ba43be473bfe3f (patch) | |
tree | 4cc07ea4694a480bbc98cca95bafe636c65241aa /Documentation/guides | |
parent | f87be145cd023e81862391a010b9c29af50770ba (diff) |
Documentation: guides: pipeline-handler: Fix capture flag usage
The number of frames passed to the -C flag of cam should come right
after it, without a space, otherwise the value is discarded.
The log below already showed the correct usage, but the command in the
code-block was wrong, so fix it.
Signed-off-by: NĂcolas F. R. A. Prado <nfraprado@collabora.com>
Reviewed-by: Sebastian Fricke <sebastian.fricke@posteo.net>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'Documentation/guides')
-rw-r--r-- | Documentation/guides/pipeline-handler.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/guides/pipeline-handler.rst b/Documentation/guides/pipeline-handler.rst index 288f572c..3047e006 100644 --- a/Documentation/guides/pipeline-handler.rst +++ b/Documentation/guides/pipeline-handler.rst @@ -1434,7 +1434,7 @@ capture through the pipeline through both of the cam and qcam utilities. .. code-block:: shell ninja -C build - ./build/src/cam/cam -c vivid -C 5 + ./build/src/cam/cam -c vivid -C5 To test that the pipeline handler can detect a device, and capture input. |