1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-21 23:36:58 +00:00

csputils: fix mp_colorspace_equal missing field

Forgot to equality test for mp_colorspace.light
This commit is contained in:
Niklas Haas 2017-07-18 02:20:50 +02:00
parent e97c79bd79
commit 36f181e0d0
No known key found for this signature in database
GPG Key ID: 9A09076581B27402

View File

@ -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;
}