Function streamCount [src]
Prototype
pub fn streamCount(size_format: u2, block_type: BlockType) StreamCount Parameters
size_format: u2block_type: BlockType Source
pub fn streamCount(size_format: u2, block_type: BlockType) StreamCount {
return switch (block_type) {
.raw, .rle => .one,
.compressed, .treeless => if (size_format == 0) .one else .four,
};
}