Lines Matching full:preset
23 * \brief Default compression preset
25 * It's not straightforward to recommend a default preset, because in some
33 * \brief Mask for preset level
35 * This is useful only if you need to extract the level from the preset
42 * Preset flags
48 * \brief Extreme compression preset
50 * This flag modifies the preset to make the encoding significantly slower
56 * a little but only at the lowest preset levels (0-3).
143 * \brief Encoder only: Compression preset
145 * The preset is set just like with lzma_easy_encoder().
146 * The preset is ignored if filters below is non-NULL.
148 uint32_t preset; member
151 * \brief Encoder only: Filter chain (alternative to a preset)
153 * If this is NULL, the preset above is used. Otherwise the preset
264 * \param preset Compression preset (level and possible flags)
267 * preset when encoding or UINT64_MAX on error.
269 extern LZMA_API(uint64_t) lzma_easy_encoder_memusage(uint32_t preset)
274 * \brief Calculate approximate decoder memory usage of a preset
278 * \param preset Compression preset (level and possible flags)
281 * that was compressed using the given preset or UINT64_MAX
284 extern LZMA_API(uint64_t) lzma_easy_decoder_memusage(uint32_t preset)
289 * \brief Initialize .xz Stream encoder using a preset number
305 * \param preset Compression preset to use. A preset consist of level
307 * used, so preset is simply a number [0, 9] which match
310 * the preset level number, e.g. 6 | LZMA_PRESET_EXTREME.
321 * - LZMA_OPTIONS_ERROR: The given compression preset is not
329 lzma_stream *strm, uint32_t preset, lzma_check check)
334 * \brief Single-call .xz Stream encoding using a preset number
339 * \param preset Compression preset to use. See the description
363 uint32_t preset, lzma_check check,
397 * lzma_easy_decoder_memusage(options->preset) or
405 * unsupported preset or filter chain, UINT64_MAX is returned.