diff --git a/src/bitparser.cpp b/src/bitparser.cpp index c0ff5e4..c07b96a 100644 --- a/src/bitparser.cpp +++ b/src/bitparser.cpp @@ -111,9 +111,10 @@ int BitParser::parseHeader() _hdr["version"] = value; } else if (key == "SW_CRC") { _hdr["crc"] = value; + } else if (key == "COMPRESS") { + _hdr["compress"] = value; } else { - printError("Unknown key " + key); - return -1; + printWarn("Unknown key " + key); } } }