Update of /cvsroot/mplayer/main/vidix In directory mplayer:/var/tmp.root/cvs-serv21885/main/vidix Modified Files: vidix.h Log Message: intense -> intensity + capability extension Index: vidix.h =================================================================== RCS file: /cvsroot/mplayer/main/vidix/vidix.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- vidix.h 19 Jan 2002 18:38:58 -0000 1.6 +++ vidix.h 23 Jan 2002 16:55:25 -0000 1.7 @@ -183,14 +183,22 @@ 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
participants (1)
-
Nick Kurshev