Skip to content

Commit 2e39c4e

Browse files
committed
jpeg_reader: fixed a typo
1 parent 61261a3 commit 2e39c4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils/jpeg_reader.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @author Martin Pulec <[email protected]>
44
*/
55
/*
6-
* Copyright (c) 2018-2024 CESNET, z. s. p. o.
6+
* Copyright (c) 2018-2025 CESNET
77
* All rights reserved.
88
*
99
* Redistribution and use in source and binary forms, with or without
@@ -289,7 +289,7 @@ color_space_get_name(enum jpeg_color_spec color_space)
289289
case JPEG_COLOR_SPEC_RGB:
290290
return "RGB";
291291
case JPEG_COLOR_SPEC_YCBCR_601:
292-
return "YCbCr BT.601 (limtted range)";
292+
return "YCbCr BT.601 (limitted range)";
293293
case JPEG_COLOR_SPEC_YCBCR_JPEG:
294294
return "YCbCr BT.601 256 Levels (YCbCr JPEG)";
295295
case JPEG_COLOR_SPEC_YCBCR_709:

0 commit comments

Comments
 (0)