From eb43310e3e6426c764809534f91023d00e2c47f0 Mon Sep 17 00:00:00 2001 From: nick Date: Wed, 23 Jan 2002 16:55:26 +0000 Subject: intense -> intensity + capability extension git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4319 b3059339-0415-0410-9bf9-f77b7e298cf2 --- vidix/vidix.h | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'vidix/vidix.h') diff --git a/vidix/vidix.h b/vidix/vidix.h index cdc6061658..10e97cbbbf 100644 --- a/vidix/vidix.h +++ b/vidix/vidix.h @@ -183,14 +183,22 @@ extern int vixSetGrKeys( const vidix_grkey_t * ); typedef struct vidix_video_eq_s { +#define VEQ_CAP_NONE 0x00000000UL +#define VEQ_CAP_BRIGHTNESS 0x00000001UL +#define VEQ_CAP_CONTRAST 0x00000002UL +#define VEQ_CAP_SATURATION 0x00000004UL +#define VEQ_CAP_HUE 0x00000008UL +#define VEQ_CAP_RGB_INTENSITY 0x00000010UL + int cap; /* on get_eq should contain capability of equalizer + on set_eq should contain using fields */ /* end-user app can have presets like: cold-normal-hot picture and so on */ int brightness; /* -1000 : +1000 */ int contrast; /* -1000 : +1000 */ int saturation; /* -1000 : +1000 */ int hue; /* -1000 : +1000 */ - int red_intense; /* -1000 : +1000 */ - int green_intense; /* -1000 : +1000 */ - int blue_intense; /* -1000 : +1000 */ + int red_intensity; /* -1000 : +1000 */ + int green_intensity;/* -1000 : +1000 */ + int blue_intensity; /* -1000 : +1000 */ #define VEQ_FLG_ITU_R_BT_601 0x00000000 /* ITU-R BT.601 colour space (default) */ #define VEQ_FLG_ITU_R_BT_709 0x00000001 /* ITU-R BT.709 colour space */ #define VEQ_FLG_ITU_MASK 0x0000000f -- cgit v1.2.3