From 36f181e0d0ffa940ac31e277bcb0cbd2a1bd6bc4 Mon Sep 17 00:00:00 2001 From: Niklas Haas Date: Tue, 18 Jul 2017 02:20:50 +0200 Subject: csputils: fix mp_colorspace_equal missing field Forgot to equality test for mp_colorspace.light --- video/csputils.c | 1 + 1 file changed, 1 insertion(+) diff --git a/video/csputils.c b/video/csputils.c index a4ed9337d2..e9dc8e654d 100644 --- a/video/csputils.c +++ b/video/csputils.c @@ -813,6 +813,7 @@ bool mp_colorspace_equal(struct mp_colorspace c1, struct mp_colorspace c2) c1.levels == c2.levels && c1.primaries == c2.primaries && c1.gamma == c2.gamma && + c1.light == c2.light && c1.sig_peak == c2.sig_peak; } -- cgit v1.2.3