| 505 | } |
| 506 | |
| 507 | std::unique_ptr<ByteRleDecoder> createByteRleDecoder(std::unique_ptr<SeekableInputStream> input, |
| 508 | ReaderMetrics* metrics) { |
| 509 | return std::make_unique<ByteRleDecoderImpl>(std::move(input), metrics); |
| 510 | } |
| 511 | |
| 512 | class BooleanRleDecoderImpl : public ByteRleDecoderImpl { |
| 513 | public: |
no outgoing calls