-
Notifications
You must be signed in to change notification settings - Fork 17
/
spectrum.c
219 lines (191 loc) · 7.7 KB
/
spectrum.c
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#include <stdint.h>
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include "ldacdec.h"
#include "spectrum.h"
#include "log.h"
#define LDAC_MAXNQUS 34
#define LDAC_MAXNSPS 16
/** Spectrum/Residual Data **/
#define LDAC_NIDWL 16
#define LDAC_NIDSF 32
#define LDAC_2DIMSPECBITS 3
#define LDAC_N2DIMSPECENCTBL 16
#define LDAC_N2DIMSPECDECTBL 8
#define LDAC_4DIMSPECBITS 7
#define LDAC_N4DIMSPECENCTBL 256
#define LDAC_N4DIMSPECDECTBL 81
/***************************************************************************************************
Encoding/Decoding Tables for Spectrum Data
***************************************************************************************************/
static const uint8_t ga_wl_ldac[LDAC_NIDWL] = {
0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
};
static const uint8_t ga_nsps_ldac[LDAC_MAXNQUS] = {
2, 2, 2, 2, 2, 2, 2, 2,
4, 4, 4, 4,
4, 4, 4, 4,
4, 4, 4, 4,
8, 8,
8, 8,
16, 16,
16, 16,
16, 16,
16, 16,
16, 16,
};
static const uint16_t ga_isp_ldac[LDAC_MAXNQUS+1] = {
0, 2, 4, 6, 8, 10, 12, 14,
16, 20, 24, 28,
32, 36, 40, 44,
48, 52, 56, 60,
64, 72,
80, 88,
96,112,
128,144,
160,176,
192,208,
224,240,
256,
};
static const int decode2DSpectrum[8] = {
0, 1, 2, 4, 6, 8, 9, 10
};
static const int decode4DSpectrum[128] = {
0, 1, 2, 4, 5, 6, 8, 9, 10, 16, 17, 18, 20, 21, 22, 24,
25, 26, 32, 33, 34, 36, 37, 38, 40, 41, 42, 64, 65, 66, 68, 69,
70, 72, 73, 74, 80, 81, 82, 84, 85, 86, 88, 89, 90, 96, 97, 98,
100, 101, 102, 104, 105, 106, 128, 129, 130, 132, 133, 134, 136, 137, 138, 144,
145, 146, 148, 149, 150, 152, 153, 154, 160, 161, 162, 164, 165, 166, 168, 169,
170, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
};
/***************************************************************************************************
Quantization Tables
***************************************************************************************************/
/* Inverse of Quantize Factor for Spectrum/Residual Quantization */
static const float QuantizerStepSize[16] = {
2.0000000000000000e+00, 6.6666666666666663e-01, 2.8571428571428570e-01, 1.3333333333333333e-01,
6.4516129032258063e-02, 3.1746031746031744e-02, 1.5748031496062992e-02, 7.8431372549019607e-03,
3.9138943248532287e-03, 1.9550342130987292e-03, 9.7703957010258913e-04, 4.8840048840048840e-04,
2.4417043096081065e-04, 1.2207776353537203e-04, 6.1037018951994385e-05, 3.0518043793392844e-05,
};
static const float QuantizerFineStepSize[16] =
{
3.0518043793392844e-05, 1.0172681264464281e-05, 4.3597205419132631e-06, 2.0345362528928561e-06,
9.8445302559331759e-07, 4.8441339354591809e-07, 2.4029955742829012e-07, 1.1967860311134448e-07,
5.9722199204291275e-08, 2.9831909866464167e-08, 1.4908668194134265e-08, 7.4525137468602791e-09,
3.7258019525568114e-09, 1.8627872668859698e-09, 9.3136520869755679e-10, 4.6567549848772173e-10
};
int decodeSpectrum( channel_t *this, BitReaderCxt *br )
{
frame_t *frame = this->frame;
for( int i=0; i<frame->quantizationUnitCount; ++i )
{
int startSubband = ga_isp_ldac[i];
int endSubband = ga_isp_ldac[i+1];
int nsps = ga_nsps_ldac[i];
int wl = ga_wl_ldac[this->precisions[i]];
if( this->precisions[i] == 1 )
{
int idxSpectrum = startSubband;
if( nsps == 2 )
{
int value = decode2DSpectrum[ReadInt( br, LDAC_2DIMSPECBITS )];
this->quantizedSpectra[idxSpectrum] = ((value>>2)&3) - 1;
this->quantizedSpectra[idxSpectrum+1] = (value&3) - 1;
} else
{
for (int j = 0; j < nsps/4; j++, idxSpectrum+=4)
{
int value = decode4DSpectrum[ReadInt( br, LDAC_4DIMSPECBITS )];
this->quantizedSpectra[idxSpectrum] = ((value>>6)&3) - 1;
this->quantizedSpectra[idxSpectrum+1] = ((value>>4)&3) - 1;
this->quantizedSpectra[idxSpectrum+2] = ((value>>2)&3) - 1;
this->quantizedSpectra[idxSpectrum+3] = (value&3) - 1;
}
}
} else
{
for( int j = startSubband; j<endSubband; ++j )
this->quantizedSpectra[j] = ReadSignedInt( br, wl );
}
}
LOG_ARRAY_LEN( this->quantizedSpectra, "%3d, ", frame->quantizationUnitCount );
return 0;
}
int decodeSpectrumFine( channel_t *this, BitReaderCxt *br )
{
frame_t *frame = this->frame;
memset( this->quantizedSpectraFine, 0, sizeof( this->quantizedSpectraFine ) );
for( int i=0; i<frame->quantizationUnitCount; ++i )
{
if( this->precisionsFine[i] > 0 )
{
int startSubband = ga_isp_ldac[i];
int endSubband = ga_isp_ldac[i+1];
int wl = ga_wl_ldac[this->precisionsFine[i]];
for( int j=startSubband; j<endSubband; ++j )
{
this->quantizedSpectraFine[j] = ReadSignedInt( br, wl );
}
}
}
LOG_ARRAY_LEN( this->quantizedSpectraFine, "%3d, ", frame->quantizationUnitCount );
return 0;
}
static void dequantizeQuantUnit( channel_t* this, int band )
{
const int subBandIndex = ga_isp_ldac[band];
const int subBandCount = ga_nsps_ldac[band];
const float stepSize = QuantizerStepSize[this->precisions[band]];
const float stepSizeFine = QuantizerFineStepSize[this->precisions[band]];
for( int sb=0; sb<subBandCount; ++sb )
{
const double coarse = this->quantizedSpectra[subBandIndex+sb] * stepSize;
const double fine = this->quantizedSpectraFine[subBandIndex+sb] * stepSizeFine;
this->spectra[subBandIndex + sb] = coarse + fine;
}
}
void dequantizeSpectra( channel_t *this )
{
frame_t *frame = this->frame;
memset( this->spectra, 0, sizeof(this->spectra) );
for( int i=0; i<frame->quantizationUnitCount; ++i )
{
dequantizeQuantUnit( this, i );
}
LOG_ARRAY_LEN( this->spectra, "%e, ", ga_isp_ldac[frame->quantizationUnitCount-1] + ga_nsps_ldac[frame->quantizationUnitCount-1] );
}
static const double spectrumScale[32] =
{
3.0517578125e-5, 6.1035156250e-5, 1.2207031250e-4, 2.4414062500e-4,
4.8828125000e-4, 9.7656250000e-4, 1.9531250000e-3, 3.9062500000e-3,
7.8125000000e-3, 1.5625000000e-2, 3.1250000000e-2, 6.2500000000e-2,
1.2500000000e-1, 2.5000000000e-1, 5.0000000000e-1, 1.0000000000e+0,
2.0000000000e+0, 4.0000000000e+0, 8.0000000000e+0, 1.6000000000e+1,
3.2000000000e+1, 6.4000000000e+1, 1.2800000000e+2, 2.5600000000e+2,
5.1200000000e+2, 1.0240000000e+3, 2.0480000000e+3, 4.0960000000e+3,
8.1920000000e+3, 1.6384000000e+4, 3.2768000000e+4, 6.5536000000e+4
};
void scaleSpectrum(channel_t* this)
{
const frame_t *frame = this->frame;
const int quantUnitCount = frame->quantizationUnitCount;
float * const spectra = this->spectra;
for (int i = 0; i < quantUnitCount; i++)
{
const int startSubBand = ga_isp_ldac[i];
const int endSubBand = ga_isp_ldac[i+1];
if( this->scaleFactors[i] > 0 )
{
for (int sb = startSubBand; sb < endSubBand; sb++)
{
spectra[sb] *= spectrumScale[this->scaleFactors[i]];
}
}
}
LOG_ARRAY_LEN( this->spectra, "%e, ", ga_isp_ldac[frame->quantizationUnitCount-1] + ga_nsps_ldac[frame->quantizationUnitCount-1] );
}