summaryrefslogtreecommitdiffstats
path: root/test/gl_video.c
diff options
context:
space:
mode:
authorCœur <coeur@gmx.fr>2022-04-25 19:27:18 +0800
committerLeo Izen <leo.izen@gmail.com>2022-04-25 09:07:18 -0400
commitbb5b4b1ba61b67da40c85c34376aced9383fc366 (patch)
treeb917b0ad45f31c1187c47424de4159cc28aa730f /test/gl_video.c
parent6407095871b8f177996a6ec3ee9a8c4f06bd63ee (diff)
downloadmpv-bb5b4b1ba61b67da40c85c34376aced9383fc366.tar.bz2
mpv-bb5b4b1ba61b67da40c85c34376aced9383fc366.tar.xz
various: fix typos
Diffstat (limited to 'test/gl_video.c')
-rw-r--r--test/gl_video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gl_video.c b/test/gl_video.c
index 556a81ac92..af1f082a40 100644
--- a/test/gl_video.c
+++ b/test/gl_video.c
@@ -17,7 +17,7 @@ static void run(struct test_ctx *ctx)
x = gl_video_scale_ambient_lux(16.0, 64.0, 2.40, 1.961, 0.0);
assert_float_equal(x, 2.40f, FLT_EPSILON);
- // 32 corresponds to the the midpoint after converting lux to the log10 scale
+ // 32 corresponds to the midpoint after converting lux to the log10 scale
x = gl_video_scale_ambient_lux(16.0, 64.0, 2.40, 1.961, 32.0);
float mid_gamma = (2.40 - 1.961) / 2 + 1.961;
assert_float_equal(x, mid_gamma, FLT_EPSILON);