1
mirror of https://github.com/mpv-player/mpv synced 2024-08-04 14:59:58 +02:00

vf_scale: fix get/set confusion

This caused the equalizer controls to appear stuck.
This commit is contained in:
wm4 2013-10-16 21:35:27 +02:00
parent de3a979f69
commit 20e1c5f7d9

View File

@ -361,7 +361,7 @@ static int control(struct vf_instance *vf, int request, void *data)
break;
return CONTROL_TRUE;
case VFCTRL_SET_EQUALIZER:
if (mp_sws_get_vf_equalizer(sws, data) < 1)
if (mp_sws_set_vf_equalizer(sws, data) < 1)
break;
return CONTROL_TRUE;
default: