aboutsummaryrefslogblamecommitdiff
path: root/src/liblzma/common/easy_encoder_memusage.c
blob: 1184ac665425b6cd509250d2568c774c2e4597d7 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                




                                                                               
                            
  













                                                                               
// SPDX-License-Identifier: 0BSD

///////////////////////////////////////////////////////////////////////////////
//
/// \file       easy_encoder_memusage.c
/// \brief      Easy .xz Stream encoder memory usage calculation
//
//  Author:     Lasse Collin
//
///////////////////////////////////////////////////////////////////////////////

#include "easy_preset.h"


extern LZMA_API(uint64_t)
lzma_easy_encoder_memusage(uint32_t preset)
{
	lzma_options_easy opt_easy;
	if (lzma_easy_preset(&opt_easy, preset))
		return UINT32_MAX;

	return lzma_raw_encoder_memusage(opt_easy.filters);
}