MCPcopy Create free account
hub / github.com/devilsen/CZXing / ReedSolomonEncode

Function ReedSolomonEncode

czxing/src/main/cpp/zxing/src/ReedSolomonEncoder.h:34–37  ·  view source on GitHub ↗

* @brief ReedSolomonEncode replaces the last numECCodeWords code words in message with error correction code words */

Source from the content-addressed store, hash-verified

32 * @brief ReedSolomonEncode replaces the last numECCodeWords code words in message with error correction code words
33 */
34inline void ReedSolomonEncode(const GenericGF& field, std::vector<int>& message, int numECCodeWords)
35{
36 ReedSolomonEncoder(field).encode(message, numECCodeWords);
37}
38
39} // namespace ZXing

Callers 2

GenerateECBytesFunction · 0.85
GenerateCheckWordsFunction · 0.85

Calls 2

ReedSolomonEncoderClass · 0.85
encodeMethod · 0.45

Tested by

no test coverage detected