add extRLE16 encoder/decoder

This commit is contained in:
MihailRis
2024-09-04 23:27:52 +03:00
parent 0b3bb36188
commit 73a8343f61
4 changed files with 85 additions and 8 deletions
+4
View File
@@ -39,3 +39,7 @@ TEST(RLE16, EncodeDecode) {
TEST(ExtRLE, EncodeDecode) {
test_encode_decode(extrle::encode, extrle::decode);
}
TEST(ExtRLE16, EncodeDecode) {
test_encode_decode(extrle::encode16, extrle::decode16);
}