Skip to content

Commit

Permalink
libmatroska2: change decompression options
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
robUx4 committed Dec 27, 2024
1 parent a49e5c2 commit 3bb49f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libmatroska2/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
project("matroska2" VERSION 0.22.3 LANGUAGES C)

option(CONFIG_ZLIB "Enable zlib (de)compression" ON)
option(CONFIG_BZLIB "Enable bzlib (de)compression in libmatroska2" ON)
option(CONFIG_LZO1X "Enable lzo (de)compression in libmatroska2" ON)
option(CONFIG_BZLIB "Enable bzlib decompression in libmatroska2" ON)
option(CONFIG_LZO1X "Enable lzo decompression in libmatroska2" ON)
option(CONFIG_NOCODEC_HELPER "Enable Vorbis frame durations in libmatroska2" ON)

if (CONFIG_ZLIB)
Expand Down

0 comments on commit 3bb49f2

Please sign in to comment.