diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-05-22 13:26:06 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-05-22 13:26:06 +0000 |
commit | ad2ea2820f231dd093a48263959ca193491b8202 (patch) | |
tree | acbc8ff55cbc6944f4dee55bc9af8864c0302b8c /include | |
parent | 1b36b2939e8ecb0b614475368feb451c5ef7c475 (diff) | |
download | xine-lib-ad2ea2820f231dd093a48263959ca193491b8202.tar.gz xine-lib-ad2ea2820f231dd093a48263959ca193491b8202.tar.bz2 |
Re-add video driver CAP contants (UI need to know that). Some debug
messages in xv driver. There is a bug in XV driver, it self corrupt
the BRIGTHNESS property.
CVS patchset: 76
CVS date: 2001/05/22 13:26:06
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.tmpl.in | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/include/xine.h.tmpl.in b/include/xine.h.tmpl.in index 3b5a9c439..0aa579b22 100644 --- a/include/xine.h.tmpl.in +++ b/include/xine.h.tmpl.in @@ -29,7 +29,7 @@ \endverbatim */ /* - * $Id: xine.h.tmpl.in,v 1.16 2001/05/17 21:52:10 guenter Exp $ + * $Id: xine.h.tmpl.in,v 1.17 2001/05/22 13:26:06 f1rmb Exp $ * */ @@ -90,8 +90,19 @@ struct config_values_s { void (*read) (config_values_t *this, char *filename); }; -/* constants for the get/set property functions */ +/* + * video driver capabilities + */ +/* driver can set HUE value */ +#define VO_CAP_HUE 0x00000010 /* driver can set HUE value */ +#define VO_CAP_SATURATION 0x00000020 /* driver can set SATURATION value */ +#define VO_CAP_BRIGHTNESS 0x00000040 /* driver can set BRIGHTNESS value */ +#define VO_CAP_CONTRAST 0x00000080 /* driver can set CONTRAST value */ +#define VO_CAP_COLORKEY 0x00000100 /* driver can set COLORKEY value */ +/* + * constants for the get/set property functions + */ #define VO_PROP_INTERLACED 0 #define VO_PROP_ASPECT_RATIO 1 #define VO_PROP_HUE 2 |