]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/common/easy_preset.c
d7f950c1b1b7289e5c5bebe956cc5c43281a1042
[icculus/xz.git] / src / liblzma / common / easy_preset.c
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       easy_preset.c
4 /// \brief      Preset handling for easy encoder and decoder
5 //
6 //  Copyright (C) 2008 Lasse Collin
7 //
8 //  This library is free software; you can redistribute it and/or
9 //  modify it under the terms of the GNU Lesser General Public
10 //  License as published by the Free Software Foundation; either
11 //  version 2.1 of the License, or (at your option) any later version.
12 //
13 //  This library is distributed in the hope that it will be useful,
14 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 //  Lesser General Public License for more details.
17 //
18 ///////////////////////////////////////////////////////////////////////////////
19
20 #include "easy_preset.h"
21
22
23 extern bool
24 lzma_easy_preset(lzma_options_easy *opt_easy, uint32_t preset)
25 {
26         if (lzma_lzma_preset(&opt_easy->opt_lzma, preset))
27                 return true;
28
29         opt_easy->filters[0].id = LZMA_FILTER_LZMA2;
30         opt_easy->filters[0].options = &opt_easy->opt_lzma;
31         opt_easy->filters[1].id = LZMA_VLI_UNKNOWN;
32
33         return false;
34 }