diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-09-15 21:13:56 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-09-16 09:34:35 +0200 |
commit | 183cf393a453cddb689666ce7fb35a97e7f523bf (patch) | |
tree | 7f57b466be7fdbe8cae1ad1f5562fa493ad3312b /lib/fstream/uncompress/autodetect.c | |
parent | 15431d4fd8de67a03af4ee9cc8e774e1750e9da2 (diff) |
Add bzip2 stream compression support
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/fstream/uncompress/autodetect.c')
-rw-r--r-- | lib/fstream/uncompress/autodetect.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/fstream/uncompress/autodetect.c b/lib/fstream/uncompress/autodetect.c index b788518..61628f8 100644 --- a/lib/fstream/uncompress/autodetect.c +++ b/lib/fstream/uncompress/autodetect.c @@ -14,6 +14,7 @@ static const struct { { FSTREAM_COMPRESSOR_GZIP, (const sqfs_u8 *)"\x1F\x8B\x08", 3 }, { FSTREAM_COMPRESSOR_XZ, (const sqfs_u8 *)("\xFD" "7zXZ"), 6 }, { FSTREAM_COMPRESSOR_ZSTD, (const sqfs_u8 *)"\x28\xB5\x2F\xFD", 4 }, + { FSTREAM_COMPRESSOR_BZIP2, (const sqfs_u8 *)"BZh", 3 }, }; int istream_detect_compressor(istream_t *strm, |