1 | /* The copyright in this software is being made available under the BSD |
---|
2 | * License, included below. This software may be subject to other third party |
---|
3 | * and contributor rights, including patent rights, and no such rights are |
---|
4 | * granted under this license. |
---|
5 | * |
---|
6 | * Copyright (c) 2010-2015, ITU/ISO/IEC |
---|
7 | * All rights reserved. |
---|
8 | * |
---|
9 | * Redistribution and use in source and binary forms, with or without |
---|
10 | * modification, are permitted provided that the following conditions are met: |
---|
11 | * |
---|
12 | * * Redistributions of source code must retain the above copyright notice, |
---|
13 | * this list of conditions and the following disclaimer. |
---|
14 | * * Redistributions in binary form must reproduce the above copyright notice, |
---|
15 | * this list of conditions and the following disclaimer in the documentation |
---|
16 | * and/or other materials provided with the distribution. |
---|
17 | * * Neither the name of the ITU/ISO/IEC nor the names of its contributors may |
---|
18 | * be used to endorse or promote products derived from this software without |
---|
19 | * specific prior written permission. |
---|
20 | * |
---|
21 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
---|
22 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
---|
23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
---|
24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS |
---|
25 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
---|
26 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
---|
27 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
---|
28 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
---|
29 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
---|
30 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
---|
31 | * THE POSSIBILITY OF SUCH DAMAGE. |
---|
32 | */ |
---|
33 | |
---|
34 | /** \file TComRom.cpp |
---|
35 | \brief global variables & functions |
---|
36 | */ |
---|
37 | |
---|
38 | #include "TComRom.h" |
---|
39 | #include <memory.h> |
---|
40 | #include <stdlib.h> |
---|
41 | #include <stdio.h> |
---|
42 | #include <iomanip> |
---|
43 | #include <assert.h> |
---|
44 | #include "TComDataCU.h" |
---|
45 | #include "Debug.h" |
---|
46 | // ==================================================================================================================== |
---|
47 | // Initialize / destroy functions |
---|
48 | // ==================================================================================================================== |
---|
49 | |
---|
50 | //! \ingroup TLibCommon |
---|
51 | //! \{ |
---|
52 | |
---|
53 | class ScanGenerator |
---|
54 | { |
---|
55 | private: |
---|
56 | UInt m_line, m_column; |
---|
57 | const UInt m_blockWidth, m_blockHeight; |
---|
58 | const UInt m_stride; |
---|
59 | const COEFF_SCAN_TYPE m_scanType; |
---|
60 | |
---|
61 | public: |
---|
62 | ScanGenerator(UInt blockWidth, UInt blockHeight, UInt stride, COEFF_SCAN_TYPE scanType) |
---|
63 | : m_line(0), m_column(0), m_blockWidth(blockWidth), m_blockHeight(blockHeight), m_stride(stride), m_scanType(scanType) |
---|
64 | { } |
---|
65 | |
---|
66 | UInt GetCurrentX() const { return m_column; } |
---|
67 | UInt GetCurrentY() const { return m_line; } |
---|
68 | |
---|
69 | UInt GetNextIndex(UInt blockOffsetX, UInt blockOffsetY) |
---|
70 | { |
---|
71 | Int rtn=((m_line + blockOffsetY) * m_stride) + m_column + blockOffsetX; |
---|
72 | |
---|
73 | //advance line and column to the next position |
---|
74 | switch (m_scanType) |
---|
75 | { |
---|
76 | //------------------------------------------------ |
---|
77 | |
---|
78 | case SCAN_DIAG: |
---|
79 | { |
---|
80 | if ((m_column == (m_blockWidth - 1)) || (m_line == 0)) //if we reach the end of a rank, go diagonally down to the next one |
---|
81 | { |
---|
82 | m_line += m_column + 1; |
---|
83 | m_column = 0; |
---|
84 | |
---|
85 | if (m_line >= m_blockHeight) //if that takes us outside the block, adjust so that we are back on the bottom row |
---|
86 | { |
---|
87 | m_column += m_line - (m_blockHeight - 1); |
---|
88 | m_line = m_blockHeight - 1; |
---|
89 | } |
---|
90 | } |
---|
91 | else |
---|
92 | { |
---|
93 | m_column++; |
---|
94 | m_line--; |
---|
95 | } |
---|
96 | } |
---|
97 | break; |
---|
98 | |
---|
99 | //------------------------------------------------ |
---|
100 | |
---|
101 | case SCAN_HOR: |
---|
102 | { |
---|
103 | if (m_column == (m_blockWidth - 1)) |
---|
104 | { |
---|
105 | m_line++; |
---|
106 | m_column = 0; |
---|
107 | } |
---|
108 | else |
---|
109 | { |
---|
110 | m_column++; |
---|
111 | } |
---|
112 | } |
---|
113 | break; |
---|
114 | |
---|
115 | //------------------------------------------------ |
---|
116 | |
---|
117 | case SCAN_VER: |
---|
118 | { |
---|
119 | if (m_line == (m_blockHeight - 1)) |
---|
120 | { |
---|
121 | m_column++; |
---|
122 | m_line = 0; |
---|
123 | } |
---|
124 | else |
---|
125 | { |
---|
126 | m_line++; |
---|
127 | } |
---|
128 | } |
---|
129 | break; |
---|
130 | |
---|
131 | //------------------------------------------------ |
---|
132 | |
---|
133 | default: |
---|
134 | { |
---|
135 | std::cerr << "ERROR: Unknown scan type \"" << m_scanType << "\"in ScanGenerator::GetNextIndex" << std::endl; |
---|
136 | exit(1); |
---|
137 | } |
---|
138 | break; |
---|
139 | } |
---|
140 | |
---|
141 | return rtn; |
---|
142 | } |
---|
143 | }; |
---|
144 | |
---|
145 | // initialize ROM variables |
---|
146 | Void initROM() |
---|
147 | { |
---|
148 | Int i, c; |
---|
149 | |
---|
150 | // g_aucConvertToBit[ x ]: log2(x/4), if x=4 -> 0, x=8 -> 1, x=16 -> 2, ... |
---|
151 | ::memset( g_aucConvertToBit, -1, sizeof( g_aucConvertToBit ) ); |
---|
152 | c=0; |
---|
153 | for ( i=4; i<=MAX_CU_SIZE; i*=2 ) |
---|
154 | { |
---|
155 | g_aucConvertToBit[ i ] = c; |
---|
156 | c++; |
---|
157 | } |
---|
158 | |
---|
159 | // initialise scan orders |
---|
160 | for(UInt log2BlockHeight = 0; log2BlockHeight < MAX_CU_DEPTH; log2BlockHeight++) |
---|
161 | { |
---|
162 | for(UInt log2BlockWidth = 0; log2BlockWidth < MAX_CU_DEPTH; log2BlockWidth++) |
---|
163 | { |
---|
164 | const UInt blockWidth = 1 << log2BlockWidth; |
---|
165 | const UInt blockHeight = 1 << log2BlockHeight; |
---|
166 | const UInt totalValues = blockWidth * blockHeight; |
---|
167 | |
---|
168 | //-------------------------------------------------------------------------------------------------- |
---|
169 | |
---|
170 | //non-grouped scan orders |
---|
171 | |
---|
172 | for (UInt scanTypeIndex = 0; scanTypeIndex < SCAN_NUMBER_OF_TYPES; scanTypeIndex++) |
---|
173 | { |
---|
174 | const COEFF_SCAN_TYPE scanType = COEFF_SCAN_TYPE(scanTypeIndex); |
---|
175 | |
---|
176 | g_scanOrder[SCAN_UNGROUPED][scanType][log2BlockWidth][log2BlockHeight] = new UInt[totalValues]; |
---|
177 | |
---|
178 | ScanGenerator fullBlockScan(blockWidth, blockHeight, blockWidth, scanType); |
---|
179 | |
---|
180 | for (UInt scanPosition = 0; scanPosition < totalValues; scanPosition++) |
---|
181 | { |
---|
182 | g_scanOrder[SCAN_UNGROUPED][scanType][log2BlockWidth][log2BlockHeight][scanPosition] = fullBlockScan.GetNextIndex(0, 0); |
---|
183 | } |
---|
184 | } |
---|
185 | |
---|
186 | //-------------------------------------------------------------------------------------------------- |
---|
187 | |
---|
188 | //grouped scan orders |
---|
189 | |
---|
190 | const UInt groupWidth = 1 << MLS_CG_LOG2_WIDTH; |
---|
191 | const UInt groupHeight = 1 << MLS_CG_LOG2_HEIGHT; |
---|
192 | const UInt widthInGroups = blockWidth >> MLS_CG_LOG2_WIDTH; |
---|
193 | const UInt heightInGroups = blockHeight >> MLS_CG_LOG2_HEIGHT; |
---|
194 | |
---|
195 | const UInt groupSize = groupWidth * groupHeight; |
---|
196 | const UInt totalGroups = widthInGroups * heightInGroups; |
---|
197 | |
---|
198 | for (UInt scanTypeIndex = 0; scanTypeIndex < SCAN_NUMBER_OF_TYPES; scanTypeIndex++) |
---|
199 | { |
---|
200 | const COEFF_SCAN_TYPE scanType = COEFF_SCAN_TYPE(scanTypeIndex); |
---|
201 | |
---|
202 | g_scanOrder[SCAN_GROUPED_4x4][scanType][log2BlockWidth][log2BlockHeight] = new UInt[totalValues]; |
---|
203 | |
---|
204 | ScanGenerator fullBlockScan(widthInGroups, heightInGroups, groupWidth, scanType); |
---|
205 | |
---|
206 | for (UInt groupIndex = 0; groupIndex < totalGroups; groupIndex++) |
---|
207 | { |
---|
208 | const UInt groupPositionY = fullBlockScan.GetCurrentY(); |
---|
209 | const UInt groupPositionX = fullBlockScan.GetCurrentX(); |
---|
210 | const UInt groupOffsetX = groupPositionX * groupWidth; |
---|
211 | const UInt groupOffsetY = groupPositionY * groupHeight; |
---|
212 | const UInt groupOffsetScan = groupIndex * groupSize; |
---|
213 | |
---|
214 | ScanGenerator groupScan(groupWidth, groupHeight, blockWidth, scanType); |
---|
215 | |
---|
216 | for (UInt scanPosition = 0; scanPosition < groupSize; scanPosition++) |
---|
217 | { |
---|
218 | g_scanOrder[SCAN_GROUPED_4x4][scanType][log2BlockWidth][log2BlockHeight][groupOffsetScan + scanPosition] = groupScan.GetNextIndex(groupOffsetX, groupOffsetY); |
---|
219 | } |
---|
220 | |
---|
221 | fullBlockScan.GetNextIndex(0,0); |
---|
222 | } |
---|
223 | } |
---|
224 | |
---|
225 | //-------------------------------------------------------------------------------------------------- |
---|
226 | } |
---|
227 | } |
---|
228 | } |
---|
229 | |
---|
230 | Void destroyROM() |
---|
231 | { |
---|
232 | for(UInt groupTypeIndex = 0; groupTypeIndex < SCAN_NUMBER_OF_GROUP_TYPES; groupTypeIndex++) |
---|
233 | { |
---|
234 | for (UInt scanOrderIndex = 0; scanOrderIndex < SCAN_NUMBER_OF_TYPES; scanOrderIndex++) |
---|
235 | { |
---|
236 | for (UInt log2BlockWidth = 0; log2BlockWidth < MAX_CU_DEPTH; log2BlockWidth++) |
---|
237 | { |
---|
238 | for (UInt log2BlockHeight = 0; log2BlockHeight < MAX_CU_DEPTH; log2BlockHeight++) |
---|
239 | { |
---|
240 | delete [] g_scanOrder[groupTypeIndex][scanOrderIndex][log2BlockWidth][log2BlockHeight]; |
---|
241 | } |
---|
242 | } |
---|
243 | } |
---|
244 | } |
---|
245 | } |
---|
246 | |
---|
247 | // ==================================================================================================================== |
---|
248 | // Data structure related table & variable |
---|
249 | // ==================================================================================================================== |
---|
250 | |
---|
251 | UInt g_auiZscanToRaster [ MAX_NUM_SPU_W*MAX_NUM_SPU_W ] = { 0, }; |
---|
252 | UInt g_auiRasterToZscan [ MAX_NUM_SPU_W*MAX_NUM_SPU_W ] = { 0, }; |
---|
253 | UInt g_auiRasterToPelX [ MAX_NUM_SPU_W*MAX_NUM_SPU_W ] = { 0, }; |
---|
254 | UInt g_auiRasterToPelY [ MAX_NUM_SPU_W*MAX_NUM_SPU_W ] = { 0, }; |
---|
255 | |
---|
256 | const UInt g_auiPUOffset[NUMBER_OF_PART_SIZES] = { 0, 8, 4, 4, 2, 10, 1, 5}; |
---|
257 | |
---|
258 | Void initZscanToRaster ( Int iMaxDepth, Int iDepth, UInt uiStartVal, UInt*& rpuiCurrIdx ) |
---|
259 | { |
---|
260 | Int iStride = 1 << ( iMaxDepth - 1 ); |
---|
261 | |
---|
262 | if ( iDepth == iMaxDepth ) |
---|
263 | { |
---|
264 | rpuiCurrIdx[0] = uiStartVal; |
---|
265 | rpuiCurrIdx++; |
---|
266 | } |
---|
267 | else |
---|
268 | { |
---|
269 | Int iStep = iStride >> iDepth; |
---|
270 | initZscanToRaster( iMaxDepth, iDepth+1, uiStartVal, rpuiCurrIdx ); |
---|
271 | initZscanToRaster( iMaxDepth, iDepth+1, uiStartVal+iStep, rpuiCurrIdx ); |
---|
272 | initZscanToRaster( iMaxDepth, iDepth+1, uiStartVal+iStep*iStride, rpuiCurrIdx ); |
---|
273 | initZscanToRaster( iMaxDepth, iDepth+1, uiStartVal+iStep*iStride+iStep, rpuiCurrIdx ); |
---|
274 | } |
---|
275 | } |
---|
276 | |
---|
277 | Void initRasterToZscan ( UInt uiMaxCUWidth, UInt uiMaxCUHeight, UInt uiMaxDepth ) |
---|
278 | { |
---|
279 | UInt uiMinCUWidth = uiMaxCUWidth >> ( uiMaxDepth - 1 ); |
---|
280 | UInt uiMinCUHeight = uiMaxCUHeight >> ( uiMaxDepth - 1 ); |
---|
281 | |
---|
282 | UInt uiNumPartInWidth = (UInt)uiMaxCUWidth / uiMinCUWidth; |
---|
283 | UInt uiNumPartInHeight = (UInt)uiMaxCUHeight / uiMinCUHeight; |
---|
284 | |
---|
285 | for ( UInt i = 0; i < uiNumPartInWidth*uiNumPartInHeight; i++ ) |
---|
286 | { |
---|
287 | g_auiRasterToZscan[ g_auiZscanToRaster[i] ] = i; |
---|
288 | } |
---|
289 | } |
---|
290 | |
---|
291 | Void initRasterToPelXY ( UInt uiMaxCUWidth, UInt uiMaxCUHeight, UInt uiMaxDepth ) |
---|
292 | { |
---|
293 | UInt i; |
---|
294 | |
---|
295 | UInt* uiTempX = &g_auiRasterToPelX[0]; |
---|
296 | UInt* uiTempY = &g_auiRasterToPelY[0]; |
---|
297 | |
---|
298 | UInt uiMinCUWidth = uiMaxCUWidth >> ( uiMaxDepth - 1 ); |
---|
299 | UInt uiMinCUHeight = uiMaxCUHeight >> ( uiMaxDepth - 1 ); |
---|
300 | |
---|
301 | UInt uiNumPartInWidth = uiMaxCUWidth / uiMinCUWidth; |
---|
302 | UInt uiNumPartInHeight = uiMaxCUHeight / uiMinCUHeight; |
---|
303 | |
---|
304 | uiTempX[0] = 0; uiTempX++; |
---|
305 | for ( i = 1; i < uiNumPartInWidth; i++ ) |
---|
306 | { |
---|
307 | uiTempX[0] = uiTempX[-1] + uiMinCUWidth; uiTempX++; |
---|
308 | } |
---|
309 | for ( i = 1; i < uiNumPartInHeight; i++ ) |
---|
310 | { |
---|
311 | memcpy(uiTempX, uiTempX-uiNumPartInWidth, sizeof(UInt)*uiNumPartInWidth); |
---|
312 | uiTempX += uiNumPartInWidth; |
---|
313 | } |
---|
314 | |
---|
315 | for ( i = 1; i < uiNumPartInWidth*uiNumPartInHeight; i++ ) |
---|
316 | { |
---|
317 | uiTempY[i] = ( i / uiNumPartInWidth ) * uiMinCUWidth; |
---|
318 | } |
---|
319 | } |
---|
320 | |
---|
321 | const Int g_quantScales[SCALING_LIST_REM_NUM] = |
---|
322 | { |
---|
323 | 26214,23302,20560,18396,16384,14564 |
---|
324 | }; |
---|
325 | |
---|
326 | const Int g_invQuantScales[SCALING_LIST_REM_NUM] = |
---|
327 | { |
---|
328 | 40,45,51,57,64,72 |
---|
329 | }; |
---|
330 | |
---|
331 | //-------------------------------------------------------------------------------------------------- |
---|
332 | |
---|
333 | //structures |
---|
334 | |
---|
335 | #define DEFINE_DST4x4_MATRIX(a,b,c,d) \ |
---|
336 | { \ |
---|
337 | { a, b, c, d }, \ |
---|
338 | { c, c, 0, -c }, \ |
---|
339 | { d, -a, -c, b }, \ |
---|
340 | { b, -d, c, -a }, \ |
---|
341 | } |
---|
342 | |
---|
343 | #define DEFINE_DCT4x4_MATRIX(a,b,c) \ |
---|
344 | { \ |
---|
345 | { a, a, a, a}, \ |
---|
346 | { b, c, -c, -b}, \ |
---|
347 | { a, -a, -a, a}, \ |
---|
348 | { c, -b, b, -c} \ |
---|
349 | } |
---|
350 | |
---|
351 | #define DEFINE_DCT8x8_MATRIX(a,b,c,d,e,f,g) \ |
---|
352 | { \ |
---|
353 | { a, a, a, a, a, a, a, a}, \ |
---|
354 | { d, e, f, g, -g, -f, -e, -d}, \ |
---|
355 | { b, c, -c, -b, -b, -c, c, b}, \ |
---|
356 | { e, -g, -d, -f, f, d, g, -e}, \ |
---|
357 | { a, -a, -a, a, a, -a, -a, a}, \ |
---|
358 | { f, -d, g, e, -e, -g, d, -f}, \ |
---|
359 | { c, -b, b, -c, -c, b, -b, c}, \ |
---|
360 | { g, -f, e, -d, d, -e, f, -g} \ |
---|
361 | } |
---|
362 | |
---|
363 | #define DEFINE_DCT16x16_MATRIX(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o) \ |
---|
364 | { \ |
---|
365 | { a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a}, \ |
---|
366 | { h, i, j, k, l, m, n, o, -o, -n, -m, -l, -k, -j, -i, -h}, \ |
---|
367 | { d, e, f, g, -g, -f, -e, -d, -d, -e, -f, -g, g, f, e, d}, \ |
---|
368 | { i, l, o, -m, -j, -h, -k, -n, n, k, h, j, m, -o, -l, -i}, \ |
---|
369 | { b, c, -c, -b, -b, -c, c, b, b, c, -c, -b, -b, -c, c, b}, \ |
---|
370 | { j, o, -k, -i, -n, l, h, m, -m, -h, -l, n, i, k, -o, -j}, \ |
---|
371 | { e, -g, -d, -f, f, d, g, -e, -e, g, d, f, -f, -d, -g, e}, \ |
---|
372 | { k, -m, -i, o, h, n, -j, -l, l, j, -n, -h, -o, i, m, -k}, \ |
---|
373 | { a, -a, -a, a, a, -a, -a, a, a, -a, -a, a, a, -a, -a, a}, \ |
---|
374 | { l, -j, -n, h, -o, -i, m, k, -k, -m, i, o, -h, n, j, -l}, \ |
---|
375 | { f, -d, g, e, -e, -g, d, -f, -f, d, -g, -e, e, g, -d, f}, \ |
---|
376 | { m, -h, l, n, -i, k, o, -j, j, -o, -k, i, -n, -l, h, -m}, \ |
---|
377 | { c, -b, b, -c, -c, b, -b, c, c, -b, b, -c, -c, b, -b, c}, \ |
---|
378 | { n, -k, h, -j, m, o, -l, i, -i, l, -o, -m, j, -h, k, -n}, \ |
---|
379 | { g, -f, e, -d, d, -e, f, -g, -g, f, -e, d, -d, e, -f, g}, \ |
---|
380 | { o, -n, m, -l, k, -j, i, -h, h, -i, j, -k, l, -m, n, -o} \ |
---|
381 | } |
---|
382 | |
---|
383 | #define DEFINE_DCT32x32_MATRIX(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E) \ |
---|
384 | { \ |
---|
385 | { a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a, a}, \ |
---|
386 | { p, q, r, s, t, u, v, w, x, y, z, A, B, C, D, E, -E, -D, -C, -B, -A, -z, -y, -x, -w, -v, -u, -t, -s, -r, -q, -p}, \ |
---|
387 | { h, i, j, k, l, m, n, o, -o, -n, -m, -l, -k, -j, -i, -h, -h, -i, -j, -k, -l, -m, -n, -o, o, n, m, l, k, j, i, h}, \ |
---|
388 | { q, t, w, z, C, -E, -B, -y, -v, -s, -p, -r, -u, -x, -A, -D, D, A, x, u, r, p, s, v, y, B, E, -C, -z, -w, -t, -q}, \ |
---|
389 | { d, e, f, g, -g, -f, -e, -d, -d, -e, -f, -g, g, f, e, d, d, e, f, g, -g, -f, -e, -d, -d, -e, -f, -g, g, f, e, d}, \ |
---|
390 | { r, w, B, -D, -y, -t, -p, -u, -z, -E, A, v, q, s, x, C, -C, -x, -s, -q, -v, -A, E, z, u, p, t, y, D, -B, -w, -r}, \ |
---|
391 | { i, l, o, -m, -j, -h, -k, -n, n, k, h, j, m, -o, -l, -i, -i, -l, -o, m, j, h, k, n, -n, -k, -h, -j, -m, o, l, i}, \ |
---|
392 | { s, z, -D, -w, -p, -v, -C, A, t, r, y, -E, -x, -q, -u, -B, B, u, q, x, E, -y, -r, -t, -A, C, v, p, w, D, -z, -s}, \ |
---|
393 | { b, c, -c, -b, -b, -c, c, b, b, c, -c, -b, -b, -c, c, b, b, c, -c, -b, -b, -c, c, b, b, c, -c, -b, -b, -c, c, b}, \ |
---|
394 | { t, C, -y, -p, -x, D, u, s, B, -z, -q, -w, E, v, r, A, -A, -r, -v, -E, w, q, z, -B, -s, -u, -D, x, p, y, -C, -t}, \ |
---|
395 | { j, o, -k, -i, -n, l, h, m, -m, -h, -l, n, i, k, -o, -j, -j, -o, k, i, n, -l, -h, -m, m, h, l, -n, -i, -k, o, j}, \ |
---|
396 | { u, -E, -t, -v, D, s, w, -C, -r, -x, B, q, y, -A, -p, -z, z, p, A, -y, -q, -B, x, r, C, -w, -s, -D, v, t, E, -u}, \ |
---|
397 | { e, -g, -d, -f, f, d, g, -e, -e, g, d, f, -f, -d, -g, e, e, -g, -d, -f, f, d, g, -e, -e, g, d, f, -f, -d, -g, e}, \ |
---|
398 | { v, -B, -p, -C, u, w, -A, -q, -D, t, x, -z, -r, -E, s, y, -y, -s, E, r, z, -x, -t, D, q, A, -w, -u, C, p, B, -v}, \ |
---|
399 | { k, -m, -i, o, h, n, -j, -l, l, j, -n, -h, -o, i, m, -k, -k, m, i, -o, -h, -n, j, l, -l, -j, n, h, o, -i, -m, k}, \ |
---|
400 | { w, -y, -u, A, s, -C, -q, E, p, D, -r, -B, t, z, -v, -x, x, v, -z, -t, B, r, -D, -p, -E, q, C, -s, -A, u, y, -w}, \ |
---|
401 | { a, -a, -a, a, a, -a, -a, a, a, -a, -a, a, a, -a, -a, a, a, -a, -a, a, a, -a, -a, a, a, -a, -a, a, a, -a, -a, a}, \ |
---|
402 | { x, -v, -z, t, B, -r, -D, p, -E, -q, C, s, -A, -u, y, w, -w, -y, u, A, -s, -C, q, E, -p, D, r, -B, -t, z, v, -x}, \ |
---|
403 | { l, -j, -n, h, -o, -i, m, k, -k, -m, i, o, -h, n, j, -l, -l, j, n, -h, o, i, -m, -k, k, m, -i, -o, h, -n, -j, l}, \ |
---|
404 | { y, -s, -E, r, -z, -x, t, D, -q, A, w, -u, -C, p, -B, -v, v, B, -p, C, u, -w, -A, q, -D, -t, x, z, -r, E, s, -y}, \ |
---|
405 | { f, -d, g, e, -e, -g, d, -f, -f, d, -g, -e, e, g, -d, f, f, -d, g, e, -e, -g, d, -f, -f, d, -g, -e, e, g, -d, f}, \ |
---|
406 | { z, -p, A, y, -q, B, x, -r, C, w, -s, D, v, -t, E, u, -u, -E, t, -v, -D, s, -w, -C, r, -x, -B, q, -y, -A, p, -z}, \ |
---|
407 | { m, -h, l, n, -i, k, o, -j, j, -o, -k, i, -n, -l, h, -m, -m, h, -l, -n, i, -k, -o, j, -j, o, k, -i, n, l, -h, m}, \ |
---|
408 | { A, -r, v, -E, -w, q, -z, -B, s, -u, D, x, -p, y, C, -t, t, -C, -y, p, -x, -D, u, -s, B, z, -q, w, E, -v, r, -A}, \ |
---|
409 | { c, -b, b, -c, -c, b, -b, c, c, -b, b, -c, -c, b, -b, c, c, -b, b, -c, -c, b, -b, c, c, -b, b, -c, -c, b, -b, c}, \ |
---|
410 | { B, -u, q, -x, E, y, -r, t, -A, -C, v, -p, w, -D, -z, s, -s, z, D, -w, p, -v, C, A, -t, r, -y, -E, x, -q, u, -B}, \ |
---|
411 | { n, -k, h, -j, m, o, -l, i, -i, l, -o, -m, j, -h, k, -n, -n, k, -h, j, -m, -o, l, -i, i, -l, o, m, -j, h, -k, n}, \ |
---|
412 | { C, -x, s, -q, v, -A, -E, z, -u, p, -t, y, -D, -B, w, -r, r, -w, B, D, -y, t, -p, u, -z, E, A, -v, q, -s, x, -C}, \ |
---|
413 | { g, -f, e, -d, d, -e, f, -g, -g, f, -e, d, -d, e, -f, g, g, -f, e, -d, d, -e, f, -g, -g, f, -e, d, -d, e, -f, g}, \ |
---|
414 | { D, -A, x, -u, r, -p, s, -v, y, -B, E, C, -z, w, -t, q, -q, t, -w, z, -C, -E, B, -y, v, -s, p, -r, u, -x, A, -D}, \ |
---|
415 | { o, -n, m, -l, k, -j, i, -h, h, -i, j, -k, l, -m, n, -o, -o, n, -m, l, -k, j, -i, h, -h, i, -j, k, -l, m, -n, o}, \ |
---|
416 | { E, -D, C, -B, A, -z, y, -x, w, -v, u, -t, s, -r, q, -p, p, -q, r, -s, t, -u, v, -w, x, -y, z, -A, B, -C, D, -E} \ |
---|
417 | } |
---|
418 | |
---|
419 | //-------------------------------------------------------------------------------------------------- |
---|
420 | |
---|
421 | //coefficients |
---|
422 | |
---|
423 | #if RExt__HIGH_PRECISION_FORWARD_TRANSFORM |
---|
424 | const TMatrixCoeff g_aiT4 [TRANSFORM_NUMBER_OF_DIRECTIONS][4][4] = |
---|
425 | { |
---|
426 | DEFINE_DCT4x4_MATRIX (16384, 21266, 9224), |
---|
427 | DEFINE_DCT4x4_MATRIX ( 64, 83, 36) |
---|
428 | }; |
---|
429 | |
---|
430 | const TMatrixCoeff g_aiT8 [TRANSFORM_NUMBER_OF_DIRECTIONS][8][8] = |
---|
431 | { |
---|
432 | DEFINE_DCT8x8_MATRIX (16384, 21266, 9224, 22813, 19244, 12769, 4563), |
---|
433 | DEFINE_DCT8x8_MATRIX ( 64, 83, 36, 89, 75, 50, 18) |
---|
434 | }; |
---|
435 | |
---|
436 | const TMatrixCoeff g_aiT16[TRANSFORM_NUMBER_OF_DIRECTIONS][16][16] = |
---|
437 | { |
---|
438 | DEFINE_DCT16x16_MATRIX(16384, 21266, 9224, 22813, 19244, 12769, 4563, 23120, 22063, 20450, 17972, 14642, 11109, 6446, 2316), |
---|
439 | DEFINE_DCT16x16_MATRIX( 64, 83, 36, 89, 75, 50, 18, 90, 87, 80, 70, 57, 43, 25, 9) |
---|
440 | }; |
---|
441 | |
---|
442 | const TMatrixCoeff g_aiT32[TRANSFORM_NUMBER_OF_DIRECTIONS][32][32] = |
---|
443 | { |
---|
444 | DEFINE_DCT32x32_MATRIX(16384, 21266, 9224, 22813, 19244, 12769, 4563, 23120, 22063, 20450, 17972, 14642, 11109, 6446, 2316, 23106, 22852, 22445, 21848, 20995, 19810, 18601, 17143, 15718, 13853, 11749, 9846, 7908, 5573, 3281, 946), |
---|
445 | DEFINE_DCT32x32_MATRIX( 64, 83, 36, 89, 75, 50, 18, 90, 87, 80, 70, 57, 43, 25, 9, 90, 90, 88, 85, 82, 78, 73, 67, 61, 54, 46, 38, 31, 22, 13, 4) |
---|
446 | }; |
---|
447 | |
---|
448 | const TMatrixCoeff g_as_DST_MAT_4[TRANSFORM_NUMBER_OF_DIRECTIONS][4][4] = |
---|
449 | { |
---|
450 | DEFINE_DST4x4_MATRIX( 7424, 14081, 18893, 21505), |
---|
451 | DEFINE_DST4x4_MATRIX( 29, 55, 74, 84) |
---|
452 | }; |
---|
453 | |
---|
454 | #else |
---|
455 | |
---|
456 | const TMatrixCoeff g_aiT4 [TRANSFORM_NUMBER_OF_DIRECTIONS][4][4] = |
---|
457 | { |
---|
458 | DEFINE_DCT4x4_MATRIX ( 64, 83, 36), |
---|
459 | DEFINE_DCT4x4_MATRIX ( 64, 83, 36) |
---|
460 | }; |
---|
461 | |
---|
462 | const TMatrixCoeff g_aiT8 [TRANSFORM_NUMBER_OF_DIRECTIONS][8][8] = |
---|
463 | { |
---|
464 | DEFINE_DCT8x8_MATRIX ( 64, 83, 36, 89, 75, 50, 18), |
---|
465 | DEFINE_DCT8x8_MATRIX ( 64, 83, 36, 89, 75, 50, 18) |
---|
466 | }; |
---|
467 | |
---|
468 | const TMatrixCoeff g_aiT16[TRANSFORM_NUMBER_OF_DIRECTIONS][16][16] = |
---|
469 | { |
---|
470 | DEFINE_DCT16x16_MATRIX( 64, 83, 36, 89, 75, 50, 18, 90, 87, 80, 70, 57, 43, 25, 9), |
---|
471 | DEFINE_DCT16x16_MATRIX( 64, 83, 36, 89, 75, 50, 18, 90, 87, 80, 70, 57, 43, 25, 9) |
---|
472 | }; |
---|
473 | |
---|
474 | const TMatrixCoeff g_aiT32[TRANSFORM_NUMBER_OF_DIRECTIONS][32][32] = |
---|
475 | { |
---|
476 | DEFINE_DCT32x32_MATRIX( 64, 83, 36, 89, 75, 50, 18, 90, 87, 80, 70, 57, 43, 25, 9, 90, 90, 88, 85, 82, 78, 73, 67, 61, 54, 46, 38, 31, 22, 13, 4), |
---|
477 | DEFINE_DCT32x32_MATRIX( 64, 83, 36, 89, 75, 50, 18, 90, 87, 80, 70, 57, 43, 25, 9, 90, 90, 88, 85, 82, 78, 73, 67, 61, 54, 46, 38, 31, 22, 13, 4) |
---|
478 | }; |
---|
479 | |
---|
480 | const TMatrixCoeff g_as_DST_MAT_4[TRANSFORM_NUMBER_OF_DIRECTIONS][4][4] = |
---|
481 | { |
---|
482 | DEFINE_DST4x4_MATRIX( 29, 55, 74, 84), |
---|
483 | DEFINE_DST4x4_MATRIX( 29, 55, 74, 84) |
---|
484 | }; |
---|
485 | #endif |
---|
486 | |
---|
487 | |
---|
488 | //-------------------------------------------------------------------------------------------------- |
---|
489 | |
---|
490 | #undef DEFINE_DST4x4_MATRIX |
---|
491 | #undef DEFINE_DCT4x4_MATRIX |
---|
492 | #undef DEFINE_DCT8x8_MATRIX |
---|
493 | #undef DEFINE_DCT16x16_MATRIX |
---|
494 | #undef DEFINE_DCT32x32_MATRIX |
---|
495 | |
---|
496 | //-------------------------------------------------------------------------------------------------- |
---|
497 | |
---|
498 | |
---|
499 | const UChar g_aucChromaScale[NUM_CHROMA_FORMAT][chromaQPMappingTableSize]= |
---|
500 | { |
---|
501 | //0, 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 |
---|
502 | { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, |
---|
503 | { 0, 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,29,30,31,32,33,33,34,34,35,35,36,36,37,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51 }, |
---|
504 | { 0, 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,51,51,51,51,51,51 }, |
---|
505 | { 0, 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,51,51,51,51,51,51 } |
---|
506 | }; |
---|
507 | |
---|
508 | // ==================================================================================================================== |
---|
509 | // ADI |
---|
510 | // ==================================================================================================================== |
---|
511 | |
---|
512 | #if FAST_UDI_USE_MPM |
---|
513 | const UChar g_aucIntraModeNumFast[MAX_CU_DEPTH] = |
---|
514 | { |
---|
515 | 3, // 2x2 |
---|
516 | 8, // 4x4 |
---|
517 | 8, // 8x8 |
---|
518 | 3, // 16x16 |
---|
519 | 3, // 32x32 |
---|
520 | 3 // 64x64 |
---|
521 | }; |
---|
522 | #else // FAST_UDI_USE_MPM |
---|
523 | const UChar g_aucIntraModeNumFast[MAX_CU_DEPTH] = |
---|
524 | { |
---|
525 | 3, // 2x2 |
---|
526 | 9, // 4x4 |
---|
527 | 9, // 8x8 |
---|
528 | 4, // 16x16 33 |
---|
529 | 4, // 32x32 33 |
---|
530 | 5 // 64x64 33 |
---|
531 | }; |
---|
532 | #endif // FAST_UDI_USE_MPM |
---|
533 | |
---|
534 | const UChar g_chroma422IntraAngleMappingTable[NUM_INTRA_MODE] = |
---|
535 | //0, 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, DM |
---|
536 | { 0, 1, 2, 2, 2, 2, 3, 5, 7, 8, 10, 12, 13, 15, 17, 18, 19, 20, 21, 22, 23, 23, 24, 24, 25, 25, 26, 27, 27, 28, 28, 29, 29, 30, 31, DM_CHROMA_IDX}; |
---|
537 | |
---|
538 | // ==================================================================================================================== |
---|
539 | // Misc. |
---|
540 | // ==================================================================================================================== |
---|
541 | |
---|
542 | Char g_aucConvertToBit [ MAX_CU_SIZE+1 ]; |
---|
543 | |
---|
544 | #if ENC_DEC_TRACE |
---|
545 | FILE* g_hTrace = NULL; // Set to NULL to open up a file. Set to stdout to use the current output |
---|
546 | const Bool g_bEncDecTraceEnable = true; |
---|
547 | const Bool g_bEncDecTraceDisable = false; |
---|
548 | Bool g_HLSTraceEnable = true; |
---|
549 | Bool g_bJustDoIt = false; |
---|
550 | UInt64 g_nSymbolCounter = 0; |
---|
551 | #endif |
---|
552 | // ==================================================================================================================== |
---|
553 | // Scanning order & context model mapping |
---|
554 | // ==================================================================================================================== |
---|
555 | |
---|
556 | // scanning order table |
---|
557 | UInt* g_scanOrder[SCAN_NUMBER_OF_GROUP_TYPES][SCAN_NUMBER_OF_TYPES][ MAX_CU_DEPTH ][ MAX_CU_DEPTH ]; |
---|
558 | |
---|
559 | const UInt ctxIndMap4x4[4*4] = |
---|
560 | { |
---|
561 | 0, 1, 4, 5, |
---|
562 | 2, 3, 4, 5, |
---|
563 | 6, 6, 8, 8, |
---|
564 | 7, 7, 8, 8 |
---|
565 | }; |
---|
566 | |
---|
567 | const UInt g_uiMinInGroup[ LAST_SIGNIFICANT_GROUPS ] = {0,1,2,3,4,6,8,12,16,24}; |
---|
568 | const UInt g_uiGroupIdx[ MAX_TU_SIZE ] = {0,1,2,3,4,4,5,5,6,6,6,6,7,7,7,7,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9}; |
---|
569 | |
---|
570 | const Char *MatrixType[SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM] = |
---|
571 | { |
---|
572 | { |
---|
573 | "INTRA4X4_LUMA", |
---|
574 | "INTRA4X4_CHROMAU", |
---|
575 | "INTRA4X4_CHROMAV", |
---|
576 | "INTER4X4_LUMA", |
---|
577 | "INTER4X4_CHROMAU", |
---|
578 | "INTER4X4_CHROMAV" |
---|
579 | }, |
---|
580 | { |
---|
581 | "INTRA8X8_LUMA", |
---|
582 | "INTRA8X8_CHROMAU", |
---|
583 | "INTRA8X8_CHROMAV", |
---|
584 | "INTER8X8_LUMA", |
---|
585 | "INTER8X8_CHROMAU", |
---|
586 | "INTER8X8_CHROMAV" |
---|
587 | }, |
---|
588 | { |
---|
589 | "INTRA16X16_LUMA", |
---|
590 | "INTRA16X16_CHROMAU", |
---|
591 | "INTRA16X16_CHROMAV", |
---|
592 | "INTER16X16_LUMA", |
---|
593 | "INTER16X16_CHROMAU", |
---|
594 | "INTER16X16_CHROMAV" |
---|
595 | }, |
---|
596 | { |
---|
597 | "INTRA32X32_LUMA", |
---|
598 | "INTRA32X32_CHROMAU_FROM16x16_CHROMAU", |
---|
599 | "INTRA32X32_CHROMAV_FROM16x16_CHROMAV", |
---|
600 | "INTER32X32_LUMA", |
---|
601 | "INTER32X32_CHROMAU_FROM16x16_CHROMAU", |
---|
602 | "INTER32X32_CHROMAV_FROM16x16_CHROMAV" |
---|
603 | }, |
---|
604 | }; |
---|
605 | |
---|
606 | const Char *MatrixType_DC[SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM] = |
---|
607 | { |
---|
608 | { |
---|
609 | }, |
---|
610 | { |
---|
611 | }, |
---|
612 | { |
---|
613 | "INTRA16X16_LUMA_DC", |
---|
614 | "INTRA16X16_CHROMAU_DC", |
---|
615 | "INTRA16X16_CHROMAV_DC", |
---|
616 | "INTER16X16_LUMA_DC", |
---|
617 | "INTER16X16_CHROMAU_DC", |
---|
618 | "INTER16X16_CHROMAV_DC" |
---|
619 | }, |
---|
620 | { |
---|
621 | "INTRA32X32_LUMA_DC", |
---|
622 | "INTRA32X32_CHROMAU_DC_FROM16x16_CHROMAU", |
---|
623 | "INTRA32X32_CHROMAV_DC_FROM16x16_CHROMAV", |
---|
624 | "INTER32X32_LUMA_DC", |
---|
625 | "INTER32X32_CHROMAU_DC_FROM16x16_CHROMAU", |
---|
626 | "INTER32X32_CHROMAV_DC_FROM16x16_CHROMAV" |
---|
627 | }, |
---|
628 | }; |
---|
629 | |
---|
630 | const Int g_quantTSDefault4x4[4*4] = |
---|
631 | { |
---|
632 | 16,16,16,16, |
---|
633 | 16,16,16,16, |
---|
634 | 16,16,16,16, |
---|
635 | 16,16,16,16 |
---|
636 | }; |
---|
637 | |
---|
638 | const Int g_quantIntraDefault8x8[8*8] = |
---|
639 | { |
---|
640 | 16,16,16,16,17,18,21,24, |
---|
641 | 16,16,16,16,17,19,22,25, |
---|
642 | 16,16,17,18,20,22,25,29, |
---|
643 | 16,16,18,21,24,27,31,36, |
---|
644 | 17,17,20,24,30,35,41,47, |
---|
645 | 18,19,22,27,35,44,54,65, |
---|
646 | 21,22,25,31,41,54,70,88, |
---|
647 | 24,25,29,36,47,65,88,115 |
---|
648 | }; |
---|
649 | |
---|
650 | const Int g_quantInterDefault8x8[8*8] = |
---|
651 | { |
---|
652 | 16,16,16,16,17,18,20,24, |
---|
653 | 16,16,16,17,18,20,24,25, |
---|
654 | 16,16,17,18,20,24,25,28, |
---|
655 | 16,17,18,20,24,25,28,33, |
---|
656 | 17,18,20,24,25,28,33,41, |
---|
657 | 18,20,24,25,28,33,41,54, |
---|
658 | 20,24,25,28,33,41,54,71, |
---|
659 | 24,25,28,33,41,54,71,91 |
---|
660 | }; |
---|
661 | |
---|
662 | const UInt g_scalingListSize [SCALING_LIST_SIZE_NUM] = {16,64,256,1024}; |
---|
663 | const UInt g_scalingListSizeX [SCALING_LIST_SIZE_NUM] = { 4, 8, 16, 32}; |
---|
664 | |
---|
665 | #if SVC_EXTENSION |
---|
666 | #if FAST_INTRA_SHVC |
---|
667 | UInt g_reducedSetIntraModes[NUM_INTRA_MODE-1] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 }; |
---|
668 | UInt g_predefSetIntraModes[NUM_INTRA_MODE-1] = {26,10,18,34,2,22,14,30,6,24,12,28,8,20,16,32,4,17,19,15,21,13,23,11,25,9,27,7,29,5,31,3,33,0,2}; |
---|
669 | #endif |
---|
670 | Int g_mvScalingFactor [MAX_LAYERS][2] = {{0,0}, {0,0}}; |
---|
671 | Int g_posScalingFactor [MAX_LAYERS][2] = {{0,0}, {0,0}}; |
---|
672 | |
---|
673 | std::string NaluToStr( NalUnitType nalu ) |
---|
674 | { |
---|
675 | switch( nalu ) |
---|
676 | { |
---|
677 | case NAL_UNIT_CODED_SLICE_TRAIL_N: |
---|
678 | return "TRAIL_N"; |
---|
679 | case NAL_UNIT_CODED_SLICE_TRAIL_R: |
---|
680 | return "TRAIL_R"; |
---|
681 | |
---|
682 | case NAL_UNIT_CODED_SLICE_TSA_N: |
---|
683 | return " TSA_N"; |
---|
684 | case NAL_UNIT_CODED_SLICE_TSA_R: |
---|
685 | return " TSA_R"; |
---|
686 | |
---|
687 | case NAL_UNIT_CODED_SLICE_STSA_N: |
---|
688 | return " STSA_N"; |
---|
689 | case NAL_UNIT_CODED_SLICE_STSA_R: |
---|
690 | return " STSA_R"; |
---|
691 | |
---|
692 | case NAL_UNIT_CODED_SLICE_RADL_N: |
---|
693 | return " RADL_N"; |
---|
694 | case NAL_UNIT_CODED_SLICE_RADL_R: |
---|
695 | return " RADL_R"; |
---|
696 | |
---|
697 | case NAL_UNIT_CODED_SLICE_RASL_N: |
---|
698 | return " RASL_N"; |
---|
699 | case NAL_UNIT_CODED_SLICE_RASL_R: |
---|
700 | return " RASL_R"; |
---|
701 | |
---|
702 | case NAL_UNIT_CODED_SLICE_BLA_W_LP: |
---|
703 | case NAL_UNIT_CODED_SLICE_BLA_W_RADL: |
---|
704 | case NAL_UNIT_CODED_SLICE_BLA_N_LP: |
---|
705 | return " BLA"; |
---|
706 | |
---|
707 | case NAL_UNIT_CODED_SLICE_IDR_W_RADL: |
---|
708 | case NAL_UNIT_CODED_SLICE_IDR_N_LP: |
---|
709 | return " IDR"; |
---|
710 | |
---|
711 | case NAL_UNIT_CODED_SLICE_CRA: |
---|
712 | return " CRA"; |
---|
713 | |
---|
714 | default: |
---|
715 | return " "; |
---|
716 | }; |
---|
717 | } |
---|
718 | #if LAYER_CTB |
---|
719 | UInt g_auiLayerZscanToRaster[MAX_LAYERS][ MAX_NUM_SPU_W*MAX_NUM_SPU_W ]; |
---|
720 | UInt g_auiLayerRasterToZscan[MAX_LAYERS][ MAX_NUM_SPU_W*MAX_NUM_SPU_W ]; |
---|
721 | UInt g_auiLayerRasterToPelX[MAX_LAYERS][ MAX_NUM_SPU_W*MAX_NUM_SPU_W ]; |
---|
722 | UInt g_auiLayerRasterToPelY[MAX_LAYERS][ MAX_NUM_SPU_W*MAX_NUM_SPU_W ]; |
---|
723 | #endif |
---|
724 | #endif //SVC_EXTENSION |
---|
725 | |
---|
726 | //! \} |
---|