summaryrefslogtreecommitdiffstats
path: root/video/csputils.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-04-29 21:32:19 +0200
committerwm4 <wm4@nowhere>2015-04-29 21:32:19 +0200
commit0600d378f9afb20d92e75d26c0df7d255e1df554 (patch)
treec4917f5b1102805f46393b276c099132a0670d8d /video/csputils.c
parentd51dee093fd0cc4dbfa5f04580251ecd09b4f0cb (diff)
downloadmpv-0600d378f9afb20d92e75d26c0df7d255e1df554.tar.bz2
mpv-0600d378f9afb20d92e75d26c0df7d255e1df554.tar.xz
csputils: apply contrast equalizer in RGB
It's weird that this basically adjusts the contrast between luma and chroma, and not blackness. This is more in line with the behavior of libswscale, the vdpau "procamp" (which mpv doesn't use), and Xv.
Diffstat (limited to 'video/csputils.c')
-rw-r--r--video/csputils.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/video/csputils.c b/video/csputils.c
index a4d896f598..f42cfb398b 100644
--- a/video/csputils.c
+++ b/video/csputils.c
@@ -671,6 +671,9 @@ void mp_get_yuv2rgb_coeffs(struct mp_csp_params *params, struct mp_cmat *m)
abort();
}
+ rgblev.min = (rgblev.min + params->brightness) * params->contrast;
+ rgblev.max = (rgblev.max + params->brightness) * params->contrast;
+
double ymul = (rgblev.max - rgblev.min) / (yuvlev.ymax - yuvlev.ymin);
double cmul = (rgblev.max - rgblev.min) / (yuvlev.cmid - yuvlev.cmin) / 2;
for (int i = 0; i < 3; i++) {
@@ -682,14 +685,6 @@ void mp_get_yuv2rgb_coeffs(struct mp_csp_params *params, struct mp_cmat *m)
-(m->m[i][1] + m->m[i][2]) * yuvlev.cmid;
}
- // Brightness adds a constant to output R,G,B.
- // Contrast scales Y around 1/2 (not 0 in this implementation).
- for (int i = 0; i < 3; i++) {
- m->c[i] += params->brightness;
- m->m[i][0] *= params->contrast;
- m->c[i] += (rgblev.max-rgblev.min) * (1 - params->contrast)/2;
- }
-
int in_bits = FFMAX(params->int_bits_in, 1);
int out_bits = FFMAX(params->int_bits_out, 1);
double in_scale = (1 << in_bits) - 1.0;