Fix building with GCC 13.

Fixes the following error:
../src/lib/tvgLzw.h:27:5: error: ‘uint8_t’ does not name a type
This commit is contained in:
Martin Liska 2022-05-23 12:11:23 +02:00 committed by Hermet Park
parent 0e8cd1e525
commit 0c987470af

View file

@ -22,6 +22,8 @@
#ifndef _TVG_LZW_H_
#define _TVG_LZW_H_
#include <cstdint>
namespace tvg
{
uint8_t* lzwEncode(const uint8_t* uncompressed, uint32_t uncompressedSizeBytes, uint32_t* compressedSizeBytes, uint32_t* compressedSizeBits);