diff options
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/DocBook/media/v4l/compat.xml | 8 | ||||
-rw-r--r-- | Documentation/DocBook/media/v4l/v4l2.xml | 9 | ||||
-rw-r--r-- | Documentation/DocBook/media/v4l/vidioc-queryctrl.xml | 9 |
3 files changed, 25 insertions, 1 deletions
diff --git a/Documentation/DocBook/media/v4l/compat.xml b/Documentation/DocBook/media/v4l/compat.xml index ce1004a7da52..91410b6e7e08 100644 --- a/Documentation/DocBook/media/v4l/compat.xml +++ b/Documentation/DocBook/media/v4l/compat.xml | |||
@@ -2370,6 +2370,14 @@ that used it. It was originally scheduled for removal in 2.6.35. | |||
2370 | </listitem> | 2370 | </listitem> |
2371 | </orderedlist> | 2371 | </orderedlist> |
2372 | </section> | 2372 | </section> |
2373 | <section> | ||
2374 | <title>V4L2 in Linux 3.2</title> | ||
2375 | <orderedlist> | ||
2376 | <listitem> | ||
2377 | <para>V4L2_CTRL_FLAG_VOLATILE was added to signal volatile controls to userspace.</para> | ||
2378 | </listitem> | ||
2379 | </orderedlist> | ||
2380 | </section> | ||
2373 | 2381 | ||
2374 | <section id="other"> | 2382 | <section id="other"> |
2375 | <title>Relation of V4L2 to other Linux multimedia APIs</title> | 2383 | <title>Relation of V4L2 to other Linux multimedia APIs</title> |
diff --git a/Documentation/DocBook/media/v4l/v4l2.xml b/Documentation/DocBook/media/v4l/v4l2.xml index 0d05e8747c12..40132c277647 100644 --- a/Documentation/DocBook/media/v4l/v4l2.xml +++ b/Documentation/DocBook/media/v4l/v4l2.xml | |||
@@ -128,6 +128,13 @@ structs, ioctls) must be noted in more detail in the history chapter | |||
128 | applications. --> | 128 | applications. --> |
129 | 129 | ||
130 | <revision> | 130 | <revision> |
131 | <revnumber>3.2</revnumber> | ||
132 | <date>2011-08-26</date> | ||
133 | <authorinitials>hv</authorinitials> | ||
134 | <revremark>Added V4L2_CTRL_FLAG_VOLATILE.</revremark> | ||
135 | </revision> | ||
136 | |||
137 | <revision> | ||
131 | <revnumber>3.1</revnumber> | 138 | <revnumber>3.1</revnumber> |
132 | <date>2011-06-27</date> | 139 | <date>2011-06-27</date> |
133 | <authorinitials>mcc, po, hv</authorinitials> | 140 | <authorinitials>mcc, po, hv</authorinitials> |
@@ -410,7 +417,7 @@ and discussions on the V4L mailing list.</revremark> | |||
410 | </partinfo> | 417 | </partinfo> |
411 | 418 | ||
412 | <title>Video for Linux Two API Specification</title> | 419 | <title>Video for Linux Two API Specification</title> |
413 | <subtitle>Revision 3.1</subtitle> | 420 | <subtitle>Revision 3.2</subtitle> |
414 | 421 | ||
415 | <chapter id="common"> | 422 | <chapter id="common"> |
416 | &sub-common; | 423 | &sub-common; |
diff --git a/Documentation/DocBook/media/v4l/vidioc-queryctrl.xml b/Documentation/DocBook/media/v4l/vidioc-queryctrl.xml index 677ea646c29f..0ac0057a51c4 100644 --- a/Documentation/DocBook/media/v4l/vidioc-queryctrl.xml +++ b/Documentation/DocBook/media/v4l/vidioc-queryctrl.xml | |||
@@ -406,6 +406,15 @@ flag is typically present for relative controls or action controls where | |||
406 | writing a value will cause the device to carry out a given action | 406 | writing a value will cause the device to carry out a given action |
407 | (⪚ motor control) but no meaningful value can be returned.</entry> | 407 | (⪚ motor control) but no meaningful value can be returned.</entry> |
408 | </row> | 408 | </row> |
409 | <row> | ||
410 | <entry><constant>V4L2_CTRL_FLAG_VOLATILE</constant></entry> | ||
411 | <entry>0x0080</entry> | ||
412 | <entry>This control is volatile, which means that the value of the control | ||
413 | changes continuously. A typical example would be the current gain value if the device | ||
414 | is in auto-gain mode. In such a case the hardware calculates the gain value based on | ||
415 | the lighting conditions which can change over time. Note that setting a new value for | ||
416 | a volatile control will have no effect. The new value will just be ignored.</entry> | ||
417 | </row> | ||
409 | </tbody> | 418 | </tbody> |
410 | </tgroup> | 419 | </tgroup> |
411 | </table> | 420 | </table> |