]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/common/init_encoder.c
Oh well, big messy commit again. Some highlights:
[icculus/xz.git] / src / liblzma / common / init_encoder.c
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       init_encoder.c
4 /// \brief      Static internal initializations
5 //
6 //  Copyright (C) 2007 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 "common.h"
21 #include "range_encoder.h"
22 #include "lzma_encoder.h"
23
24
25 extern LZMA_API void
26 lzma_init_encoder(void)
27 {
28         static bool already_initialized = false;
29         if (already_initialized)
30                 return;
31
32         lzma_init_check();
33
34 #if defined(HAVE_SMALL) && defined(HAVE_ENCODER_LZMA1)
35         lzma_rc_init();
36 #endif
37
38         already_initialized = true;
39         return;
40 }