From 5e1dfa4e3a5079a317979bf5ff8653dc152112a7 Mon Sep 17 00:00:00 2001 From: Daniel Caujolle-Bert Date: Thu, 3 May 2001 23:26:40 +0000 Subject: Add get capabilites to public API. CVS patchset: 60 CVS date: 2001/05/03 23:26:40 --- include/xine.h.tmpl.in | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) (limited to 'include') 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 -- cgit v1.2.3