1 // SPDX-License-Identifier: 0BSD
3 ///////////////////////////////////////////////////////////////////////////////
5 /// \file easy_preset.c
6 /// \brief Preset handling for easy encoder and decoder
8 // Author: Lasse Collin
10 ///////////////////////////////////////////////////////////////////////////////
12 #include "easy_preset.h"
16 lzma_easy_preset(lzma_options_easy
*opt_easy
, uint32_t preset
)
18 if (lzma_lzma_preset(&opt_easy
->opt_lzma
, preset
))
21 opt_easy
->filters
[0].id
= LZMA_FILTER_LZMA2
;
22 opt_easy
->filters
[0].options
= &opt_easy
->opt_lzma
;
23 opt_easy
->filters
[1].id
= LZMA_VLI_UNKNOWN
;