Hide the thorvg LZW implementation.

This commit is contained in:
K. S. Ernest (iFire) Lee 2021-12-17 16:04:26 -08:00 committed by Hermet Park
parent df64a7b0dc
commit 33018aa123

View file

@ -65,6 +65,7 @@
#include <memory.h>
#include "tvgLzw.h"
namespace {
//LZW Dictionary helper:
constexpr int Nil = -1;
constexpr int MaxDictBits = 12;
@ -333,7 +334,7 @@ static bool outputSequence(const Dictionary& dict, int code, uint8_t*& output, i
}
return true;
}
}
/************************************************************************/