aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/DocBook/media/v4l/controls.xml
diff options
context:
space:
mode:
authorSakari Ailus <sakari.ailus@iki.fi>2011-10-04 07:20:05 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-05-14 07:35:24 -0400
commit8c9d236ec64f1f1e7764385e7b5eae88eec7c02b (patch)
tree89f5610e7db1e0c226383b641b0309e7481fb100 /Documentation/DocBook/media/v4l/controls.xml
parent6016af82eafcb6e086a8f2a2197b46029a843d68 (diff)
[media] v4l: Image source control class
Add image source control class. This control class is intended to contain low level controls which deal with control of the image capture process --- the A/D converter in image sensors, for example. Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'Documentation/DocBook/media/v4l/controls.xml')
-rw-r--r--Documentation/DocBook/media/v4l/controls.xml86
1 files changed, 86 insertions, 0 deletions
diff --git a/Documentation/DocBook/media/v4l/controls.xml b/Documentation/DocBook/media/v4l/controls.xml
index 5e12257dfcef..43cd4958c9e8 100644
--- a/Documentation/DocBook/media/v4l/controls.xml
+++ b/Documentation/DocBook/media/v4l/controls.xml
@@ -3599,4 +3599,90 @@ interface and may change in the future.</para>
3599 to <xref linkend="itu-t81"/>, <xref linkend="jfif"/>, 3599 to <xref linkend="itu-t81"/>, <xref linkend="jfif"/>,
3600 <xref linkend="w3c-jpeg-jfif"/>.</para> 3600 <xref linkend="w3c-jpeg-jfif"/>.</para>
3601 </section> 3601 </section>
3602
3603 <section id="image-source-controls">
3604 <title>Image Source Control Reference</title>
3605
3606 <note>
3607 <title>Experimental</title>
3608
3609 <para>This is an <link
3610 linkend="experimental">experimental</link> interface and may
3611 change in the future.</para>
3612 </note>
3613
3614 <para>
3615 The Image Source control class is intended for low-level
3616 control of image source devices such as image sensors. The
3617 devices feature an analogue to digital converter and a bus
3618 transmitter to transmit the image data out of the device.
3619 </para>
3620
3621 <table pgwide="1" frame="none" id="image-source-control-id">
3622 <title>Image Source Control IDs</title>
3623
3624 <tgroup cols="4">
3625 <colspec colname="c1" colwidth="1*" />
3626 <colspec colname="c2" colwidth="6*" />
3627 <colspec colname="c3" colwidth="2*" />
3628 <colspec colname="c4" colwidth="6*" />
3629 <spanspec namest="c1" nameend="c2" spanname="id" />
3630 <spanspec namest="c2" nameend="c4" spanname="descr" />
3631 <thead>
3632 <row>
3633 <entry spanname="id" align="left">ID</entry>
3634 <entry align="left">Type</entry>
3635 </row><row rowsep="1"><entry spanname="descr" align="left">Description</entry>
3636 </row>
3637 </thead>
3638 <tbody valign="top">
3639 <row><entry></entry></row>
3640 <row>
3641 <entry spanname="id"><constant>V4L2_CID_IMAGE_SOURCE_CLASS</constant></entry>
3642 <entry>class</entry>
3643 </row>
3644 <row>
3645 <entry spanname="descr">The IMAGE_SOURCE class descriptor.</entry>
3646 </row>
3647 <row>
3648 <entry spanname="id"><constant>V4L2_CID_VBLANK</constant></entry>
3649 <entry>integer</entry>
3650 </row>
3651 <row>
3652 <entry spanname="descr">Vertical blanking. The idle period
3653 after every frame during which no image data is produced.
3654 The unit of vertical blanking is a line. Every line has
3655 length of the image width plus horizontal blanking at the
3656 pixel rate defined by
3657 <constant>V4L2_CID_PIXEL_RATE</constant> control in the
3658 same sub-device.</entry>
3659 </row>
3660 <row>
3661 <entry spanname="id"><constant>V4L2_CID_HBLANK</constant></entry>
3662 <entry>integer</entry>
3663 </row>
3664 <row>
3665 <entry spanname="descr">Horizontal blanking. The idle
3666 period after every line of image data during which no
3667 image data is produced. The unit of horizontal blanking is
3668 pixels.</entry>
3669 </row>
3670 <row>
3671 <entry spanname="id"><constant>V4L2_CID_ANALOGUE_GAIN</constant></entry>
3672 <entry>integer</entry>
3673 </row>
3674 <row>
3675 <entry spanname="descr">Analogue gain is gain affecting
3676 all colour components in the pixel matrix. The gain
3677 operation is performed in the analogue domain before A/D
3678 conversion.
3679 </entry>
3680 </row>
3681 <row><entry></entry></row>
3682 </tbody>
3683 </tgroup>
3684 </table>
3685
3686 </section>
3687
3602</section> 3688</section>