Grok  7.6.0
t1_flags.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016-2020 Grok Image Compression Inc.
3  *
4  * This source code is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU Affero General Public License, version 3,
6  * as published by the Free Software Foundation.
7  *
8  * This source code is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU Affero General Public License for more details.
12  *
13  * You should have received a copy of the GNU Affero General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16 */
17 
18 #pragma once
19 
20 namespace grk {
21 
22 #define T1_CHI_0 (1U << 18)
23 #define T1_CHI_0_I 18
24 #define T1_CHI_1 (1U << 19)
25 #define T1_CHI_1_I 19
26 #define T1_MU_0 (1U << 20)
27 #define T1_PI_0 (1U << 21)
28 #define T1_CHI_2 (1U << 22)
29 #define T1_CHI_2_I 22
30 #define T1_MU_1 (1U << 23)
31 #define T1_PI_1_I 24
32 #define T1_PI_1 (1U << T1_PI_1_I)
33 #define T1_CHI_3 (1U << 25)
34 #define T1_MU_2 (1U << 26)
35 #define T1_PI_2_I 27
36 #define T1_PI_2 (1U << T1_PI_2_I)
37 #define T1_CHI_4 (1U << 28)
38 #define T1_MU_3 (1U << 29)
39 #define T1_PI_3 (1U << 30)
40 #define T1_CHI_5 (1U << 31)
41 #define T1_CHI_5_I 31
42 
43 }
44 
45 
46 
grk
Copyright (C) 2016-2020 Grok Image Compression Inc.
Definition: BitIO.h:27