Expand description
The versioned decoder. The fields on versioned structures are prepend by tags.
Constants§
- ARRAY_
TAG - Arrays have this tag prepend.
- BIT_
ARRAY_ TAG - Arrays have this tag prepend.
- BLOB_
TAG - Blobs have this tag prepend.
- BOOL_
TAG - Bools have this tag prepend.
- CHOICE_
TAG - Choices have this tag prepend.
- FOURCC_
TAG - FourCC (Fourc Character Code) and Real32 have this tag prepend.
- INT_TAG
- Ints have this tag prepend.
- OPT_TAG
- Optionals have this tag prepend.
- STRUCT_
TAG - Structs have this tag prepend.
Functions§
- tagged_
bitarray - Reads a bitarray that is prepend by its tag.
- tagged_
blob - Reads a blob that is prepend by its tag.
- tagged_
bool - Reads a Boolean that is prepend by its tag
- tagged_
fourcc - Reads a 4 bytes, the FourCC (Four Character Code).
- tagged_
vlq_ int - Reads a VLQ Int that is prepend by its tag.
- validate_
array_ tag - The arrays are prepend by the
ARRAY_TAG
- validate_
bitarray_ tag - The bitarrays are prepend by the
BIT_ARRAY_TAG
- validate_
blob_ tag - The blobs are prepend by the
BLOB_TAG
- validate_
bool_ tag - The bools are prepend by the
BOOL_TAG
- validate_
choice_ tag - The choice/enums are prepend by the
CHOICE_TAG
- validate_
fourcc_ tag - The FourCC and Real32 are prepend by the
FOURCC_TAG
- validate_
int_ tag - The ints are prepend by the
INT_TAG
- validate_
opt_ tag - The optionals are prepend by the
OPT_TAG
if provided. - validate_
struct_ tag - The structs are prepend by the
STRUCT_TAG