MCPcopy Create free account
hub / github.com/PDAL/PDAL / DecodeChannel

Method DecodeChannel

plugins/e57/libE57Format/src/DecodeChannel.cpp:34–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32namespace 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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected