diff options
author | nick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-01-18 09:11:11 +0000 |
---|---|---|
committer | nick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-01-18 09:11:11 +0000 |
commit | 555c6766839e256aebd2ad27307c74947abe0823 (patch) | |
tree | 977d2153ce201a6a745d8bbf0dab6feee544bb3f /libvo/video_out.c | |
parent | 6a8715f9b95a30b213f34792521b9e5386316825 (diff) | |
download | mpv-555c6766839e256aebd2ad27307c74947abe0823.tar.bz2 mpv-555c6766839e256aebd2ad27307c74947abe0823.tar.xz |
gamma correction support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4230 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r-- | libvo/video_out.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c index df4d773f9c..1e2eac5b13 100644 --- a/libvo/video_out.c +++ b/libvo/video_out.c @@ -47,7 +47,16 @@ int vo_pts=0; // for hw decoding float vo_fps=0; // for mp1e rte char *vo_subdevice = NULL; - +/**************************************** +* GAMMA CORRECTION * +****************************************/ +int vo_gamma_brightness=0; +int vo_gamma_saturation=0; +int vo_gamma_contrast=0; +int vo_gamma_hue=0; +int vo_gamma_red_intense=0; +int vo_gamma_green_intense=0; +int vo_gamma_blue_intense=0; // // Externally visible list of all vo drivers // |