diff options
author | Ewald Snel <esnel@users.sourceforge.net> | 2003-02-02 12:44:03 +0000 |
---|---|---|
committer | Ewald Snel <esnel@users.sourceforge.net> | 2003-02-02 12:44:03 +0000 |
commit | 9fefd435c683d35684017b2f60163d3d93c63f4e (patch) | |
tree | 2c6408bf6fd3adb816a83372f6ee55667bc2d2b9 /src/video_out/yuv2rgb.h | |
parent | d2735be904ae6f88cab9cfefc47d809d9582442b (diff) | |
download | xine-lib-9fefd435c683d35684017b2f60163d3d93c63f4e.tar.gz xine-lib-9fefd435c683d35684017b2f60163d3d93c63f4e.tar.bz2 |
Add support for brightness, saturation, contrast (not functional yet)
CVS patchset: 4088
CVS date: 2003/02/02 12:44:03
Diffstat (limited to 'src/video_out/yuv2rgb.h')
-rw-r--r-- | src/video_out/yuv2rgb.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/video_out/yuv2rgb.h b/src/video_out/yuv2rgb.h index 808a84d7a..dc65adbb7 100644 --- a/src/video_out/yuv2rgb.h +++ b/src/video_out/yuv2rgb.h @@ -114,15 +114,11 @@ struct yuv2rgb_factory_s { yuv2rgb_t* (*create_converter) (yuv2rgb_factory_t *this); /* - * adjust gamma (-100 to 100 looks fine) + * set color space conversion levels * for all converters produced by this factory */ - void (*set_gamma) (yuv2rgb_factory_t *this, int gamma); - - /* - * get gamma value - */ - int (*get_gamma) (yuv2rgb_factory_t *this); + void (*set_csc_levels) (yuv2rgb_factory_t *this, + int brightness, int contrast, int saturation); /* * free resources |