bitparser: Add `COMPRESS` key.
This commit is contained in:
parent
6520946400
commit
22c18f7d57
|
|
@ -111,6 +111,8 @@ int BitParser::parseHeader()
|
||||||
_hdr["version"] = value;
|
_hdr["version"] = value;
|
||||||
} else if (key == "SW_CRC") {
|
} else if (key == "SW_CRC") {
|
||||||
_hdr["crc"] = value;
|
_hdr["crc"] = value;
|
||||||
|
} else if (key == "COMPRESS") {
|
||||||
|
_hdr["compress"] = value;
|
||||||
} else {
|
} else {
|
||||||
printWarn("Unknown key " + key);
|
printWarn("Unknown key " + key);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue