| 693 | |
| 694 | |
| 695 | int QrCode::getNumDataCodewords(int ver, Ecc ecl) { |
| 696 | return getNumRawDataModules(ver) / 8 |
| 697 | - ECC_CODEWORDS_PER_BLOCK [static_cast<int>(ecl)][ver] |
| 698 | * NUM_ERROR_CORRECTION_BLOCKS[static_cast<int>(ecl)][ver]; |
| 699 | } |
| 700 | |
| 701 | |
| 702 | vector<uint8_t> QrCode::reedSolomonComputeDivisor(int degree) { |
nothing calls this directly
no outgoing calls
no test coverage detected