Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
56 lines
1.4 KiB
ReStructuredText
56 lines
1.4 KiB
ReStructuredText
.. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
|
|
.. c:namespace:: V4L
|
|
|
|
.. _v4l2-selection-flags:
|
|
|
|
***************
|
|
Selection flags
|
|
***************
|
|
|
|
.. _v4l2-selection-flags-table:
|
|
|
|
.. raw:: latex
|
|
|
|
\small
|
|
|
|
.. tabularcolumns:: |p{5.6cm}|p{2.0cm}|p{6.5cm}|p{1.2cm}|p{1.2cm}|
|
|
|
|
.. cssclass:: longtable
|
|
|
|
.. flat-table:: Selection flag definitions
|
|
:header-rows: 1
|
|
:stub-columns: 0
|
|
|
|
* - Flag name
|
|
- id
|
|
- Definition
|
|
- Valid for V4L2
|
|
- Valid for V4L2 subdev
|
|
* - ``V4L2_SEL_FLAG_GE``
|
|
- (1 << 0)
|
|
- Suggest the driver it should choose greater or equal rectangle (in
|
|
size) than was requested. Albeit the driver may choose a lesser
|
|
size, it will only do so due to hardware limitations. Without this
|
|
flag (and ``V4L2_SEL_FLAG_LE``) the behaviour is to choose the
|
|
closest possible rectangle.
|
|
- Yes
|
|
- Yes
|
|
* - ``V4L2_SEL_FLAG_LE``
|
|
- (1 << 1)
|
|
- Suggest the driver it should choose lesser or equal rectangle (in
|
|
size) than was requested. Albeit the driver may choose a greater
|
|
size, it will only do so due to hardware limitations.
|
|
- Yes
|
|
- Yes
|
|
* - ``V4L2_SEL_FLAG_KEEP_CONFIG``
|
|
- (1 << 2)
|
|
- The configuration must not be propagated to any further processing
|
|
steps. If this flag is not given, the configuration is propagated
|
|
inside the subdevice to all further processing steps.
|
|
- No
|
|
- Yes
|
|
|
|
.. raw:: latex
|
|
|
|
\normalsize
|