doc-rst: crop: fix conversion on this file
The conversion on this file didn't end too well. fix the found issues: 1) Sphinix seems to not allow things like *foo :ref:`bar`*. At least on this document, it did the wrong thing. So, change the logic to something that will work fine with ReST format; 2) Some ioctl pointers were not looking nice; 3) the captions on the examples got discarded; 4) The notes specific to each example were not converted well. Again, we'll need to replace it for a simpler design, as Sphinx is a way more limited than DocBook. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
c32940a682
commit
cdaa78fe92
@ -13,11 +13,11 @@ image up or down and insert it at an arbitrary scan line and horizontal
|
|||||||
offset into a video signal.
|
offset into a video signal.
|
||||||
|
|
||||||
Applications can use the following API to select an area in the video
|
Applications can use the following API to select an area in the video
|
||||||
signal, query the default area and the hardware limits. *Despite their
|
signal, query the default area and the hardware limits.
|
||||||
name, the :ref:`VIDIOC_CROPCAP`,
|
|
||||||
:ref:`VIDIOC_G_CROP <VIDIOC_G_CROP>` and
|
**NOTE**: Despite their name, the :ref:`VIDIOC_CROPCAP <VIDIOC_CROPCAP>`,
|
||||||
:ref:`VIDIOC_S_CROP <VIDIOC_G_CROP>` ioctls apply to input as well
|
:ref:`VIDIOC_G_CROP <VIDIOC_G_CROP>` and :ref:`VIDIOC_S_CROP
|
||||||
as output devices.*
|
<VIDIOC_G_CROP>` ioctls apply to input as well as output devices.
|
||||||
|
|
||||||
Scaling requires a source and a target. On a video capture or overlay
|
Scaling requires a source and a target. On a video capture or overlay
|
||||||
device the source is the video signal, and the cropping ioctls determine
|
device the source is the video signal, and the cropping ioctls determine
|
||||||
@ -28,15 +28,19 @@ and :ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>` ioctls.
|
|||||||
|
|
||||||
On a video output device the source are the images passed in by the
|
On a video output device the source are the images passed in by the
|
||||||
application, and their size is again negotiated with the
|
application, and their size is again negotiated with the
|
||||||
``VIDIOC_G/S_FMT`` ioctls, or may be encoded in a compressed video
|
:ref:`VIDIOC_G_FMT <VIDIOC_G_FMT>` and :ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>`
|
||||||
stream. The target is the video signal, and the cropping ioctls
|
ioctls, or may be encoded in a compressed video stream. The target is
|
||||||
determine the area where the images are inserted.
|
the video signal, and the cropping ioctls determine the area where the
|
||||||
|
images are inserted.
|
||||||
|
|
||||||
Source and target rectangles are defined even if the device does not
|
Source and target rectangles are defined even if the device does not
|
||||||
support scaling or the ``VIDIOC_G/S_CROP`` ioctls. Their size (and
|
support scaling or the :ref:`VIDIOC_G_CROP <VIDIOC_G_CROP>` and
|
||||||
position where applicable) will be fixed in this case. *All capture and
|
:ref:`VIDIOC_S_CROP <VIDIOC_G_CROP>` ioctls. Their size (and position
|
||||||
output device must support the ``VIDIOC_CROPCAP`` ioctl such that
|
where applicable) will be fixed in this case.
|
||||||
applications can determine if scaling takes place.*
|
|
||||||
|
**NOTE:** All capture and output devices must support the
|
||||||
|
:ref:`VIDIOC_CROPCAP <VIDIOC_CROPCAP>` ioctl such that applications can
|
||||||
|
determine if scaling takes place.
|
||||||
|
|
||||||
|
|
||||||
Cropping Structures
|
Cropping Structures
|
||||||
@ -57,23 +61,24 @@ Cropping Structures
|
|||||||
|
|
||||||
For capture devices the coordinates of the top left corner, width and
|
For capture devices the coordinates of the top left corner, width and
|
||||||
height of the area which can be sampled is given by the ``bounds``
|
height of the area which can be sampled is given by the ``bounds``
|
||||||
substructure of the struct :ref:`v4l2_cropcap <v4l2-cropcap>`
|
substructure of the struct :ref:`v4l2_cropcap <v4l2-cropcap>` returned
|
||||||
returned by the ``VIDIOC_CROPCAP`` ioctl. To support a wide range of
|
by the :ref:`VIDIOC_CROPCAP <VIDIOC_CROPCAP>` ioctl. To support a wide
|
||||||
hardware this specification does not define an origin or units. However
|
range of hardware this specification does not define an origin or units.
|
||||||
by convention drivers should horizontally count unscaled samples
|
However by convention drivers should horizontally count unscaled samples
|
||||||
relative to 0H (the leading edge of the horizontal sync pulse, see
|
relative to 0H (the leading edge of the horizontal sync pulse, see
|
||||||
:ref:`vbi-hsync`). Vertically ITU-R line numbers of the first field
|
:ref:`vbi-hsync`). Vertically ITU-R line numbers of the first field
|
||||||
(:ref:`vbi-525`, :ref:`vbi-625`), multiplied by two if the driver
|
(see ITU R-525 line numbering for :ref:`525 lines <vbi-525>` and for
|
||||||
|
:ref:`625 lines <vbi-625>`), multiplied by two if the driver
|
||||||
can capture both fields.
|
can capture both fields.
|
||||||
|
|
||||||
The top left corner, width and height of the source rectangle, that is
|
The top left corner, width and height of the source rectangle, that is
|
||||||
the area actually sampled, is given by struct
|
the area actually sampled, is given by struct
|
||||||
:ref:`v4l2_crop <v4l2-crop>` using the same coordinate system as
|
:ref:`v4l2_crop <v4l2-crop>` using the same coordinate system as
|
||||||
struct :ref:`v4l2_cropcap <v4l2-cropcap>`. Applications can use the
|
struct :ref:`v4l2_cropcap <v4l2-cropcap>`. Applications can use the
|
||||||
``VIDIOC_G_CROP`` and ``VIDIOC_S_CROP`` ioctls to get and set this
|
:ref:`VIDIOC_G_CROP <VIDIOC_G_CROP>` and :ref:`VIDIOC_S_CROP <VIDIOC_G_CROP>`
|
||||||
rectangle. It must lie completely within the capture boundaries and the
|
ioctls to get and set this rectangle. It must lie completely within the
|
||||||
driver may further adjust the requested size and/or position according
|
capture boundaries and the driver may further adjust the requested size
|
||||||
to hardware limitations.
|
and/or position according to hardware limitations.
|
||||||
|
|
||||||
Each capture device has a default source rectangle, given by the
|
Each capture device has a default source rectangle, given by the
|
||||||
``defrect`` substructure of struct
|
``defrect`` substructure of struct
|
||||||
@ -121,8 +126,8 @@ The driver sets the image size to the closest possible values 304 × 224,
|
|||||||
then chooses the cropping rectangle closest to the requested size, that
|
then chooses the cropping rectangle closest to the requested size, that
|
||||||
is 608 × 224 (224 × 2:1 would exceed the limit 400). The offset 0, 0 is
|
is 608 × 224 (224 × 2:1 would exceed the limit 400). The offset 0, 0 is
|
||||||
still valid, thus unmodified. Given the default cropping rectangle
|
still valid, thus unmodified. Given the default cropping rectangle
|
||||||
reported by ``VIDIOC_CROPCAP`` the application can easily propose
|
reported by :ref:`VIDIOC_CROPCAP <VIDIOC_CROPCAP>` the application can
|
||||||
another offset to center the cropping rectangle.
|
easily propose another offset to center the cropping rectangle.
|
||||||
|
|
||||||
Now the application may insist on covering an area using a picture
|
Now the application may insist on covering an area using a picture
|
||||||
aspect ratio closer to the original request, so it asks for a cropping
|
aspect ratio closer to the original request, so it asks for a cropping
|
||||||
@ -139,11 +144,11 @@ reopening a device, such that piping data into or out of a device will
|
|||||||
work without special preparations. More advanced applications should
|
work without special preparations. More advanced applications should
|
||||||
ensure the parameters are suitable before starting I/O.
|
ensure the parameters are suitable before starting I/O.
|
||||||
|
|
||||||
(A video capture device is assumed; change
|
**NOTE:** on the next two examples, a video capture device is assumed;
|
||||||
``V4L2_BUF_TYPE_VIDEO_CAPTURE`` for other devices.)
|
change ``V4L2_BUF_TYPE_VIDEO_CAPTURE`` for other types of device.
|
||||||
|
|
||||||
|
|
||||||
.. code-block:: c
|
.. code-block:: c
|
||||||
|
:caption: Example 11: Resetting the cropping parameters
|
||||||
|
|
||||||
struct v4l2_cropcap cropcap;
|
struct v4l2_cropcap cropcap;
|
||||||
struct v4l2_crop crop;
|
struct v4l2_crop crop;
|
||||||
@ -168,10 +173,8 @@ ensure the parameters are suitable before starting I/O.
|
|||||||
exit (EXIT_FAILURE);
|
exit (EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
(A video capture device is assumed.)
|
|
||||||
|
|
||||||
|
|
||||||
.. code-block:: c
|
.. code-block:: c
|
||||||
|
:caption: Example 12: Simple downscaling
|
||||||
|
|
||||||
struct v4l2_cropcap cropcap;
|
struct v4l2_cropcap cropcap;
|
||||||
struct v4l2_format format;
|
struct v4l2_format format;
|
||||||
@ -196,8 +199,10 @@ ensure the parameters are suitable before starting I/O.
|
|||||||
/* We could check the actual image size now, the actual scaling factor
|
/* We could check the actual image size now, the actual scaling factor
|
||||||
or if the driver can scale at all. */
|
or if the driver can scale at all. */
|
||||||
|
|
||||||
|
**NOTE:** This example assumes an output device.
|
||||||
|
|
||||||
.. code-block:: c
|
.. code-block:: c
|
||||||
|
:caption: Example 13. Selecting an output area
|
||||||
|
|
||||||
struct v4l2_cropcap cropcap;
|
struct v4l2_cropcap cropcap;
|
||||||
struct v4l2_crop crop;
|
struct v4l2_crop crop;
|
||||||
@ -231,10 +236,10 @@ ensure the parameters are suitable before starting I/O.
|
|||||||
exit (EXIT_FAILURE);
|
exit (EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
(A video capture device is assumed.)
|
**NOTE:** This example assumes a video capture device.
|
||||||
|
|
||||||
|
|
||||||
.. code-block:: c
|
.. code-block:: c
|
||||||
|
:caption: Example 14: Current scaling factor and pixel aspect
|
||||||
|
|
||||||
struct v4l2_cropcap cropcap;
|
struct v4l2_cropcap cropcap;
|
||||||
struct v4l2_crop crop;
|
struct v4l2_crop crop;
|
||||||
@ -289,8 +294,6 @@ ensure the parameters are suitable before starting I/O.
|
|||||||
dheight = format.fmt.pix.height;
|
dheight = format.fmt.pix.height;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.. ------------------------------------------------------------------------------
|
.. ------------------------------------------------------------------------------
|
||||||
.. This file was automatically converted from DocBook-XML with the dbxml
|
.. This file was automatically converted from DocBook-XML with the dbxml
|
||||||
.. library (https://github.com/return42/sphkerneldoc). The origin XML comes
|
.. library (https://github.com/return42/sphkerneldoc). The origin XML comes
|
||||||
|
Loading…
Reference in New Issue
Block a user