MCPcopy Create free account
hub / github.com/LASzip/LASzip / check_compressor

Method check_compressor

src/laszip.cpp:209–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

207}
208
209bool LASzip::check_compressor(const U16 compressor)
210{
211 if (compressor < LASZIP_COMPRESSOR_TOTAL_NUMBER_OF) return true;
212 char error[64];
213 snprintf(error, sizeof(error), "compressor %d not supported", compressor);
214 return return_error(error);
215}
216
217bool LASzip::check_coder(const U16 coder)
218{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected