Use the alternative TRasterCodecLZO::decompress signature for big-endian in tiio_tzl.cpp.

This patch fixes code that was missed in previous refactoring.
This commit is contained in:
Érico Rolim 2020-09-27 17:02:35 -03:00 committed by manongjohn
parent b003793236
commit a3d1d6bb4f

View file

@ -945,7 +945,7 @@ void TLevelWriterTzl::saveImage(const TImageP &img, const TFrameId &_fid,
Header *header = (Header *)buff;
TRasterP ras;
m_codec->decompress(buff, buffSize, ras);
m_codec->decompress(buff, buffSize, ras, false);
delete[] buff;
assert((TRasterCM32P)ras);
assert(ras->getLx() == header->m_lx);