summaryrefslogtreecommitdiffstats
path: root/video/out/vo_vaapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/vo_vaapi.c')
-rw-r--r--video/out/vo_vaapi.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/video/out/vo_vaapi.c b/video/out/vo_vaapi.c
index de2c975823..51f1f4ec03 100644
--- a/video/out/vo_vaapi.c
+++ b/video/out/vo_vaapi.c
@@ -469,7 +469,7 @@ static int get_equalizer(struct priv *p, const char *name, int *value)
int r = attr->max_value - attr->min_value;
if (r == 0)
return VO_NOTIMPL;
- *value = ((attr->value - attr->min_value) * 200) / r - 100;
+ *value = ((attr->value - attr->min_value) * 200 + r / 2) / r - 100;
return VO_TRUE;
}
@@ -485,7 +485,10 @@ static int set_equalizer(struct priv *p, const char *name, int value)
int r = attr->max_value - attr->min_value;
if (r == 0)
return VO_NOTIMPL;
- attr->value = ((value + 100) * r) / 200 + attr->min_value;
+ attr->value = ((value + 100) * r + 100) / 200 + attr->min_value;
+
+ MP_VERBOSE(p, "Changing '%s' (range [%d, %d]) to %d\n", name,
+ attr->max_value, attr->min_value, attr->value);
va_lock(p->mpvaapi);
status = vaSetDisplayAttributes(p->display, attr, 1);