diff options
author | Xiaolin Zhang <xiaolin.zhang@intel.com> | 2010-04-18 23:06:50 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-05-19 12:58:03 -0300 |
commit | 35e6aa9fc38fb7f47f39711e52cb0f58fbf4441c (patch) | |
tree | ba420ac455a5a3937f631db24aac429dcbe9fa22 /Documentation/DocBook/v4l/videodev2.h.xml | |
parent | aec11e5d495a6c9b10ded81dde5b0e42b0875541 (diff) | |
download | talos-obmc-linux-35e6aa9fc38fb7f47f39711e52cb0f58fbf4441c.tar.gz talos-obmc-linux-35e6aa9fc38fb7f47f39711e52cb0f58fbf4441c.zip |
V4L/DVB: core: add support for more color effects
Add support for more color effects (negative, sketch, emboss, etc) by
extending the v4l2_colorfx enum items.
Signed-off-by: Xiaolin Zhang <xiaolin.zhang@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'Documentation/DocBook/v4l/videodev2.h.xml')
-rw-r--r-- | Documentation/DocBook/v4l/videodev2.h.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/DocBook/v4l/videodev2.h.xml b/Documentation/DocBook/v4l/videodev2.h.xml index c18dfebedeff..865b06d9e679 100644 --- a/Documentation/DocBook/v4l/videodev2.h.xml +++ b/Documentation/DocBook/v4l/videodev2.h.xml @@ -1018,6 +1018,13 @@ enum <link linkend="v4l2-colorfx">v4l2_colorfx</link> { V4L2_COLORFX_NONE = 0, V4L2_COLORFX_BW = 1, V4L2_COLORFX_SEPIA = 2, + V4L2_COLORFX_NEGATIVE = 3, + V4L2_COLORFX_EMBOSS = 4, + V4L2_COLORFX_SKETCH = 5, + V4L2_COLORFX_SKY_BLUE = 6, + V4L2_COLORFX_GRASS_GREEN = 7, + V4L2_COLORFX_SKIN_WHITEN = 8, + V4L2_COLORFX_VIVID = 9. }; #define V4L2_CID_AUTOBRIGHTNESS (V4L2_CID_BASE+32) #define V4L2_CID_BAND_STOP_FILTER (V4L2_CID_BASE+33) |