Skip to content

Commit 3bb49f2

Browse files
committed
libmatroska2: change decompression options
As said in RFC9559, we should not compress to bzlib and lzo anymore. The code already only supports decompression. Let's reflect this in the option text.
1 parent a49e5c2 commit 3bb49f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libmatroska2/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
project("matroska2" VERSION 0.22.3 LANGUAGES C)
22

33
option(CONFIG_ZLIB "Enable zlib (de)compression" ON)
4-
option(CONFIG_BZLIB "Enable bzlib (de)compression in libmatroska2" ON)
5-
option(CONFIG_LZO1X "Enable lzo (de)compression in libmatroska2" ON)
4+
option(CONFIG_BZLIB "Enable bzlib decompression in libmatroska2" ON)
5+
option(CONFIG_LZO1X "Enable lzo decompression in libmatroska2" ON)
66
option(CONFIG_NOCODEC_HELPER "Enable Vorbis frame durations in libmatroska2" ON)
77

88
if (CONFIG_ZLIB)

0 commit comments

Comments
 (0)