WithEncoderCRC will add CRC value to output. Output will be 4 bytes larger. Can be changed with ResetWithOptions.
(b bool)
| 76 | // Output will be 4 bytes larger. |
| 77 | // Can be changed with ResetWithOptions. |
| 78 | func WithEncoderCRC(b bool) EOption { |
| 79 | return func(o *encoderOptions) error { o.crc = b; return nil } |
| 80 | } |
| 81 | |
| 82 | // WithEncoderConcurrency will set the concurrency, |
| 83 | // meaning the maximum number of encoders to run concurrently. |
no outgoing calls
searching dependent graphs…