| 32 | namespace e57 |
| 33 | { |
| 34 | DecodeChannel::DecodeChannel( SourceDestBuffer dbuf_arg, std::shared_ptr<Decoder> decoder_arg, |
| 35 | unsigned bytestreamNumber_arg, uint64_t maxRecordCount_arg ) : |
| 36 | dbuf( dbuf_arg ), decoder( decoder_arg ), bytestreamNumber( bytestreamNumber_arg ) |
| 37 | { |
| 38 | maxRecordCount = maxRecordCount_arg; |
| 39 | currentPacketLogicalOffset = 0; |
| 40 | currentBytestreamBufferIndex = 0; |
| 41 | currentBytestreamBufferLength = 0; |
| 42 | inputFinished = false; |
| 43 | } |
| 44 | |
| 45 | bool DecodeChannel::isOutputBlocked() const |
| 46 | { |
nothing calls this directly
no outgoing calls
no test coverage detected