aboutsummaryrefslogtreecommitdiffstats
path: root/liblss16_encode_from_colour_index.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-03 16:43:19 +0100
committerMattias Andrée <m@maandree.se>2025-03-03 16:44:37 +0100
commite114123df2a05650f0f7e34044c1e8f829c50a44 (patch)
tree48c408b469d5fc3f1acdf4468ad6f22da8a65370 /liblss16_encode_from_colour_index.c
parentm (diff)
downloadliblss16-e114123df2a05650f0f7e34044c1e8f829c50a44.tar.gz
liblss16-e114123df2a05650f0f7e34044c1e8f829c50a44.tar.bz2
liblss16-e114123df2a05650f0f7e34044c1e8f829c50a44.tar.xz
misc
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'liblss16_encode_from_colour_index.c')
-rw-r--r--liblss16_encode_from_colour_index.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/liblss16_encode_from_colour_index.c b/liblss16_encode_from_colour_index.c
index 1efff36..95b600b 100644
--- a/liblss16_encode_from_colour_index.c
+++ b/liblss16_encode_from_colour_index.c
@@ -1,7 +1,12 @@
/* See LICENSE file for copyright and license details. */
#include "liblss16.h"
-#include <string.h>
#include <stdlib.h>
+#include <string.h>
+
+#if defined(__clang__)
+# pragma clang diagnostic ignored "-Wimplicit-fallthrough"
+# pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
+#endif
static size_t
@@ -16,9 +21,8 @@ flush_buffer(struct liblss16_encoder *encoder, uint8_t *buffer, size_t size)
enum liblss16_encode_state
-liblss16_encode_from_colour_index(struct liblss16_encoder *encoder, void *buffer_, size_t size,
- size_t *written_out, const uint8_t *pixels, size_t npixels,
- size_t *nconsumed_out, enum liblss16_encode_error *error_out)
+liblss16_encode_from_colour_index(struct liblss16_encoder *encoder, void *buffer_, size_t size, size_t *written_out,
+ const uint8_t *pixels, size_t npixels, size_t *nconsumed_out)
{
uint8_t *buffer = buffer_;
size_t n;
@@ -120,10 +124,6 @@ liblss16_encode_from_colour_index(struct liblss16_encoder *encoder, void *buffer
while (npixels--) {
if (*pixels == encoder->previous) {
encoder->repetition++;
- } else if (*pixels > 15U) {
- if (error_out)
- *error_out = LIBLSS16_ENCODE_BAD_COLOUR_INDEX;
- return LIBLSS16_ENCODE_ERROR;
} else {
if (!encoder->repetition) {
/* do nothing */