mirror of
https://github.com/aaru-dps/libaaruformat.git
synced 2026-07-08 18:06:18 +00:00
Reserve compression IDs 4 and 5 for Zstandard (zstd)
Adds kCompressionZstd = 4 and kCompressionZstdCst = 5 to the CompressionType enum, following the existing LZMA/LzmaCst pattern. Ref: https://github.com/aaru-dps/libaaruformat/issues/5
This commit is contained in:
@@ -33,7 +33,9 @@ typedef enum
|
||||
kCompressionNone = 0, ///< Not compressed.
|
||||
kCompressionLzma = 1, ///< LZMA compression.
|
||||
kCompressionFlac = 2, ///< FLAC compression.
|
||||
kCompressionLzmaCst = 3 ///< LZMA applied to Claunia Subchannel Transform processed data.
|
||||
kCompressionLzmaCst = 3, ///< LZMA applied to Claunia Subchannel Transform processed data.
|
||||
kCompressionZstd = 4, ///< Zstandard compression (reserved for future implementation).
|
||||
kCompressionZstdCst = 5 ///< Zstandard applied to Claunia Subchannel Transform processed data (reserved).
|
||||
} CompressionType;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user