| 426 | */ |
| 427 | |
| 428 | LASwriteItemCompressed_RGB12_v1::LASwriteItemCompressed_RGB12_v1(ArithmeticEncoder* enc) |
| 429 | { |
| 430 | /* set encoder */ |
| 431 | assert(enc); |
| 432 | this->enc = enc; |
| 433 | |
| 434 | /* create models and integer compressors */ |
| 435 | m_byte_used = enc->createSymbolModel(64); |
| 436 | ic_rgb = new IntegerCompressor(enc, 8, 6); |
| 437 | |
| 438 | /* create last item */ |
| 439 | last_item = new U8[6]; |
| 440 | } |
| 441 | |
| 442 | LASwriteItemCompressed_RGB12_v1::~LASwriteItemCompressed_RGB12_v1() |
| 443 | { |
nothing calls this directly
no test coverage detected