[313] | 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 | * |
---|
[595] | 6 | * Copyright (c) 2010-2014, ITU/ISO/IEC |
---|
[313] | 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 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 | |
---|
| 42 | //! \ingroup TLibCommon |
---|
| 43 | //! \{ |
---|
| 44 | |
---|
| 45 | // ==================================================================================================================== |
---|
| 46 | // Constants |
---|
| 47 | // ==================================================================================================================== |
---|
| 48 | |
---|
| 49 | #define MAX_NUM_CTX_MOD 512 ///< maximum number of supported contexts |
---|
| 50 | |
---|
| 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 | |
---|
| 54 | #define NUM_MERGE_FLAG_EXT_CTX 1 ///< number of context models for merge flag of merge extended |
---|
| 55 | #define NUM_MERGE_IDX_EXT_CTX 1 ///< number of context models for merge index of merge extended |
---|
| 56 | |
---|
| 57 | #define NUM_PART_SIZE_CTX 4 ///< number of context models for partition size |
---|
| 58 | #define NUM_PRED_MODE_CTX 1 ///< number of context models for prediction mode |
---|
| 59 | |
---|
| 60 | #define NUM_ADI_CTX 1 ///< number of context models for intra prediction |
---|
| 61 | |
---|
| 62 | #define NUM_CHROMA_PRED_CTX 2 ///< number of context models for intra prediction (chroma) |
---|
| 63 | #define NUM_INTER_DIR_CTX 5 ///< number of context models for inter prediction direction |
---|
| 64 | #define NUM_MV_RES_CTX 2 ///< number of context models for motion vector difference |
---|
| 65 | |
---|
| 66 | #define NUM_REF_NO_CTX 2 ///< number of context models for reference index |
---|
| 67 | #define NUM_TRANS_SUBDIV_FLAG_CTX 3 ///< number of context models for transform subdivision flags |
---|
[595] | 68 | #define NUM_QT_CBF_CTX 4 ///< number of context models for QT CBF |
---|
[313] | 69 | #define NUM_QT_ROOT_CBF_CTX 1 ///< number of context models for QT ROOT CBF |
---|
| 70 | #define NUM_DELTA_QP_CTX 3 ///< number of context models for dQP |
---|
| 71 | |
---|
| 72 | #define NUM_SIG_CG_FLAG_CTX 2 ///< number of context models for MULTI_LEVEL_SIGNIFICANCE |
---|
| 73 | |
---|
| 74 | #define NUM_SIG_FLAG_CTX 42 ///< number of context models for sig flag |
---|
| 75 | #define NUM_SIG_FLAG_CTX_LUMA 27 ///< number of context models for luma sig flag |
---|
| 76 | #define NUM_SIG_FLAG_CTX_CHROMA 15 ///< number of context models for chroma sig flag |
---|
| 77 | |
---|
| 78 | #define NUM_CTX_LAST_FLAG_XY 15 ///< number of context models for last coefficient position |
---|
| 79 | |
---|
| 80 | #define NUM_ONE_FLAG_CTX 24 ///< number of context models for greater than 1 flag |
---|
| 81 | #define NUM_ONE_FLAG_CTX_LUMA 16 ///< number of context models for greater than 1 flag of luma |
---|
| 82 | #define NUM_ONE_FLAG_CTX_CHROMA 8 ///< number of context models for greater than 1 flag of chroma |
---|
| 83 | #define NUM_ABS_FLAG_CTX 6 ///< number of context models for greater than 2 flag |
---|
| 84 | #define NUM_ABS_FLAG_CTX_LUMA 4 ///< number of context models for greater than 2 flag of luma |
---|
| 85 | #define NUM_ABS_FLAG_CTX_CHROMA 2 ///< number of context models for greater than 2 flag of chroma |
---|
| 86 | |
---|
[595] | 87 | #define NUM_MVP_IDX_CTX 1 ///< number of context models for MVP index |
---|
[313] | 88 | |
---|
| 89 | #define NUM_SAO_MERGE_FLAG_CTX 1 ///< number of context models for SAO merge flags |
---|
| 90 | #define NUM_SAO_TYPE_IDX_CTX 1 ///< number of context models for SAO type index |
---|
| 91 | |
---|
| 92 | #define NUM_TRANSFORMSKIP_FLAG_CTX 1 ///< number of context models for transform skipping |
---|
| 93 | #define NUM_CU_TRANSQUANT_BYPASS_FLAG_CTX 1 |
---|
| 94 | #define CNU 154 ///< dummy initialization value for unused context models 'Context model Not Used' |
---|
| 95 | |
---|
| 96 | // ==================================================================================================================== |
---|
| 97 | // Tables |
---|
| 98 | // ==================================================================================================================== |
---|
| 99 | |
---|
| 100 | // initial probability for cu_transquant_bypass flag |
---|
| 101 | static const UChar |
---|
| 102 | INIT_CU_TRANSQUANT_BYPASS_FLAG[3][NUM_CU_TRANSQUANT_BYPASS_FLAG_CTX] = |
---|
| 103 | { |
---|
| 104 | { 154 }, |
---|
| 105 | { 154 }, |
---|
| 106 | { 154 }, |
---|
| 107 | }; |
---|
| 108 | |
---|
| 109 | // initial probability for split flag |
---|
| 110 | static const UChar |
---|
| 111 | INIT_SPLIT_FLAG[3][NUM_SPLIT_FLAG_CTX] = |
---|
| 112 | { |
---|
| 113 | { 107, 139, 126, }, |
---|
| 114 | { 107, 139, 126, }, |
---|
| 115 | { 139, 141, 157, }, |
---|
| 116 | }; |
---|
| 117 | |
---|
| 118 | static const UChar |
---|
| 119 | INIT_SKIP_FLAG[3][NUM_SKIP_FLAG_CTX] = |
---|
| 120 | { |
---|
| 121 | { 197, 185, 201, }, |
---|
| 122 | { 197, 185, 201, }, |
---|
| 123 | { CNU, CNU, CNU, }, |
---|
| 124 | }; |
---|
| 125 | |
---|
| 126 | static const UChar |
---|
| 127 | INIT_MERGE_FLAG_EXT[3][NUM_MERGE_FLAG_EXT_CTX] = |
---|
| 128 | { |
---|
| 129 | { 154, }, |
---|
| 130 | { 110, }, |
---|
| 131 | { CNU, }, |
---|
| 132 | }; |
---|
| 133 | |
---|
| 134 | static const UChar |
---|
| 135 | INIT_MERGE_IDX_EXT[3][NUM_MERGE_IDX_EXT_CTX] = |
---|
| 136 | { |
---|
| 137 | { 137, }, |
---|
| 138 | { 122, }, |
---|
| 139 | { CNU, }, |
---|
| 140 | }; |
---|
| 141 | |
---|
| 142 | static const UChar |
---|
| 143 | INIT_PART_SIZE[3][NUM_PART_SIZE_CTX] = |
---|
| 144 | { |
---|
[595] | 145 | { 154, 139, 154, 154 }, |
---|
| 146 | { 154, 139, 154, 154 }, |
---|
| 147 | { 184, CNU, CNU, CNU }, |
---|
[313] | 148 | }; |
---|
| 149 | |
---|
| 150 | static const UChar |
---|
| 151 | INIT_PRED_MODE[3][NUM_PRED_MODE_CTX] = |
---|
| 152 | { |
---|
| 153 | { 134, }, |
---|
| 154 | { 149, }, |
---|
| 155 | { CNU, }, |
---|
| 156 | }; |
---|
| 157 | |
---|
| 158 | static const UChar |
---|
| 159 | INIT_INTRA_PRED_MODE[3][NUM_ADI_CTX] = |
---|
| 160 | { |
---|
| 161 | { 183, }, |
---|
| 162 | { 154, }, |
---|
| 163 | { 184, }, |
---|
| 164 | }; |
---|
| 165 | |
---|
| 166 | static const UChar |
---|
| 167 | INIT_CHROMA_PRED_MODE[3][NUM_CHROMA_PRED_CTX] = |
---|
| 168 | { |
---|
| 169 | { 152, 139, }, |
---|
| 170 | { 152, 139, }, |
---|
| 171 | { 63, 139, }, |
---|
| 172 | }; |
---|
| 173 | |
---|
| 174 | static const UChar |
---|
| 175 | INIT_INTER_DIR[3][NUM_INTER_DIR_CTX] = |
---|
| 176 | { |
---|
| 177 | { 95, 79, 63, 31, 31, }, |
---|
| 178 | { 95, 79, 63, 31, 31, }, |
---|
| 179 | { CNU, CNU, CNU, CNU, CNU, }, |
---|
| 180 | }; |
---|
| 181 | |
---|
| 182 | static const UChar |
---|
| 183 | INIT_MVD[3][NUM_MV_RES_CTX] = |
---|
| 184 | { |
---|
| 185 | { 169, 198, }, |
---|
| 186 | { 140, 198, }, |
---|
| 187 | { CNU, CNU, }, |
---|
| 188 | }; |
---|
| 189 | |
---|
| 190 | static const UChar |
---|
| 191 | INIT_REF_PIC[3][NUM_REF_NO_CTX] = |
---|
| 192 | { |
---|
| 193 | { 153, 153 }, |
---|
| 194 | { 153, 153 }, |
---|
| 195 | { CNU, CNU }, |
---|
| 196 | }; |
---|
| 197 | |
---|
| 198 | static const UChar |
---|
| 199 | INIT_DQP[3][NUM_DELTA_QP_CTX] = |
---|
| 200 | { |
---|
| 201 | { 154, 154, 154, }, |
---|
| 202 | { 154, 154, 154, }, |
---|
| 203 | { 154, 154, 154, }, |
---|
| 204 | }; |
---|
| 205 | |
---|
| 206 | static const UChar |
---|
| 207 | INIT_QT_CBF[3][2*NUM_QT_CBF_CTX] = |
---|
| 208 | { |
---|
[595] | 209 | { 153, 111, CNU, CNU, 149, 92, 167, 154 }, |
---|
| 210 | { 153, 111, CNU, CNU, 149, 107, 167, 154 }, |
---|
| 211 | { 111, 141, CNU, CNU, 94, 138, 182, 154 }, |
---|
[313] | 212 | }; |
---|
| 213 | |
---|
| 214 | static const UChar |
---|
| 215 | INIT_QT_ROOT_CBF[3][NUM_QT_ROOT_CBF_CTX] = |
---|
| 216 | { |
---|
| 217 | { 79, }, |
---|
| 218 | { 79, }, |
---|
| 219 | { CNU, }, |
---|
| 220 | }; |
---|
| 221 | |
---|
| 222 | static const UChar |
---|
| 223 | INIT_LAST[3][2*NUM_CTX_LAST_FLAG_XY] = |
---|
| 224 | { |
---|
| 225 | { 125, 110, 124, 110, 95, 94, 125, 111, 111, 79, 125, 126, 111, 111, 79, |
---|
| 226 | 108, 123, 93, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, |
---|
| 227 | }, |
---|
| 228 | { 125, 110, 94, 110, 95, 79, 125, 111, 110, 78, 110, 111, 111, 95, 94, |
---|
| 229 | 108, 123, 108, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, |
---|
| 230 | }, |
---|
| 231 | { 110, 110, 124, 125, 140, 153, 125, 127, 140, 109, 111, 143, 127, 111, 79, |
---|
| 232 | 108, 123, 63, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, CNU, |
---|
| 233 | }, |
---|
| 234 | }; |
---|
| 235 | |
---|
| 236 | static const UChar |
---|
| 237 | INIT_SIG_CG_FLAG[3][2 * NUM_SIG_CG_FLAG_CTX] = |
---|
| 238 | { |
---|
| 239 | { 121, 140, |
---|
| 240 | 61, 154, |
---|
| 241 | }, |
---|
| 242 | { 121, 140, |
---|
| 243 | 61, 154, |
---|
| 244 | }, |
---|
| 245 | { 91, 171, |
---|
| 246 | 134, 141, |
---|
| 247 | }, |
---|
| 248 | }; |
---|
| 249 | |
---|
| 250 | static const UChar |
---|
| 251 | INIT_SIG_FLAG[3][NUM_SIG_FLAG_CTX] = |
---|
| 252 | { |
---|
| 253 | { 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, }, |
---|
| 254 | { 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, }, |
---|
| 255 | { 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, }, |
---|
| 256 | }; |
---|
| 257 | |
---|
| 258 | static const UChar |
---|
| 259 | INIT_ONE_FLAG[3][NUM_ONE_FLAG_CTX] = |
---|
| 260 | { |
---|
| 261 | { 154, 196, 167, 167, 154, 152, 167, 182, 182, 134, 149, 136, 153, 121, 136, 122, 169, 208, 166, 167, 154, 152, 167, 182, }, |
---|
| 262 | { 154, 196, 196, 167, 154, 152, 167, 182, 182, 134, 149, 136, 153, 121, 136, 137, 169, 194, 166, 167, 154, 167, 137, 182, }, |
---|
| 263 | { 140, 92, 137, 138, 140, 152, 138, 139, 153, 74, 149, 92, 139, 107, 122, 152, 140, 179, 166, 182, 140, 227, 122, 197, }, |
---|
| 264 | }; |
---|
| 265 | |
---|
| 266 | static const UChar |
---|
| 267 | INIT_ABS_FLAG[3][NUM_ABS_FLAG_CTX] = |
---|
| 268 | { |
---|
| 269 | { 107, 167, 91, 107, 107, 167, }, |
---|
| 270 | { 107, 167, 91, 122, 107, 167, }, |
---|
| 271 | { 138, 153, 136, 167, 152, 152, }, |
---|
| 272 | }; |
---|
| 273 | |
---|
| 274 | static const UChar |
---|
| 275 | INIT_MVP_IDX[3][NUM_MVP_IDX_CTX] = |
---|
| 276 | { |
---|
[595] | 277 | { 168 }, |
---|
| 278 | { 168 }, |
---|
| 279 | { CNU }, |
---|
[313] | 280 | }; |
---|
| 281 | |
---|
| 282 | static const UChar |
---|
| 283 | INIT_SAO_MERGE_FLAG[3][NUM_SAO_MERGE_FLAG_CTX] = |
---|
| 284 | { |
---|
| 285 | { 153, }, |
---|
| 286 | { 153, }, |
---|
| 287 | { 153, }, |
---|
| 288 | }; |
---|
| 289 | |
---|
| 290 | static const UChar |
---|
| 291 | INIT_SAO_TYPE_IDX[3][NUM_SAO_TYPE_IDX_CTX] = |
---|
| 292 | { |
---|
| 293 | { 160, }, |
---|
| 294 | { 185, }, |
---|
| 295 | { 200, }, |
---|
| 296 | }; |
---|
| 297 | |
---|
| 298 | static const UChar |
---|
| 299 | INIT_TRANS_SUBDIV_FLAG[3][NUM_TRANS_SUBDIV_FLAG_CTX] = |
---|
| 300 | { |
---|
| 301 | { 224, 167, 122, }, |
---|
| 302 | { 124, 138, 94, }, |
---|
| 303 | { 153, 138, 138, }, |
---|
| 304 | }; |
---|
| 305 | |
---|
| 306 | static const UChar |
---|
| 307 | INIT_TRANSFORMSKIP_FLAG[3][2*NUM_TRANSFORMSKIP_FLAG_CTX] = |
---|
| 308 | { |
---|
| 309 | { 139, 139}, |
---|
| 310 | { 139, 139}, |
---|
| 311 | { 139, 139}, |
---|
| 312 | }; |
---|
| 313 | //! \} |
---|
| 314 | |
---|
| 315 | |
---|
| 316 | #endif |
---|