aboutsummaryrefslogtreecommitdiff
path: root/lib/fstream/uncompress/istream_compressor.c
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2020-09-14 20:25:10 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2020-09-16 09:34:35 +0200
commit15431d4fd8de67a03af4ee9cc8e774e1750e9da2 (patch)
treef5386db24f3901e86d3aaae10042d4f9181a6b32 /lib/fstream/uncompress/istream_compressor.c
parent76b06f71078e2eea7def3d1c15cdb103dec785ed (diff)
Add zstd stream compressor implementation to libfstream
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/fstream/uncompress/istream_compressor.c')
-rw-r--r--lib/fstream/uncompress/istream_compressor.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/fstream/uncompress/istream_compressor.c b/lib/fstream/uncompress/istream_compressor.c
index 924f309..2262c9b 100644
--- a/lib/fstream/uncompress/istream_compressor.c
+++ b/lib/fstream/uncompress/istream_compressor.c
@@ -39,6 +39,11 @@ istream_t *istream_compressor_create(istream_t *strm, int comp_id)
comp = istream_xz_create(strm->get_filename(strm));
#endif
break;
+ case FSTREAM_COMPRESSOR_ZSTD:
+#ifdef WITH_ZSTD
+ comp = istream_zstd_create(strm->get_filename(strm));
+#endif
+ break;
default:
break;
}