[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 | * |
---|
[1179] | 6 | * Copyright (c) 2010-2015, 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 |
---|
[1179] | 53 | #if SEC_DEPTH_INTRA_SKIP_MODE_K0033 |
---|
| 54 | #define NUM_DIS_FLAG_CTX 1 |
---|
| 55 | #define NUM_DIS_TYPE_CTX 1 |
---|
| 56 | #else |
---|
[1084] | 57 | #if H_3D_SINGLE_DEPTH |
---|
[1039] | 58 | #define NUM_SINGLEDEPTH_FLAG_CTX 1 |
---|
| 59 | #define NUM_SINGLE_DEPTH_VALUE_DATA_CTX 1 |
---|
| 60 | #endif |
---|
[1179] | 61 | #endif |
---|
[56] | 62 | #define NUM_MERGE_FLAG_EXT_CTX 1 ///< number of context models for merge flag of merge extended |
---|
| 63 | #define NUM_MERGE_IDX_EXT_CTX 1 ///< number of context models for merge index of merge extended |
---|
[2] | 64 | |
---|
[56] | 65 | #define NUM_PART_SIZE_CTX 4 ///< number of context models for partition size |
---|
| 66 | #define NUM_PRED_MODE_CTX 1 ///< number of context models for prediction mode |
---|
[2] | 67 | |
---|
[56] | 68 | #define NUM_ADI_CTX 1 ///< number of context models for intra prediction |
---|
| 69 | |
---|
| 70 | #define NUM_CHROMA_PRED_CTX 2 ///< number of context models for intra prediction (chroma) |
---|
[608] | 71 | #define NUM_INTER_DIR_CTX 5 ///< number of context models for inter prediction direction |
---|
[56] | 72 | #define NUM_MV_RES_CTX 2 ///< number of context models for motion vector difference |
---|
[2] | 73 | |
---|
[608] | 74 | #define NUM_REF_NO_CTX 2 ///< number of context models for reference index |
---|
| 75 | #define NUM_TRANS_SUBDIV_FLAG_CTX 3 ///< number of context models for transform subdivision flags |
---|
[872] | 76 | #define NUM_QT_CBF_CTX 4 ///< number of context models for QT CBF |
---|
[56] | 77 | #define NUM_QT_ROOT_CBF_CTX 1 ///< number of context models for QT ROOT CBF |
---|
| 78 | #define NUM_DELTA_QP_CTX 3 ///< number of context models for dQP |
---|
[2] | 79 | |
---|
[56] | 80 | #define NUM_SIG_CG_FLAG_CTX 2 ///< number of context models for MULTI_LEVEL_SIGNIFICANCE |
---|
| 81 | |
---|
[608] | 82 | #define NUM_SIG_FLAG_CTX 42 ///< number of context models for sig flag |
---|
| 83 | #define NUM_SIG_FLAG_CTX_LUMA 27 ///< number of context models for luma sig flag |
---|
| 84 | #define NUM_SIG_FLAG_CTX_CHROMA 15 ///< number of context models for chroma sig flag |
---|
[56] | 85 | |
---|
| 86 | #define NUM_CTX_LAST_FLAG_XY 15 ///< number of context models for last coefficient position |
---|
[2] | 87 | |
---|
[56] | 88 | #define NUM_ONE_FLAG_CTX 24 ///< number of context models for greater than 1 flag |
---|
| 89 | #define NUM_ONE_FLAG_CTX_LUMA 16 ///< number of context models for greater than 1 flag of luma |
---|
| 90 | #define NUM_ONE_FLAG_CTX_CHROMA 8 ///< number of context models for greater than 1 flag of chroma |
---|
| 91 | #define NUM_ABS_FLAG_CTX 6 ///< number of context models for greater than 2 flag |
---|
| 92 | #define NUM_ABS_FLAG_CTX_LUMA 4 ///< number of context models for greater than 2 flag of luma |
---|
| 93 | #define NUM_ABS_FLAG_CTX_CHROMA 2 ///< number of context models for greater than 2 flag of chroma |
---|
| 94 | |
---|
[872] | 95 | #define NUM_MVP_IDX_CTX 1 ///< number of context models for MVP index |
---|
[2] | 96 | |
---|
[443] | 97 | #define NUM_SAO_MERGE_FLAG_CTX 1 ///< number of context models for SAO merge flags |
---|
| 98 | #define NUM_SAO_TYPE_IDX_CTX 1 ///< number of context models for SAO type index |
---|
[608] | 99 | |
---|
| 100 | #define NUM_TRANSFORMSKIP_FLAG_CTX 1 ///< number of context models for transform skipping |
---|
| 101 | #define NUM_CU_TRANSQUANT_BYPASS_FLAG_CTX 1 |
---|
| 102 | |
---|
| 103 | #if H_3D_ARP |
---|
[833] | 104 | #define NUM_ARPW_CTX 3 ///< number of context models for weighting factor index used by advanced residual prediction |
---|
[443] | 105 | #endif |
---|
[608] | 106 | |
---|
| 107 | #if H_3D_IC |
---|
[833] | 108 | #define NUM_IC_FLAG_CTX 1 ///< number of context models for illumination compensation flag |
---|
[608] | 109 | #endif |
---|
| 110 | |
---|
[56] | 111 | #define CNU 154 ///< dummy initialization value for unused context models 'Context model Not Used' |
---|
[2] | 112 | |
---|
[608] | 113 | #if H_3D_DIM |
---|
[833] | 114 | #define NUM_DEPTH_INTRA_MODE_CTX 1 ///< number of context models for depth intra modes |
---|
[608] | 115 | #define NUM_DDC_FLAG_CTX 2 ///< number of context models for deltaDC flag (DMM or RBC) |
---|
[724] | 116 | #define NUM_DDC_DATA_CTX 1 ///< number of context models for deltaDC data (DMM or RBC) |
---|
[608] | 117 | #if H_3D_DIM_DMM |
---|
| 118 | #define NUM_DMM1_DATA_CTX 1 ///< number of context models for DMM1 data |
---|
[296] | 119 | #endif |
---|
[950] | 120 | #define NUM_ANGLE_FLAG_CTX 1 |
---|
[724] | 121 | #endif |
---|
[100] | 122 | |
---|
[608] | 123 | #if H_3D_DIM_SDC |
---|
[884] | 124 | #define SDC_NUM_RESIDUAL_FLAG_CTX 1 |
---|
| 125 | #define SDC_NUM_RESIDUAL_CTX 1 |
---|
[833] | 126 | #define NUM_SDC_FLAG_CTX 1 ///< number of context |
---|
| 127 | #endif |
---|
| 128 | #if H_3D_DBBP |
---|
| 129 | #define DBBP_NUM_FLAG_CTX 1 |
---|
| 130 | #endif |
---|
[2] | 131 | // ==================================================================================================================== |
---|
| 132 | // Tables |
---|
| 133 | // ==================================================================================================================== |
---|
| 134 | |
---|
[608] | 135 | // initial probability for cu_transquant_bypass flag |
---|
| 136 | static const UChar |
---|
| 137 | INIT_CU_TRANSQUANT_BYPASS_FLAG[3][NUM_CU_TRANSQUANT_BYPASS_FLAG_CTX] = |
---|
| 138 | { |
---|
| 139 | { 154 }, |
---|
| 140 | { 154 }, |
---|
| 141 | { 154 }, |
---|
| 142 | }; |
---|
| 143 | |
---|
[56] | 144 | // initial probability for split flag |
---|
| 145 | static const UChar |
---|
| 146 | INIT_SPLIT_FLAG[3][NUM_SPLIT_FLAG_CTX] = |
---|
[2] | 147 | { |
---|
[608] | 148 | { 107, 139, 126, }, |
---|
| 149 | { 107, 139, 126, }, |
---|
[56] | 150 | { 139, 141, 157, }, |
---|
[2] | 151 | }; |
---|
| 152 | |
---|
[56] | 153 | static const UChar |
---|
| 154 | INIT_SKIP_FLAG[3][NUM_SKIP_FLAG_CTX] = |
---|
[2] | 155 | { |
---|
[56] | 156 | { 197, 185, 201, }, |
---|
| 157 | { 197, 185, 201, }, |
---|
[189] | 158 | { CNU, CNU, CNU, }, |
---|
| 159 | }; |
---|
[1179] | 160 | #if SEC_DEPTH_INTRA_SKIP_MODE_K0033 |
---|
| 161 | static const UChar |
---|
| 162 | INIT_DIS_FLAG[3][NUM_DIS_FLAG_CTX] = |
---|
| 163 | { |
---|
| 164 | { 185 }, |
---|
| 165 | { 185 }, |
---|
| 166 | { 185 }, |
---|
| 167 | }; |
---|
| 168 | static const UChar |
---|
| 169 | INIT_DIS_TYPE[3][NUM_DIS_TYPE_CTX] = |
---|
| 170 | { |
---|
| 171 | { 137 }, |
---|
| 172 | { 137 }, |
---|
| 173 | { 137 }, |
---|
| 174 | }; |
---|
| 175 | #else |
---|
[1084] | 176 | #if H_3D_SINGLE_DEPTH |
---|
[1039] | 177 | static const UChar |
---|
| 178 | INIT_SINGLEDEPTH_FLAG[3][NUM_SINGLEDEPTH_FLAG_CTX] = |
---|
| 179 | { |
---|
| 180 | { 185 }, |
---|
| 181 | { 185 }, |
---|
| 182 | { 185 }, |
---|
| 183 | }; |
---|
[608] | 184 | static const UChar |
---|
[1039] | 185 | INIT_SINGLE_DEPTH_VALUE_DATA[3][NUM_SINGLE_DEPTH_VALUE_DATA_CTX] = |
---|
| 186 | { |
---|
| 187 | { 137 }, |
---|
| 188 | { 137 }, |
---|
| 189 | { 137 }, |
---|
| 190 | }; |
---|
| 191 | #endif |
---|
[1179] | 192 | #endif |
---|
[1039] | 193 | static const UChar |
---|
[56] | 194 | INIT_MERGE_FLAG_EXT[3][NUM_MERGE_FLAG_EXT_CTX] = |
---|
| 195 | { |
---|
[608] | 196 | { 154, }, |
---|
| 197 | { 110, }, |
---|
[56] | 198 | { CNU, }, |
---|
| 199 | }; |
---|
[2] | 200 | |
---|
[56] | 201 | static const UChar |
---|
| 202 | INIT_MERGE_IDX_EXT[3][NUM_MERGE_IDX_EXT_CTX] = |
---|
[2] | 203 | { |
---|
[608] | 204 | { 137, }, |
---|
| 205 | { 122, }, |
---|
[56] | 206 | { CNU, }, |
---|
| 207 | }; |
---|
| 208 | |
---|
| 209 | static const UChar |
---|
| 210 | INIT_PART_SIZE[3][NUM_PART_SIZE_CTX] = |
---|
| 211 | { |
---|
[872] | 212 | { 154, 139, 154, 154 }, |
---|
| 213 | { 154, 139, 154, 154 }, |
---|
| 214 | { 184, CNU, CNU, CNU }, |
---|
[56] | 215 | }; |
---|
| 216 | |
---|
| 217 | static const UChar |
---|
| 218 | INIT_PRED_MODE[3][NUM_PRED_MODE_CTX] = |
---|
| 219 | { |
---|
[608] | 220 | { 134, }, |
---|
| 221 | { 149, }, |
---|
[56] | 222 | { CNU, }, |
---|
| 223 | }; |
---|
| 224 | |
---|
| 225 | static const UChar |
---|
| 226 | INIT_INTRA_PRED_MODE[3][NUM_ADI_CTX] = |
---|
| 227 | { |
---|
[608] | 228 | { 183, }, |
---|
| 229 | { 154, }, |
---|
[56] | 230 | { 184, }, |
---|
| 231 | }; |
---|
| 232 | |
---|
| 233 | static const UChar |
---|
| 234 | INIT_CHROMA_PRED_MODE[3][NUM_CHROMA_PRED_CTX] = |
---|
| 235 | { |
---|
| 236 | { 152, 139, }, |
---|
| 237 | { 152, 139, }, |
---|
[608] | 238 | { 63, 139, }, |
---|
[56] | 239 | }; |
---|
| 240 | |
---|
| 241 | static const UChar |
---|
| 242 | INIT_INTER_DIR[3][NUM_INTER_DIR_CTX] = |
---|
| 243 | { |
---|
[608] | 244 | { 95, 79, 63, 31, 31, }, |
---|
| 245 | { 95, 79, 63, 31, 31, }, |
---|
| 246 | { CNU, CNU, CNU, CNU, CNU, }, |
---|
[56] | 247 | }; |
---|
| 248 | |
---|
| 249 | static const UChar |
---|
| 250 | INIT_MVD[3][NUM_MV_RES_CTX] = |
---|
| 251 | { |
---|
[608] | 252 | { 169, 198, }, |
---|
| 253 | { 140, 198, }, |
---|
[56] | 254 | { CNU, CNU, }, |
---|
| 255 | }; |
---|
| 256 | |
---|
| 257 | static const UChar |
---|
| 258 | INIT_REF_PIC[3][NUM_REF_NO_CTX] = |
---|
| 259 | { |
---|
[608] | 260 | { 153, 153 }, |
---|
| 261 | { 153, 153 }, |
---|
| 262 | { CNU, CNU }, |
---|
[56] | 263 | }; |
---|
| 264 | |
---|
| 265 | static const UChar |
---|
| 266 | INIT_DQP[3][NUM_DELTA_QP_CTX] = |
---|
| 267 | { |
---|
| 268 | { 154, 154, 154, }, |
---|
| 269 | { 154, 154, 154, }, |
---|
| 270 | { 154, 154, 154, }, |
---|
| 271 | }; |
---|
| 272 | |
---|
| 273 | static const UChar |
---|
| 274 | INIT_QT_CBF[3][2*NUM_QT_CBF_CTX] = |
---|
| 275 | { |
---|
[872] | 276 | { 153, 111, CNU, CNU, 149, 92, 167, 154 }, |
---|
| 277 | { 153, 111, CNU, CNU, 149, 107, 167, 154 }, |
---|
| 278 | { 111, 141, CNU, CNU, 94, 138, 182, 154 }, |
---|
[56] | 279 | }; |
---|
| 280 | |
---|
| 281 | static const UChar |
---|
| 282 | INIT_QT_ROOT_CBF[3][NUM_QT_ROOT_CBF_CTX] = |
---|
| 283 | { |
---|
| 284 | { 79, }, |
---|
| 285 | { 79, }, |
---|
[608] | 286 | { CNU, }, |
---|
[56] | 287 | }; |
---|
| 288 | |
---|
| 289 | static const UChar |
---|
| 290 | INIT_LAST[3][2*NUM_CTX_LAST_FLAG_XY] = |
---|
| 291 | { |
---|
[608] | 292 | { 125, 110, 124, 110, 95, 94, 125, 111, 111, 79, 125, 126, 111, 111, 79, |
---|
| 293 | 108, 123, 93, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, |
---|
[56] | 294 | }, |
---|
[608] | 295 | { 125, 110, 94, 110, 95, 79, 125, 111, 110, 78, 110, 111, 111, 95, 94, |
---|
[56] | 296 | 108, 123, 108, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, |
---|
| 297 | }, |
---|
[608] | 298 | { 110, 110, 124, 125, 140, 153, 125, 127, 140, 109, 111, 143, 127, 111, 79, |
---|
| 299 | 108, 123, 63, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, |
---|
[56] | 300 | }, |
---|
| 301 | }; |
---|
| 302 | |
---|
| 303 | static const UChar |
---|
| 304 | INIT_SIG_CG_FLAG[3][2 * NUM_SIG_CG_FLAG_CTX] = |
---|
| 305 | { |
---|
[608] | 306 | { 121, 140, |
---|
| 307 | 61, 154, |
---|
[56] | 308 | }, |
---|
| 309 | { 121, 140, |
---|
| 310 | 61, 154, |
---|
| 311 | }, |
---|
[608] | 312 | { 91, 171, |
---|
| 313 | 134, 141, |
---|
[56] | 314 | }, |
---|
| 315 | }; |
---|
| 316 | |
---|
| 317 | static const UChar |
---|
| 318 | INIT_SIG_FLAG[3][NUM_SIG_FLAG_CTX] = |
---|
| 319 | { |
---|
[608] | 320 | { 170, 154, 139, 153, 139, 123, 123, 63, 124, 166, 183, 140, 136, 153, 154, 166, 183, 140, 136, 153, 154, 166, 183, 140, 136, 153, 154, 170, 153, 138, 138, 122, 121, 122, 121, 167, 151, 183, 140, 151, 183, 140, }, |
---|
| 321 | { 155, 154, 139, 153, 139, 123, 123, 63, 153, 166, 183, 140, 136, 153, 154, 166, 183, 140, 136, 153, 154, 166, 183, 140, 136, 153, 154, 170, 153, 123, 123, 107, 121, 107, 121, 167, 151, 183, 140, 151, 183, 140, }, |
---|
| 322 | { 111, 111, 125, 110, 110, 94, 124, 108, 124, 107, 125, 141, 179, 153, 125, 107, 125, 141, 179, 153, 125, 107, 125, 141, 179, 153, 125, 140, 139, 182, 182, 152, 136, 152, 136, 153, 136, 139, 111, 136, 139, 111, }, |
---|
[56] | 323 | }; |
---|
| 324 | |
---|
| 325 | static const UChar |
---|
| 326 | INIT_ONE_FLAG[3][NUM_ONE_FLAG_CTX] = |
---|
| 327 | { |
---|
[608] | 328 | { 154, 196, 167, 167, 154, 152, 167, 182, 182, 134, 149, 136, 153, 121, 136, 122, 169, 208, 166, 167, 154, 152, 167, 182, }, |
---|
| 329 | { 154, 196, 196, 167, 154, 152, 167, 182, 182, 134, 149, 136, 153, 121, 136, 137, 169, 194, 166, 167, 154, 167, 137, 182, }, |
---|
[56] | 330 | { 140, 92, 137, 138, 140, 152, 138, 139, 153, 74, 149, 92, 139, 107, 122, 152, 140, 179, 166, 182, 140, 227, 122, 197, }, |
---|
| 331 | }; |
---|
| 332 | |
---|
| 333 | static const UChar |
---|
| 334 | INIT_ABS_FLAG[3][NUM_ABS_FLAG_CTX] = |
---|
| 335 | { |
---|
[608] | 336 | { 107, 167, 91, 107, 107, 167, }, |
---|
| 337 | { 107, 167, 91, 122, 107, 167, }, |
---|
[56] | 338 | { 138, 153, 136, 167, 152, 152, }, |
---|
| 339 | }; |
---|
| 340 | |
---|
| 341 | static const UChar |
---|
| 342 | INIT_MVP_IDX[3][NUM_MVP_IDX_CTX] = |
---|
| 343 | { |
---|
[872] | 344 | { 168 }, |
---|
| 345 | { 168 }, |
---|
| 346 | { CNU }, |
---|
[56] | 347 | }; |
---|
| 348 | |
---|
| 349 | static const UChar |
---|
[608] | 350 | INIT_SAO_MERGE_FLAG[3][NUM_SAO_MERGE_FLAG_CTX] = |
---|
[56] | 351 | { |
---|
[608] | 352 | { 153, }, |
---|
| 353 | { 153, }, |
---|
| 354 | { 153, }, |
---|
[56] | 355 | }; |
---|
| 356 | |
---|
| 357 | static const UChar |
---|
[608] | 358 | INIT_SAO_TYPE_IDX[3][NUM_SAO_TYPE_IDX_CTX] = |
---|
[56] | 359 | { |
---|
[608] | 360 | { 160, }, |
---|
| 361 | { 185, }, |
---|
| 362 | { 200, }, |
---|
[56] | 363 | }; |
---|
| 364 | |
---|
[443] | 365 | static const UChar |
---|
[608] | 366 | INIT_TRANS_SUBDIV_FLAG[3][NUM_TRANS_SUBDIV_FLAG_CTX] = |
---|
[443] | 367 | { |
---|
[608] | 368 | { 224, 167, 122, }, |
---|
| 369 | { 124, 138, 94, }, |
---|
| 370 | { 153, 138, 138, }, |
---|
[56] | 371 | }; |
---|
| 372 | |
---|
[608] | 373 | static const UChar |
---|
| 374 | INIT_TRANSFORMSKIP_FLAG[3][2*NUM_TRANSFORMSKIP_FLAG_CTX] = |
---|
[56] | 375 | { |
---|
[608] | 376 | { 139, 139}, |
---|
| 377 | { 139, 139}, |
---|
| 378 | { 139, 139}, |
---|
[56] | 379 | }; |
---|
| 380 | |
---|
[608] | 381 | #if H_3D_ARP |
---|
[56] | 382 | static const UChar |
---|
[608] | 383 | INIT_ARPW[3][NUM_ARPW_CTX] = |
---|
[56] | 384 | { |
---|
[833] | 385 | { 162, 153, 162 }, |
---|
| 386 | { 162, 153, 162 }, |
---|
| 387 | { 162, 153, 162 }, |
---|
| 388 | }; |
---|
[884] | 389 | |
---|
[608] | 390 | #endif |
---|
| 391 | #if H_3D_IC |
---|
[56] | 392 | static const UChar |
---|
[608] | 393 | INIT_IC_FLAG[3][NUM_IC_FLAG_CTX] = |
---|
[56] | 394 | { |
---|
[833] | 395 | { 154 }, |
---|
| 396 | { 154 }, |
---|
| 397 | { 154 }, |
---|
| 398 | }; |
---|
[884] | 399 | |
---|
[608] | 400 | #endif |
---|
| 401 | #if H_3D_DIM |
---|
| 402 | static const UChar |
---|
| 403 | INIT_DEPTH_INTRA_MODE[3][NUM_DEPTH_INTRA_MODE_CTX] = |
---|
[56] | 404 | { |
---|
[833] | 405 | { 154, }, |
---|
| 406 | { 154, }, |
---|
| 407 | { 154, } |
---|
| 408 | }; |
---|
[655] | 409 | |
---|
[56] | 410 | static const UChar |
---|
[833] | 411 | INIT_ANGLE_FLAG[3][NUM_ANGLE_FLAG_CTX] = |
---|
| 412 | { |
---|
[950] | 413 | { 154 }, |
---|
| 414 | { 141 }, |
---|
| 415 | { 155 }, |
---|
| 416 | }; |
---|
[833] | 417 | |
---|
| 418 | static const UChar |
---|
[608] | 419 | INIT_DDC_FLAG[3][NUM_DDC_FLAG_CTX] = |
---|
[56] | 420 | { |
---|
[608] | 421 | {0 , CNU}, |
---|
| 422 | {0 , CNU}, |
---|
| 423 | {64, CNU} |
---|
[56] | 424 | }; |
---|
| 425 | static const UChar |
---|
[608] | 426 | INIT_DDC_DATA[3][NUM_DDC_DATA_CTX] = |
---|
[2] | 427 | { |
---|
[724] | 428 | { 154 }, |
---|
| 429 | { 154 }, |
---|
| 430 | { 154 }, |
---|
[2] | 431 | }; |
---|
[608] | 432 | #if H_3D_DIM_DMM |
---|
[56] | 433 | static const UChar |
---|
[608] | 434 | INIT_DMM1_DATA[3][NUM_DMM1_DATA_CTX] = |
---|
[56] | 435 | { |
---|
[608] | 436 | { CNU }, |
---|
| 437 | { CNU }, |
---|
| 438 | { CNU }, |
---|
[2] | 439 | }; |
---|
| 440 | #endif |
---|
[608] | 441 | #if H_3D_DIM_SDC |
---|
| 442 | static const UChar |
---|
| 443 | INIT_SDC_RESIDUAL_FLAG[3][SDC_NUM_RESIDUAL_FLAG_CTX] = |
---|
[443] | 444 | { |
---|
[608] | 445 | { CNU }, |
---|
| 446 | { CNU }, |
---|
| 447 | { CNU }, |
---|
[443] | 448 | }; |
---|
[608] | 449 | static const UChar |
---|
| 450 | INIT_SDC_RESIDUAL[3][SDC_NUM_RESIDUAL_CTX] = |
---|
[443] | 451 | { |
---|
[608] | 452 | { 155 }, |
---|
| 453 | { 155 }, |
---|
| 454 | { 155 }, |
---|
[443] | 455 | }; |
---|
| 456 | #endif |
---|
[608] | 457 | #endif |
---|
[443] | 458 | |
---|
[189] | 459 | |
---|
[56] | 460 | //! \} |
---|
[884] | 461 | #if H_3D_DIM_SDC |
---|
[833] | 462 | static const UChar |
---|
| 463 | INIT_SDC_FLAG[3][NUM_SDC_FLAG_CTX] = |
---|
| 464 | { |
---|
| 465 | { 154 }, |
---|
| 466 | { 154 }, |
---|
| 467 | { 154 }, |
---|
| 468 | }; |
---|
| 469 | #endif |
---|
[56] | 470 | |
---|
[833] | 471 | #if H_3D_DBBP |
---|
| 472 | static const UChar INIT_DBBP_FLAG[3][DBBP_NUM_FLAG_CTX] = |
---|
| 473 | { |
---|
[1039] | 474 | { CNU }, |
---|
| 475 | { CNU }, |
---|
| 476 | { CNU }, |
---|
[950] | 477 | }; |
---|
[833] | 478 | #endif |
---|
[608] | 479 | |
---|
[2] | 480 | #endif |
---|