GPAK  1.0.0
A general-purpose archive library

◆ gpak_compression_zstd

Brief Description:\n Enumeration representing the Zstandard compression levels for G-PAK.

This enumeration contains values representing the different Zstandard compression levels that can be used in G-PAK. The compression levels range from no compression (GPAK_COMPRESSION_ZST_NONE) to best compression (GPAK_COMPRESSION_ZST_BEST).

Enumerator
GPAK_COMPRESSION_ZST_NONE 

No compression.

GPAK_COMPRESSION_ZST_FAST 

Fast compression, lower compression ratio.

GPAK_COMPRESSION_ZST_MEDIUM 

Medium compression, balance between speed and compression ratio.

GPAK_COMPRESSION_ZST_BEST 

Best compression, higher compression ratio but slower speed.

Definition at line 90 of file gpak_data.h.

91 {
92  GPAK_COMPRESSION_ZST_NONE = 0, /**< No compression. */
93  GPAK_COMPRESSION_ZST_FAST = 5, /**< Fast compression, lower compression ratio. */
94  GPAK_COMPRESSION_ZST_MEDIUM = 10, /**< Medium compression, balance between speed and compression ratio. */
95  GPAK_COMPRESSION_ZST_BEST = 22, /**< Best compression, higher compression ratio but slower speed. */
96 };
@ GPAK_COMPRESSION_ZST_MEDIUM
Definition: gpak_data.h:94
@ GPAK_COMPRESSION_ZST_BEST
Definition: gpak_data.h:95
@ GPAK_COMPRESSION_ZST_NONE
Definition: gpak_data.h:92
@ GPAK_COMPRESSION_ZST_FAST
Definition: gpak_data.h:93