-
Notifications
You must be signed in to change notification settings - Fork 45
/
CarrylessRangeCoder.m
169 lines (132 loc) · 3.84 KB
/
CarrylessRangeCoder.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*
* CarrylessRangeCoder.m
*
* Copyright (c) 2017-present, MacPaw Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA
*/
#import "CarrylessRangeCoder.h"
#import "ClangAnalyser.h"
void InitializeRangeCoder(CarrylessRangeCoder *self,CSInputBuffer *input,BOOL uselow,int bottom)
{
self->input=input;
self->low=0;
self->code=0;
self->range=0xffffffff;
self->uselow=uselow;
self->bottom=bottom;
self->code=CSInputNextUInt32BE(input);
//for(int i=0;i<4;i++) self->code=(self->code<<8)|CSInputNextByte(input);
}
uint32_t RangeCoderCurrentCount(CarrylessRangeCoder *self,uint32_t scale)
{
self->range/=scale;
return (self->code-self->low)/self->range;
}
void RemoveRangeCoderSubRange(CarrylessRangeCoder *self,uint32_t lowcount,uint32_t highcount)
{
if(self->uselow) self->low+=self->range*lowcount;
else self->code-=self->range*lowcount;
self->range*=highcount-lowcount;
NormalizeRangeCoder(self);
}
int NextSymbolFromRangeCoder(CarrylessRangeCoder *self,uint32_t *freqtable,int numfreq)
{
analyser_assert(numfreq>0);
uint32_t totalfreq=0;
for(int i=0;i<numfreq;i++) totalfreq+=freqtable[i];
uint32_t tmp=RangeCoderCurrentCount(self,totalfreq);
uint32_t cumulativefreq=0;
uint32_t n=0;
while(n<numfreq-1&&cumulativefreq+freqtable[n]<=tmp) cumulativefreq+=freqtable[n++];
RemoveRangeCoderSubRange(self,cumulativefreq,cumulativefreq+freqtable[n]);
return n;
}
int NextBitFromRangeCoder(CarrylessRangeCoder *self)
{
int bit=RangeCoderCurrentCount(self,2);
if(bit==0) RemoveRangeCoderSubRange(self,0,1);
else RemoveRangeCoderSubRange(self,1,2);
return bit;
}
int NextWeightedBitFromRangeCoder(CarrylessRangeCoder *self,int weight,int size)
{
uint32_t val=RangeCoderCurrentCount(self,size);
int bit;
if(val<weight) // <= ?
{
bit=0;
RemoveRangeCoderSubRange(self,0,weight);
}
else
{
bit=1;
RemoveRangeCoderSubRange(self,weight,size);
}
return bit;
}
int NextWeightedBitFromRangeCoder2(CarrylessRangeCoder *self,int weight,int shift)
{
uint32_t threshold=(self->range>>shift)*weight;
int bit;
if(self->code<threshold) // <= ?
{
bit=0;
self->range=threshold;
}
else
{
bit=1;
self->range-=threshold;
self->code-=threshold;
}
NormalizeRangeCoder(self);
return bit;
}
void NormalizeRangeCoder(CarrylessRangeCoder *self)
{
for(;;)
{
if( (self->low^(self->low+self->range))>=0x1000000 )
{
if(self->range>=self->bottom) break;
else self->range=-self->low&(self->bottom-1);
}
self->code=(self->code<<8) | CSInputNextByte(self->input);
self->range<<=8;
self->low<<=8;
}
}
/*int NextSymbolFromRangeCoderCumulative(CarrylessRangeCoder *self,uint32_t *cumulativetable,int stride)
{
uint32_t totalfreq=*cumulativetable;
cumulativetable=(uint32_t *)((uint8_t *)cumulativetable+stride);
self->range/=totalfreq;
uint32_t tmp=(self->code-self->low)/self->range;
uint32_t n=0,curr;
do
{
curr=*cumulativetable;
cumulativetable=(uint32_t *)((uint8_t *)cumulativetable+stride);
n++;
} while(tmp<curr);
cumulativetable=(uint32_t *)((uint8_t *)cumulativetable-2*stride);
uint32_t prev=*cumulativetable;
self->low+=self->range*curr;
self->range*=prev-curr;
NormalizeRangeCoder(self);
return n-1;
}*/