diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-08-19 18:33:43 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-08-19 18:33:43 +0000 |
commit | 44d393d0d8b4ff75e76e21860386ce5c145d304a (patch) | |
tree | dc118252331f40d1d44b0ab21a138823572f0767 | |
parent | 6f0985e32284cbec07202f6ac91c23ff0bbe48cd (diff) | |
download | xine-lib-44d393d0d8b4ff75e76e21860386ce5c145d304a.tar.gz xine-lib-44d393d0d8b4ff75e76e21860386ce5c145d304a.tar.bz2 |
this one kept me busy with xine-ui's saturation slider...
CVS patchset: 5299
CVS date: 2003/08/19 18:33:43
-rw-r--r-- | src/post/planar/eq2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/post/planar/eq2.c b/src/post/planar/eq2.c index 9b17fb1ee..a02303e55 100644 --- a/src/post/planar/eq2.c +++ b/src/post/planar/eq2.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: eq2.c,v 1.6 2003/08/15 14:43:30 mroi Exp $ + * $Id: eq2.c,v 1.7 2003/08/19 18:33:43 mroi Exp $ * * mplayer's eq2 (soft video equalizer) * Software equalizer (brightness, contrast, gamma, saturation) @@ -575,7 +575,7 @@ static int eq2_get_property(xine_video_port_t *port_gen, int property) { else if( property == XINE_PARAM_VO_CONTRAST ) return 65535 * (this->params.contrast) / 2.0; else if( property == XINE_PARAM_VO_SATURATION ) - return 65535 * (this->params.contrast) / 2.0; + return 65535 * (this->params.saturation) / 2.0; else return port->original_port->get_property(port->original_port, property); } |