source: 3DVCSoftware/branches/HTM-6.2-dev3-LG-2/source/Lib/TLibCommon/ContextTables.h @ 1327

Last change on this file since 1327 was 406, checked in by lg, 12 years ago

D0141 with Macro LGE_CONCATENATE

  • Property svn:eol-style set to native
File size: 19.2 KB
RevLine 
[5]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
[56]4 * granted under this license. 
[5]5 *
[56]6 * Copyright (c) 2010-2012, ITU/ISO/IEC
[5]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.
[56]17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
[5]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 */
[2]33
34/** \file     ContextTables.h
35    \brief    Defines constants and tables for SBAC
36    \todo     number of context models is not matched to actual use, should be fixed
37*/
38
39#ifndef __CONTEXTTABLES__
40#define __CONTEXTTABLES__
41
[56]42//! \ingroup TLibCommon
43//! \{
44
[2]45// ====================================================================================================================
46// Constants
47// ====================================================================================================================
48
[56]49#define MAX_NUM_CTX_MOD             512       ///< maximum number of supported contexts
50
[2]51#define NUM_SPLIT_FLAG_CTX            3       ///< number of context models for split flag
52#define NUM_SKIP_FLAG_CTX             3       ///< number of context models for skip flag
53
[189]54#if LGE_ILLUCOMP_B0045
55#define NUM_IC_FLAG_CTX               3       ///< number of context models for illumination compensation flag
56#endif
57
[56]58#define NUM_MERGE_FLAG_EXT_CTX        1       ///< number of context models for merge flag of merge extended
59#define NUM_MERGE_IDX_EXT_CTX         1       ///< number of context models for merge index of merge extended
[2]60
[296]61#if H3D_IVRP
[56]62#define NUM_RES_PRED_FLAG_CTX         4       ///< number of context for residual prediction flag
63#endif
64
65#define NUM_ALF_CTRL_FLAG_CTX         1       ///< number of context models for ALF control flag
66#define NUM_PART_SIZE_CTX             4       ///< number of context models for partition size
67#define NUM_CU_AMP_CTX                1       ///< number of context models for partition size (AMP)
68#define NUM_PRED_MODE_CTX             1       ///< number of context models for prediction mode
[2]69
[56]70#define NUM_ADI_CTX                   1       ///< number of context models for intra prediction
71
72#define NUM_CHROMA_PRED_CTX           2       ///< number of context models for intra prediction (chroma)
[2]73#define NUM_INTER_DIR_CTX             4       ///< number of context models for inter prediction direction
[56]74#define NUM_MV_RES_CTX                2       ///< number of context models for motion vector difference
[2]75
[56]76#define NUM_REF_NO_CTX                4       ///< number of context models for reference index
[2]77#define NUM_TRANS_SUBDIV_FLAG_CTX     10      ///< number of context models for transform subdivision flags
[56]78#define NUM_QT_CBF_CTX                5       ///< number of context models for QT CBF
79#define NUM_QT_ROOT_CBF_CTX           1       ///< number of context models for QT ROOT CBF
80#define NUM_DELTA_QP_CTX              3       ///< number of context models for dQP
[2]81
[56]82#define NUM_SIG_CG_FLAG_CTX           2       ///< number of context models for MULTI_LEVEL_SIGNIFICANCE
83
84#define NUM_SIG_FLAG_CTX              48      ///< number of context models for sig flag
85
86#define NUM_SIG_FLAG_CTX_LUMA         27      ///< number of context models for luma sig flag
87#define NUM_SIG_FLAG_CTX_CHROMA       21      ///< number of context models for chroma sig flag
88#define NUM_CTX_LAST_FLAG_XY          15      ///< number of context models for last coefficient position
[2]89
[56]90#define NUM_ONE_FLAG_CTX              24      ///< number of context models for greater than 1 flag
91#define NUM_ONE_FLAG_CTX_LUMA         16      ///< number of context models for greater than 1 flag of luma
92#define NUM_ONE_FLAG_CTX_CHROMA        8      ///< number of context models for greater than 1 flag of chroma
93#define NUM_ABS_FLAG_CTX               6      ///< number of context models for greater than 2 flag
94#define NUM_ABS_FLAG_CTX_LUMA          4      ///< number of context models for greater than 2 flag of luma
95#define NUM_ABS_FLAG_CTX_CHROMA        2      ///< number of context models for greater than 2 flag of chroma
96
[2]97#define NUM_MVP_IDX_CTX               2       ///< number of context models for MVP index
98
99#define NUM_ALF_FLAG_CTX              1       ///< number of context models for ALF flag
100#define NUM_ALF_UVLC_CTX              2       ///< number of context models for ALF UVLC (filter length)
101#define NUM_ALF_SVLC_CTX              3       ///< number of context models for ALF SVLC (filter coeff.)
102
[56]103#define NUM_SAO_FLAG_CTX              1       ///< number of context models for SAO flag
104#define NUM_SAO_UVLC_CTX              2       ///< number of context models for SAO UVLC
105#define NUM_SAO_SVLC_CTX              3       ///< number of context models for SAO SVLC
106#define NUM_SAO_RUN_CTX               3       ///< number of context models for AO SVLC (filter coeff.)
107#define NUM_SAO_MERGE_LEFT_FLAG_CTX   3       ///< number of context models for AO SVLC (filter coeff.)
108#define NUM_SAO_MERGE_UP_FLAG_CTX     1       ///< number of context models for AO SVLC (filter coeff.)
109#define NUM_SAO_TYPE_IDX_CTX          2       ///< number of context models for AO SVLC (filter coeff.)
110#define CNU                          154      ///< dummy initialization value for unused context models 'Context model Not Used'
[2]111
[5]112#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
[56]113#define NUM_DMM_FLAG_CTX              1       ///< number of context models for DMM flag
114#define NUM_DMM_MODE_CTX              1       ///< number of context models for DMM mode
[296]115#if LGE_DMM3_SIMP_C0044
116#define NUM_DMM_DATA_CTX              4       ///< number of context models for DMM data
117#else
[56]118#define NUM_DMM_DATA_CTX              3       ///< number of context models for DMM data
[2]119#endif
[296]120#endif
[2]121
[189]122#if LGE_EDGE_INTRA_A0070
[100]123#define NUM_EDGE_INTRA_CTX            1
124#if LGE_EDGE_INTRA_DELTA_DC
125#define NUM_EDGE_INTRA_DELTA_DC_CTX   2 // one for Delta_DC flag, another for Delta_DC value
126#endif
127#endif
128
[189]129#if RWTH_SDC_DLT_B0036
[382]130#if PKU_QC_DEPTH_INTRA_UNI_D0195
131#define DEPTH_MODE_NUM_FLAG_CTX          8
132#define DMM_DELTA_NUM_FLAG_CTX           1
133#else
[189]134#define SDC_NUM_FLAG_CTX                 3
[382]135#endif
[189]136#define SDC_NUM_RESIDUAL_FLAG_CTX        1
[397]137#if !RWTH_SDC_CTX_SIMPL_D0032
[189]138#define SDC_NUM_SIGN_FLAG_CTX            1
[397]139#endif
[406]140#if LGE_CONCATENATE
141#define SDC_NUM_RESIDUAL_CTX             1
142#else
[397]143#if RWTH_SDC_CTX_SIMPL_D0032
144#define SDC_NUM_RESIDUAL_CTX             8
145#else
[189]146#define SDC_NUM_RESIDUAL_CTX             10
[397]147#endif
[406]148#endif
[189]149
150#define SDC_NUM_PRED_MODE_CTX            5
151#endif
152
[2]153// ====================================================================================================================
154// Tables
155// ====================================================================================================================
156
[56]157// initial probability for split flag
158static const UChar
159INIT_SPLIT_FLAG[3][NUM_SPLIT_FLAG_CTX] = 
[2]160{
[56]161  { 139,  141,  157, }, 
162  { 107,  139,  126, }, 
163  { 107,  139,  126, }, 
[2]164};
165
[56]166static const UChar
167INIT_SKIP_FLAG[3][NUM_SKIP_FLAG_CTX] = 
[2]168{
[56]169  { CNU,  CNU,  CNU, }, 
170  { 197,  185,  201, }, 
171  { 197,  185,  201, }, 
[2]172};
173
[189]174#if LGE_ILLUCOMP_B0045
[56]175static const UChar
[189]176INIT_IC_FLAG[3][NUM_IC_FLAG_CTX] = 
177{
178  { CNU,  CNU,  CNU, }, 
179  { 197,  185,  201, }, 
180  { 197,  185,  201, }, 
181};
182#endif
183
184static const UChar
[56]185INIT_ALF_CTRL_FLAG[3][NUM_ALF_CTRL_FLAG_CTX] = 
[2]186{
[56]187  { 200, }, 
188  { 139, }, 
189  { 169, }, 
[2]190};
191
[56]192static const UChar
193INIT_MERGE_FLAG_EXT[3][NUM_MERGE_FLAG_EXT_CTX] = 
194{
195  { CNU, }, 
196  { 110, }, 
197  { 154, }, 
198};
[2]199
[56]200static const UChar
201INIT_MERGE_IDX_EXT[3][NUM_MERGE_IDX_EXT_CTX] = 
[2]202{
[56]203  { CNU, }, 
204  { 122, }, 
205  { 137, }, 
206};
207
[296]208#if H3D_IVRP
[56]209static const UChar
210INIT_RES_PRED_FLAG[3][NUM_RES_PRED_FLAG_CTX] =
211{
212    { CNU, CNU, CNU, CNU },
213    { 154, 154, 154, 154 },
214    { 154, 154, 154, 154 },
215};
216#endif
217
218static const UChar
219INIT_PART_SIZE[3][NUM_PART_SIZE_CTX] = 
220{
221  { 184,  CNU,  CNU,  CNU, }, 
222  { 154,  139,  CNU,  CNU, }, 
223  { 154,  139,  CNU,  CNU, }, 
224};
225
226static const UChar
227INIT_CU_AMP_POS[3][NUM_CU_AMP_CTX] = 
228{
229  { CNU, }, 
230  { 154, }, 
231  { 154, }, 
232};
233
234static const UChar
235INIT_PRED_MODE[3][NUM_PRED_MODE_CTX] = 
236{
237  { CNU, }, 
238  { 149, }, 
239  { 134, }, 
240};
241
242static const UChar
243INIT_INTRA_PRED_MODE[3][NUM_ADI_CTX] = 
244{
245  { 184, }, 
246  { 154, }, 
247  { 183, }, 
248};
249
250static const UChar
251INIT_CHROMA_PRED_MODE[3][NUM_CHROMA_PRED_CTX] = 
252{
253  {  63,  139, }, 
254  { 152,  139, }, 
255  { 152,  139, }, 
256};
257
258static const UChar
259INIT_INTER_DIR[3][NUM_INTER_DIR_CTX] = 
260{
261  { CNU,  CNU,  CNU,  CNU, }, 
262#if CABAC_INIT_FLAG
263  {  95,   79,   63,   31, }, 
264#else
265  { CNU,  CNU,  CNU,  CNU, }, 
266#endif
267  {  95,   79,   63,   31, }, 
268};
269
270static const UChar
271INIT_MVD[3][NUM_MV_RES_CTX] = 
272{
273  { CNU,  CNU, }, 
274  { 140,  198, }, 
275  { 169,  198, }, 
276};
277
278static const UChar
279INIT_REF_PIC[3][NUM_REF_NO_CTX] = 
280{
281  { CNU,  CNU,  CNU,  CNU, }, 
282  { 153,  153,  139,  CNU, }, 
283  { 153,  153,  168,  CNU, }, 
284};
285
286static const UChar
287INIT_DQP[3][NUM_DELTA_QP_CTX] = 
288{
289  { 154,  154,  154, }, 
290  { 154,  154,  154, }, 
291  { 154,  154,  154, }, 
292};
293
294static const UChar
295INIT_QT_CBF[3][2*NUM_QT_CBF_CTX] = 
296{
297  { 111,  141,  CNU,  CNU,  CNU,   94,  138,  182,  CNU,  CNU, }, 
298  { 153,  111,  CNU,  CNU,  CNU,  149,  107,  167,  CNU,  CNU, }, 
299  { 153,  111,  CNU,  CNU,  CNU,  149,   92,  167,  CNU,  CNU, }, 
300};
301
302static const UChar
303INIT_QT_ROOT_CBF[3][NUM_QT_ROOT_CBF_CTX] = 
304{
305  { CNU, }, 
306  {  79, }, 
307  {  79, }, 
308};
309
310static const UChar
311INIT_LAST[3][2*NUM_CTX_LAST_FLAG_XY] = 
312{
313  { 110,  110,  124,  110,  140,  111,  125,  111,  127,  111,  111,  156,  127,  127,  111, 
314    108,  123,   63,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU, 
315  }, 
316  { 125,  110,   94,  110,  125,  110,  125,  111,  111,  110,  139,  111,  111,  111,  125, 
317    108,  123,  108,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,
318  }, 
319  { 125,  110,  124,  110,  125,  110,  125,  111,  111,  110,  139,  111,  111,  111,  125, 
320    108,  123,   93,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU, 
321  }, 
322};
323
324static const UChar
325INIT_SIG_CG_FLAG[3][2 * NUM_SIG_CG_FLAG_CTX] = 
326{
327  {  91,  171, 
328    134,  141, 
329  }, 
330  { 121,  140, 
331    61,  154, 
332  }, 
333  { 121,  140, 
334    61,  154, 
335  }, 
336};
337
338static const UChar
339INIT_SIG_FLAG[3][NUM_SIG_FLAG_CTX] = 
340{
341  { 141,  111,  125,  110,  110,   94,  124,  108,  124,  125,  139,  124,   63,  139,  168,  138,  107,  123,   92,  111,  141,  107,  125,  141,  179,  153,  125,  140,  139,  182,  123,   47,  153,  182,  137,  149,  192,  152,  224,  136,   31,  136,   74,  140,  141,  136,  139,  111, }, 
342  { 170,  154,  139,  153,  139,  123,  123,   63,  153,  168,  153,  152,   92,  152,  152,  137,  122,   92,   61,  155,  185,  166,  183,  140,  136,  153,  154,  155,  153,  123,   63,   61,  167,  153,  167,  136,  149,  107,  136,  121,  122,   91,  149,  170,  185,  151,  183,  140, }, 
343  { 170,  154,  139,  153,  139,  123,  123,   63,  124,  139,  153,  152,   92,  152,  152,  137,  137,   92,   61,  170,  185,  166,  183,  140,  136,  153,  154,  155,  153,  138,  107,   61,  167,  153,  167,  136,  121,  122,  136,  121,  122,   91,  149,  170,  170,  151,  183,  140, }, 
344};
345
346static const UChar
347INIT_ONE_FLAG[3][NUM_ONE_FLAG_CTX] = 
348{
349  { 140,   92,  137,  138,  140,  152,  138,  139,  153,   74,  149,   92,  139,  107,  122,  152,  140,  179,  166,  182,  140,  227,  122,  197, }, 
350  { 154,  196,  196,  167,  154,  152,  167,  182,  182,  134,  149,  136,  153,  121,  136,  137,  169,  194,  166,  167,  154,  167,  137,  182, }, 
351  { 154,  196,  167,  167,  154,  152,  167,  182,  182,  134,  149,  136,  153,  121,  136,  122,  169,  208,  166,  167,  154,  152,  167,  182, }, 
352};
353
354static const UChar
355INIT_ABS_FLAG[3][NUM_ABS_FLAG_CTX] = 
356{
357  { 138,  153,  136,  167,  152,  152, }, 
358  { 107,  167,   91,  122,  107,  167, }, 
359  { 107,  167,   91,  107,  107,  167, }, 
360};
361
362static const UChar
363INIT_MVP_IDX[3][NUM_MVP_IDX_CTX] = 
364{
365  { CNU,  CNU, }, 
366  { 168,  CNU, }, 
367  { 168,  CNU, }, 
368};
369
370static const UChar
371INIT_ALF_FLAG[3][NUM_ALF_FLAG_CTX] = 
372{
373  { 153, }, 
374  { 153, }, 
375  { 153, }, 
376};
377
378static const UChar
379INIT_ALF_UVLC[3][NUM_ALF_UVLC_CTX] = 
380{
381  { 140,  154, }, 
382  { 154,  154, }, 
383  { 154,  154, }, 
384};
385
386static const UChar
387INIT_ALF_SVLC[3][NUM_ALF_SVLC_CTX] = 
388{
389  { 187,  154,  159, }, 
390  { 141,  154,  189, }, 
391  { 141,  154,  159, }, 
392};
393
394static const UChar
395INIT_SAO_FLAG[3][NUM_SAO_FLAG_CTX] = 
396{
397  { 154, }, 
398  { 153, }, 
399  { 153, }, 
400};
401
402static const UChar
403INIT_SAO_UVLC[3][NUM_SAO_UVLC_CTX] = 
404{
405  { 143,  140, }, 
406  { 185,  140, }, 
407  { 200,  140, }, 
408};
409
410static const UChar
411INIT_SAO_SVLC[3][NUM_SAO_SVLC_CTX] = 
412{
413  { 247,  154,  244, }, 
414  { 215,  154,  169, }, 
415  { 215,  154,  169, }, 
416};
417
418static const UChar
419INIT_SAO_MERGE_LEFT_FLAG[3][NUM_SAO_MERGE_LEFT_FLAG_CTX] = 
420{
421  { 153,  153,  153, }, 
422  { 153,  153,  153, }, 
423  { 153,  153,  153, }, 
424};
425
426static const UChar
427INIT_SAO_MERGE_UP_FLAG[3][NUM_SAO_MERGE_UP_FLAG_CTX] = 
428{
429  { 175, }, 
430  { 153, }, 
431  { 153, }, 
432};
433
434static const UChar
435INIT_SAO_TYPE_IDX[3][NUM_SAO_TYPE_IDX_CTX] = 
436{
437  { 160,  140, }, 
438  { 185,  140, }, 
439  { 200,  140, }, 
440};
441
442static const UChar
443INIT_TRANS_SUBDIV_FLAG[3][NUM_TRANS_SUBDIV_FLAG_CTX] = 
444{
445{ CNU,  224,  167,  122,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU, }, 
446{ CNU,  124,  138,   94,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU, }, 
447{ CNU,  153,  138,  138,  CNU,  CNU,  CNU,  CNU,  CNU,  CNU, }, 
448};
[2]449
[296]450#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
[56]451static const UChar
[296]452INIT_DMM_FLAG[3][NUM_DMM_FLAG_CTX] =
[2]453{
454  {
[296]455    CNU
[2]456  },
457  {
[296]458    CNU
[2]459  },
460  {
[296]461    CNU
462  }
[2]463};
464
[56]465static const UChar
[296]466INIT_DMM_MODE[3][NUM_DMM_MODE_CTX] =
[56]467{
468  {
469    CNU
[2]470  },
471  {
[56]472    CNU
[2]473  },
474  {
[56]475    CNU
[2]476  }
477};
478
[296]479static const UChar
480INIT_DMM_DATA[3][NUM_DMM_DATA_CTX] = 
[2]481{
[296]482#if LGE_DMM3_SIMP_C0044
[56]483  {
[296]484    CNU, CNU, CNU, CNU
[56]485  },
486  {
[296]487    CNU, CNU, CNU, CNU
[56]488  },
489  {
[296]490    CNU, CNU, CNU, CNU
[56]491  }
[296]492#else
[2]493  {
[56]494    CNU, CNU, CNU
[2]495  },
496  {
[56]497    CNU, CNU, CNU
[2]498  },
499  {
[56]500    CNU, CNU, CNU
[2]501  }
[296]502#endif
[2]503};
[100]504
[189]505#if LGE_EDGE_INTRA_A0070
[100]506static const Short
507INIT_EDGE_INTRA[3][NUM_EDGE_INTRA_CTX] =
508{
509  {
510    CNU
511  },
512  {
513    CNU
514  },
515  {
516    CNU
517  }
518};
519
520#if LGE_EDGE_INTRA_DELTA_DC
521static const Short
522INIT_EDGE_INTRA_DELTA_DC[3][NUM_EDGE_INTRA_DELTA_DC_CTX] =
523{
524  {
525    CNU, CNU
526  },
527  {
528    CNU, CNU
529  },
530  {
531    CNU, CNU
532  }
533};
[2]534#endif
[100]535#endif
[56]536
[100]537#endif
538
[189]539#if RWTH_SDC_DLT_B0036
[382]540#if PKU_QC_DEPTH_INTRA_UNI_D0195
541static const UChar INIT_DEPTHMODE_FLAG[3][DEPTH_MODE_NUM_FLAG_CTX]=
542{
543  {0,  0,  64,   0, CNU,   0, CNU, 0},
544  {0, 64,   0, CNU,   0, CNU,   0, 0},
545  {64, 0, CNU,   0, CNU,   0,   0, 0}
546};
547static const UChar INIT_DMMDELTA_FLAG[3][DMM_DELTA_NUM_FLAG_CTX]=
548{
549  {0},
550  {0},
551  {64}
552};
553#else
[189]554static const Short INIT_SDC_FLAG[3][SDC_NUM_FLAG_CTX][2] =
555{
556  {
557    {    0,   64 }, {    0,   64 }, {    0,   64 }
558  },
559  {
560    {    0,   64 }, {    0,   64 }, {    0,   64 }
561  },
562  {
563    {    0,   64 }, {    0,   64 }, {    0,   64 }
564  }
565};
[382]566#endif
[189]567
[397]568#if RWTH_SDC_CTX_SIMPL_D0032
569static const UChar INIT_SDC_RESIDUAL_FLAG[3][SDC_NUM_RESIDUAL_FLAG_CTX] =
570{
571  {
572    CNU
573   
574  },
575  {
576    CNU
577  },
578  {
579    CNU
580  }
581};
[406]582   
583#if LGE_CONCATENATE
[397]584static const UChar INIT_SDC_RESIDUAL[3][SDC_NUM_RESIDUAL_CTX] =
585{
[406]586    {
587         155
588    },
589    {
590         155
591    },
592    {
593        155
594    }
595};
596#else
597static const UChar INIT_SDC_RESIDUAL[3][SDC_NUM_RESIDUAL_CTX] =
598{
[397]599  {
600    CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU
601  },
602  {
603    CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU
604  },
605  {
606    CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU
607  }
608};
[406]609#endif
[397]610
611static const UChar INIT_SDC_PRED_MODE[3][3*SDC_NUM_PRED_MODE_CTX] =
612{
613  {
614    CNU,    CNU
615    ,CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU
616  },
617  {
618    CNU,    CNU
619    ,CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU
620  },
621  {
622    CNU,    CNU
623    ,CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU
624  }
625};
626#else
[189]627static const Short INIT_SDC_RESIDUAL_FLAG[3][3*SDC_NUM_RESIDUAL_FLAG_CTX][2] =
628{
629  {
630    { -5, 35 },
631    { -0, 56 },
632    { -0, 56 }
633   
634  },
635  {
636    { -5, 35 },
637    { -0, 56 },
638    { -0, 56 }
639  },
640  {
641    { -5, 35 },
642    { -0, 56 },
643    { -0, 56 }
644  }
645};
646
647static const Short INIT_SDC_SIGN_FLAG[3][3*SDC_NUM_SIGN_FLAG_CTX][2] =
648{
649  {
650    { -1, 56 },
651    { -4, 55 },
652    { -4, 55 }
653  },
654  {
655    { -1, 56 },
656    { -4, 55 },
657    { -4, 55 }
658  },
659  {
660    { -1, 56 },
661    { -4, 55 },
662    { -4, 55 }
663  }
664};
665
666static const Short INIT_SDC_RESIDUAL[3][3*SDC_NUM_RESIDUAL_CTX][2] =
667{
668  {
669    { -1, 64 }, {  2, 64 }, {  6, 67 }, {  8, 61 }, {  7, 47 }, { 10, 33 }, { 12, 14 }, { 33, -13 }, { 12, 14 }, { 33, -13 },
670    {  2, 66 }, { -0, 63 }, {  1, 64 }, {  6, 65 }, {  7, 59 }, { 12, 50 }, { 14, 27 }, { -0, -17 }, { 14, 27 }, { -0, -17 },
671    {  2, 66 }, { -0, 63 }, {  1, 64 }, {  6, 65 }, {  7, 59 }, { 12, 50 }, { 14, 27 }, { -0, -17 }, { 14, 27 }, { -0, -17 }
672  },
673  {
674    { -1, 64 }, {  2, 64 }, {  6, 67 }, {  8, 61 }, {  7, 47 }, { 10, 33 }, { 12, 14 }, { 33, -13 }, { 12, 14 }, { 33, -13 },
675    {  2, 66 }, { -0, 63 }, {  1, 64 }, {  6, 65 }, {  7, 59 }, { 12, 50 }, { 14, 27 }, { -0, -17 }, { 14, 27 }, { -0, -17 },
676    {  2, 66 }, { -0, 63 }, {  1, 64 }, {  6, 65 }, {  7, 59 }, { 12, 50 }, { 14, 27 }, { -0, -17 }, { 14, 27 }, { -0, -17 }
677  },
678  {
679    { -1, 64 }, {  2, 64 }, {  6, 67 }, {  8, 61 }, {  7, 47 }, { 10, 33 }, { 12, 14 }, { 33, -13 }, { 12, 14 }, { 33, -13 },
680    {  2, 66 }, { -0, 63 }, {  1, 64 }, {  6, 65 }, {  7, 59 }, { 12, 50 }, { 14, 27 }, { -0, -17 }, { 14, 27 }, { -0, -17 },
681    {  2, 66 }, { -0, 63 }, {  1, 64 }, {  6, 65 }, {  7, 59 }, { 12, 50 }, { 14, 27 }, { -0, -17 }, { 14, 27 }, { -0, -17 }
682  }
683};
684
685static const Short INIT_SDC_PRED_MODE[3][3*SDC_NUM_PRED_MODE_CTX][2] =
686{
687  {
688    {  9, 85 }, { -4, 60 }, {  4, 70 }, {  4, 70 }, {  4, 70 },
689    {  9, 85 }, { -4, 60 }, {  4, 70 }, {  4, 70 }, {  4, 70 },
690    {  9, 85 }, { -4, 60 }, {  4, 70 }, {  4, 70 }, {  4, 70 }
691  },
692  {
693    {  9, 85 }, { -4, 60 }, {  4, 70 }, {  4, 70 }, {  4, 70 },
694    {  9, 85 }, { -4, 60 }, {  4, 70 }, {  4, 70 }, {  4, 70 },
695    {  9, 85 }, { -4, 60 }, {  4, 70 }, {  4, 70 }, {  4, 70 }
696  },
697  {
698    {  9, 85 }, { -4, 60 }, {  4, 70 }, {  4, 70 }, {  4, 70 },
699    {  9, 85 }, { -4, 60 }, {  4, 70 }, {  4, 70 }, {  4, 70 },
700    {  9, 85 }, { -4, 60 }, {  4, 70 }, {  4, 70 }, {  4, 70 }
701  }
702};
703#endif
[397]704#endif
[189]705
[56]706//! \}
707
[2]708#endif
709
Note: See TracBrowser for help on using the repository browser.