[MPlayer-cvslog] r33413 - trunk/libvo/vo_x11.c
reimar
subversion at mplayerhq.hu
Sat May 7 21:54:06 CEST 2011
Author: reimar
Date: Sat May 7 21:54:06 2011
New Revision: 33413
Log:
Fix vo_x11_set_equalizer argument, must be the raw value to set, not a pointer!
Modified:
trunk/libvo/vo_x11.c
Modified: trunk/libvo/vo_x11.c
==============================================================================
--- trunk/libvo/vo_x11.c Sat May 7 21:52:22 2011 (r33412)
+++ trunk/libvo/vo_x11.c Sat May 7 21:54:06 2011 (r33413)
@@ -658,7 +658,7 @@ static int control(uint32_t request, voi
case VOCTRL_SET_EQUALIZER:
{
vf_equalizer_t *eq=data;
- return vo_x11_set_equalizer(eq->item, &(eq->value));
+ return vo_x11_set_equalizer(eq->item, eq->value);
}
case VOCTRL_GET_EQUALIZER:
{
More information about the MPlayer-cvslog
mailing list