aboutsummaryrefslogtreecommitdiffstats
path: root/liblss16_encode_strerror.c
blob: a5fcd49f4421a32b8e72698eeb6cf61959705438 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* See LICENSE file for copyright and license details. */
#include "liblss16.h"


const char *
liblss16_encode_strerror(enum liblss16_encode_error error)
{
	switch (error) {
	case LIBLSS16_ENCODE_BAD_IMAGE_SIZE:
		return "Unencodable image: unsupported image size";

	case LIBLSS16_ENCODE_BAD_COLOUR:
		return "Invalid colour map: 6-bit colours encoded with additional bits";

	case LIBLSS16_ENCODE_BAD_COLOUR_INDEX:
		return "Invalid image: colour index out of range";

	default:
		return "Unrecognised error";
	}
}