diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.tmpl.in | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/include/xine.h.tmpl.in b/include/xine.h.tmpl.in index c2998ccc2..addb3f478 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.13 2001/05/03 22:20:44 f1rmb Exp $ + * $Id: xine.h.tmpl.in,v 1.14 2001/05/03 23:26:40 f1rmb Exp $ * */ @@ -299,6 +299,34 @@ void xine_select_spu_channel (xine_t *this, int channel); */ void *xine_get_window_output(xine_t *this); +#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 */ + +/** + * \fn uint32_t xine_get_window_capabilities(xine_t *this); + * \brief + * \param + * \return + * + * + */ +uint32_t xine_get_window_capabilities(xine_t *this); + +#define VO_PROP_WINDOW_VISIBLE 0 +#define VO_PROP_CURSOR_VISIBLE 1 +#define VO_PROP_FULLSCREEN 2 +#define VO_PROP_INTERLACED 3 +#define VO_PROP_ASPECT_RATIO 4 +#define VO_PROP_HUE 5 +#define VO_PROP_SATURATION 6 +#define VO_PROP_CONTRAST 7 +#define VO_PROP_BRIGHTNESS 8 +#define VO_PROP_COLORKEY 9 +#define VO_NUM_PROPERTIES 10 + /** * \fn int xine_get_window_property(xine_t *this, int property); * \brief |