Skip to content

Commit

Permalink
csputils: fix mp_colorspace_equal missing field
Browse files Browse the repository at this point in the history
Forgot to equality test for mp_colorspace.light
  • Loading branch information
haasn committed Jul 18, 2017
1 parent e97c79b commit 36f181e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions video/csputils.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 36f181e

Please sign in to comment.