Comment exported functions GetEncodedBlocksLen, GetEncodedBlockLen

This commit is contained in:
Harshavardhana 2015-03-25 13:32:29 -07:00
parent fab6892bc3
commit e1f4ed4650

View file

@ -117,11 +117,13 @@ func NewEncoder(ep *EncoderParams) *Encoder {
}
}
// GetEncodedBlocksLen - total length of all encoded blocks
func GetEncodedBlocksLen(inputLen int, k, m uint8) (outputLen int) {
outputLen = GetEncodedBlockLen(inputLen, k) * int(k+m)
return outputLen
}
// GetEncodedBlockLen - length per block of encoded blocks
func GetEncodedBlockLen(inputLen int, k uint8) (encodedOutputLen int) {
alignment := int(k) * SIMDAlign
remainder := inputLen % alignment