]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/common/easy_decoder_memusage.c
be84241a7852a65dbb5867b260532551b9a22659
[icculus/xz.git] / src / liblzma / common / easy_decoder_memusage.c
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       easy_decoder_memusage.c
4 /// \brief      Decoder memory usage calculation to match easy encoder presets
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 LZMA_API(uint64_t)
24 lzma_easy_decoder_memusage(uint32_t preset)
25 {
26         lzma_options_easy opt_easy;
27         if (lzma_easy_preset(&opt_easy, preset))
28                 return UINT32_MAX;
29
30         return lzma_raw_decoder_memusage(opt_easy.filters);
31 }