[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 TEncCavlc.cpp |
---|
| 35 | \brief CAVLC encoder class |
---|
| 36 | */ |
---|
| 37 | |
---|
[56] | 38 | #include "../TLibCommon/CommonDef.h" |
---|
[2] | 39 | #include "TEncCavlc.h" |
---|
| 40 | #include "SEIwrite.h" |
---|
| 41 | |
---|
[56] | 42 | //! \ingroup TLibEncoder |
---|
| 43 | //! \{ |
---|
[2] | 44 | |
---|
[56] | 45 | #if ENC_DEC_TRACE |
---|
| 46 | |
---|
| 47 | #define WRITE_CODE( value, length, name) xWriteCodeTr ( value, length, name ) |
---|
| 48 | #define WRITE_UVLC( value, name) xWriteUvlcTr ( value, name ) |
---|
| 49 | #define WRITE_SVLC( value, name) xWriteSvlcTr ( value, name ) |
---|
| 50 | #define WRITE_FLAG( value, name) xWriteFlagTr ( value, name ) |
---|
| 51 | |
---|
| 52 | Void xWriteUvlcTr ( UInt value, const Char *pSymbolName); |
---|
| 53 | Void xWriteSvlcTr ( Int value, const Char *pSymbolName); |
---|
| 54 | Void xWriteFlagTr ( UInt value, const Char *pSymbolName); |
---|
| 55 | |
---|
| 56 | Void xTraceSPSHeader (TComSPS *pSPS) |
---|
[2] | 57 | { |
---|
[56] | 58 | fprintf( g_hTrace, "=========== Sequence Parameter Set ID: %d ===========\n", pSPS->getSPSId() ); |
---|
| 59 | } |
---|
[2] | 60 | |
---|
[56] | 61 | Void xTracePPSHeader (TComPPS *pPPS) |
---|
| 62 | { |
---|
| 63 | fprintf( g_hTrace, "=========== Picture Parameter Set ID: %d ===========\n", pPPS->getPPSId() ); |
---|
[2] | 64 | } |
---|
| 65 | |
---|
[56] | 66 | Void xTraceAPSHeader (TComAPS *pAPS) |
---|
[2] | 67 | { |
---|
[56] | 68 | fprintf( g_hTrace, "=========== Adaptation Parameter Set ===========\n"); |
---|
[2] | 69 | } |
---|
| 70 | |
---|
[56] | 71 | Void xTraceSliceHeader (TComSlice *pSlice) |
---|
| 72 | { |
---|
| 73 | fprintf( g_hTrace, "=========== Slice ===========\n"); |
---|
| 74 | } |
---|
[2] | 75 | |
---|
| 76 | |
---|
[56] | 77 | Void TEncCavlc::xWriteCodeTr (UInt value, UInt length, const Char *pSymbolName) |
---|
[2] | 78 | { |
---|
[56] | 79 | xWriteCode (value,length); |
---|
| 80 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
| 81 | fprintf( g_hTrace, "%-40s u(%d) : %d\n", pSymbolName, length, value ); |
---|
| 82 | } |
---|
[2] | 83 | |
---|
[56] | 84 | Void TEncCavlc::xWriteUvlcTr (UInt value, const Char *pSymbolName) |
---|
| 85 | { |
---|
| 86 | xWriteUvlc (value); |
---|
| 87 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
| 88 | fprintf( g_hTrace, "%-40s u(v) : %d\n", pSymbolName, value ); |
---|
| 89 | } |
---|
[2] | 90 | |
---|
[56] | 91 | Void TEncCavlc::xWriteSvlcTr (Int value, const Char *pSymbolName) |
---|
| 92 | { |
---|
| 93 | xWriteSvlc(value); |
---|
| 94 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
| 95 | fprintf( g_hTrace, "%-40s s(v) : %d\n", pSymbolName, value ); |
---|
| 96 | } |
---|
[2] | 97 | |
---|
[56] | 98 | Void TEncCavlc::xWriteFlagTr(UInt value, const Char *pSymbolName) |
---|
| 99 | { |
---|
| 100 | xWriteFlag(value); |
---|
| 101 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
| 102 | fprintf( g_hTrace, "%-40s u(1) : %d\n", pSymbolName, value ); |
---|
| 103 | } |
---|
[2] | 104 | |
---|
| 105 | #else |
---|
| 106 | |
---|
[56] | 107 | #define WRITE_CODE( value, length, name) xWriteCode ( value, length ) |
---|
| 108 | #define WRITE_UVLC( value, name) xWriteUvlc ( value ) |
---|
| 109 | #define WRITE_SVLC( value, name) xWriteSvlc ( value ) |
---|
| 110 | #define WRITE_FLAG( value, name) xWriteFlag ( value ) |
---|
[2] | 111 | |
---|
| 112 | #endif |
---|
| 113 | |
---|
| 114 | |
---|
| 115 | |
---|
[56] | 116 | // ==================================================================================================================== |
---|
| 117 | // Constructor / destructor / create / destroy |
---|
| 118 | // ==================================================================================================================== |
---|
[2] | 119 | |
---|
[56] | 120 | TEncCavlc::TEncCavlc() |
---|
[2] | 121 | { |
---|
[56] | 122 | m_pcBitIf = NULL; |
---|
| 123 | m_uiCoeffCost = 0; |
---|
| 124 | m_bAlfCtrl = false; |
---|
| 125 | m_uiMaxAlfCtrlDepth = 0; |
---|
| 126 | |
---|
| 127 | m_iSliceGranularity = 0; |
---|
[2] | 128 | } |
---|
| 129 | |
---|
[56] | 130 | TEncCavlc::~TEncCavlc() |
---|
[2] | 131 | { |
---|
| 132 | } |
---|
| 133 | |
---|
[56] | 134 | |
---|
| 135 | // ==================================================================================================================== |
---|
| 136 | // Public member functions |
---|
| 137 | // ==================================================================================================================== |
---|
| 138 | |
---|
| 139 | Void TEncCavlc::resetEntropy() |
---|
[2] | 140 | { |
---|
| 141 | } |
---|
| 142 | |
---|
| 143 | /** |
---|
[56] | 144 | * marshall the SEI message sei. |
---|
[2] | 145 | */ |
---|
| 146 | void TEncCavlc::codeSEI(const SEI& sei) |
---|
| 147 | { |
---|
| 148 | writeSEImessage(*m_pcBitIf, sei); |
---|
| 149 | } |
---|
| 150 | |
---|
[56] | 151 | Void TEncCavlc::codeAPSInitInfo(TComAPS* pcAPS) |
---|
[2] | 152 | { |
---|
[56] | 153 | |
---|
| 154 | #if ENC_DEC_TRACE |
---|
| 155 | xTraceAPSHeader(pcAPS); |
---|
[42] | 156 | #endif |
---|
[56] | 157 | //APS ID |
---|
| 158 | WRITE_UVLC( pcAPS->getAPSID(), "aps_id" ); |
---|
[2] | 159 | |
---|
[56] | 160 | WRITE_FLAG( pcAPS->getScalingListEnabled()?1:0, "aps_scaling_list_data_present_flag"); |
---|
| 161 | //DF flag |
---|
| 162 | WRITE_FLAG(pcAPS->getLoopFilterOffsetInAPS()?1:0, "aps_deblocking_filter_flag"); |
---|
| 163 | #if !SAO_UNIT_INTERLEAVING |
---|
| 164 | //SAO flag |
---|
| 165 | WRITE_FLAG( pcAPS->getSaoEnabled()?1:0, "aps_sample_adaptive_offset_flag"); |
---|
[2] | 166 | #endif |
---|
[56] | 167 | #if !LCU_SYNTAX_ALF |
---|
| 168 | //ALF flag |
---|
| 169 | WRITE_FLAG( pcAPS->getAlfEnabled()?1:0, "aps_adaptive_loop_filter_flag"); |
---|
[2] | 170 | #endif |
---|
| 171 | } |
---|
[56] | 172 | #if LCU_SYNTAX_ALF |
---|
| 173 | Void TEncCavlc::codeAPSAlflag(UInt uiCode) |
---|
| 174 | { |
---|
| 175 | WRITE_FLAG(uiCode, "aps_adaptive_loop_filter_flag"); |
---|
| 176 | } |
---|
| 177 | #endif |
---|
[2] | 178 | |
---|
[56] | 179 | Void TEncCavlc::codeDFFlag(UInt uiCode, const Char *pSymbolName) |
---|
[42] | 180 | { |
---|
[56] | 181 | WRITE_FLAG(uiCode, pSymbolName); |
---|
[42] | 182 | } |
---|
[56] | 183 | Void TEncCavlc::codeDFSvlc(Int iCode, const Char *pSymbolName) |
---|
[2] | 184 | { |
---|
[56] | 185 | WRITE_SVLC(iCode, pSymbolName); |
---|
[2] | 186 | } |
---|
| 187 | |
---|
[56] | 188 | #if RPS_IN_SPS |
---|
| 189 | Void TEncCavlc::codeShortTermRefPicSet( TComSPS* pcSPS, TComReferencePictureSet* rps ) |
---|
[42] | 190 | #else |
---|
[56] | 191 | Void TEncCavlc::codeShortTermRefPicSet( TComPPS* pcPPS, TComReferencePictureSet* rps ) |
---|
[42] | 192 | #endif |
---|
[56] | 193 | { |
---|
| 194 | #if PRINT_RPS_INFO |
---|
| 195 | int lastBits = getNumberOfWrittenBits(); |
---|
[2] | 196 | #endif |
---|
[56] | 197 | WRITE_FLAG( rps->getInterRPSPrediction(), "inter_ref_pic_set_prediction_flag" ); // inter_RPS_prediction_flag |
---|
| 198 | if (rps->getInterRPSPrediction()) |
---|
| 199 | { |
---|
| 200 | Int deltaRPS = rps->getDeltaRPS(); |
---|
| 201 | WRITE_UVLC( rps->getDeltaRIdxMinus1(), "delta_idx_minus1" ); // delta index of the Reference Picture Set used for prediction minus 1 |
---|
| 202 | WRITE_CODE( (deltaRPS >=0 ? 0: 1), 1, "delta_rps_sign" ); //delta_rps_sign |
---|
| 203 | WRITE_UVLC( abs(deltaRPS) - 1, "abs_delta_rps_minus1"); // absolute delta RPS minus 1 |
---|
[2] | 204 | |
---|
[56] | 205 | for(Int j=0; j < rps->getNumRefIdc(); j++) |
---|
| 206 | { |
---|
| 207 | Int refIdc = rps->getRefIdc(j); |
---|
| 208 | WRITE_CODE( (refIdc==1? 1: 0), 1, "used_by_curr_pic_flag" ); //first bit is "1" if Idc is 1 |
---|
| 209 | if (refIdc != 1) |
---|
| 210 | { |
---|
| 211 | WRITE_CODE( refIdc>>1, 1, "use_delta_flag" ); //second bit is "1" if Idc is 2, "0" otherwise. |
---|
| 212 | } |
---|
| 213 | } |
---|
[2] | 214 | } |
---|
[56] | 215 | else |
---|
[2] | 216 | { |
---|
[56] | 217 | WRITE_UVLC( rps->getNumberOfNegativePictures(), "num_negative_pics" ); |
---|
| 218 | WRITE_UVLC( rps->getNumberOfPositivePictures(), "num_positive_pics" ); |
---|
| 219 | Int prev = 0; |
---|
| 220 | for(Int j=0 ; j < rps->getNumberOfNegativePictures(); j++) |
---|
[2] | 221 | { |
---|
[56] | 222 | WRITE_UVLC( prev-rps->getDeltaPOC(j)-1, "delta_poc_s0_minus1" ); |
---|
| 223 | prev = rps->getDeltaPOC(j); |
---|
| 224 | WRITE_FLAG( rps->getUsed(j), "used_by_curr_pic_s0_flag"); |
---|
[2] | 225 | } |
---|
[56] | 226 | prev = 0; |
---|
| 227 | for(Int j=rps->getNumberOfNegativePictures(); j < rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures(); j++) |
---|
[2] | 228 | { |
---|
[56] | 229 | WRITE_UVLC( rps->getDeltaPOC(j)-prev-1, "delta_poc_s1_minus1" ); |
---|
| 230 | prev = rps->getDeltaPOC(j); |
---|
| 231 | WRITE_FLAG( rps->getUsed(j), "used_by_curr_pic_s1_flag" ); |
---|
[2] | 232 | } |
---|
| 233 | } |
---|
[56] | 234 | |
---|
| 235 | #if PRINT_RPS_INFO |
---|
| 236 | printf("irps=%d (%2d bits) ", rps->getInterRPSPrediction(), getNumberOfWrittenBits() - lastBits); |
---|
| 237 | rps->printDeltaPOC(); |
---|
| 238 | #endif |
---|
[2] | 239 | } |
---|
| 240 | |
---|
[56] | 241 | |
---|
| 242 | Void TEncCavlc::codePPS( TComPPS* pcPPS ) |
---|
[2] | 243 | { |
---|
[56] | 244 | #if ENC_DEC_TRACE |
---|
| 245 | xTracePPSHeader (pcPPS); |
---|
[42] | 246 | #endif |
---|
[56] | 247 | #if !RPS_IN_SPS |
---|
| 248 | TComRPSList* rpsList = pcPPS->getRPSList(); |
---|
[2] | 249 | #endif |
---|
[56] | 250 | |
---|
| 251 | WRITE_UVLC( pcPPS->getPPSId(), "pic_parameter_set_id" ); |
---|
| 252 | WRITE_UVLC( pcPPS->getSPSId(), "seq_parameter_set_id" ); |
---|
[2] | 253 | |
---|
[56] | 254 | #if MULTIBITS_DATA_HIDING |
---|
| 255 | WRITE_FLAG( pcPPS->getSignHideFlag(), "sign_data_hiding_flag" ); |
---|
| 256 | if( pcPPS->getSignHideFlag() ) |
---|
[2] | 257 | { |
---|
[56] | 258 | WRITE_CODE(pcPPS->getTSIG(), 4, "sign_hiding_threshold"); |
---|
[2] | 259 | } |
---|
[56] | 260 | #endif |
---|
| 261 | #if CABAC_INIT_FLAG |
---|
| 262 | WRITE_FLAG( pcPPS->getCabacInitPresentFlag() ? 1 : 0, "cabac_init_present_flag" ); |
---|
| 263 | #endif |
---|
| 264 | #if !RPS_IN_SPS |
---|
| 265 | // RPS is put before entropy_coding_mode_flag |
---|
| 266 | // since entropy_coding_mode_flag will probably be removed from the WD |
---|
| 267 | TComReferencePictureSet* rps; |
---|
| 268 | |
---|
| 269 | WRITE_UVLC(rpsList->getNumberOfReferencePictureSets(), "num_short_term_ref_pic_sets" ); |
---|
| 270 | for(UInt i=0; i < rpsList->getNumberOfReferencePictureSets(); i++) |
---|
[2] | 271 | { |
---|
[56] | 272 | rps = rpsList->getReferencePictureSet(i); |
---|
| 273 | codeShortTermRefPicSet(pcPPS,rps); |
---|
[2] | 274 | } |
---|
[56] | 275 | WRITE_FLAG( pcPPS->getLongTermRefsPresent() ? 1 : 0, "long_term_ref_pics_present_flag" ); |
---|
| 276 | #endif |
---|
| 277 | // entropy_coding_mode_flag |
---|
| 278 | // We code the entropy_coding_mode_flag, it's needed for tests. |
---|
| 279 | WRITE_FLAG( pcPPS->getEntropyCodingMode() ? 1 : 0, "entropy_coding_mode_flag" ); |
---|
| 280 | if (pcPPS->getEntropyCodingMode()) |
---|
[2] | 281 | { |
---|
[56] | 282 | #if !WPP_SIMPLIFICATION |
---|
| 283 | WRITE_UVLC( pcPPS->getEntropyCodingSynchro(), "entropy_coding_synchro" ); |
---|
| 284 | WRITE_FLAG( pcPPS->getCabacIstateReset() ? 1 : 0, "cabac_istate_reset" ); |
---|
| 285 | #endif |
---|
| 286 | #if !TILES_OR_ENTROPY_SYNC_IDC |
---|
| 287 | #if !WPP_SIMPLIFICATION |
---|
| 288 | if ( pcPPS->getEntropyCodingSynchro() ) |
---|
| 289 | #endif |
---|
| 290 | { |
---|
| 291 | WRITE_UVLC( pcPPS->getNumSubstreams()-1, "num_substreams_minus1" ); |
---|
| 292 | } |
---|
| 293 | #endif |
---|
[2] | 294 | } |
---|
[56] | 295 | #if !H0566_TLA |
---|
| 296 | WRITE_UVLC( pcPPS->getNumTLayerSwitchingFlags(), "num_temporal_layer_switching_point_flags" ); |
---|
| 297 | for( UInt i = 0; i < pcPPS->getNumTLayerSwitchingFlags(); i++ ) |
---|
[2] | 298 | { |
---|
[56] | 299 | WRITE_FLAG( pcPPS->getTLayerSwitchingFlag( i ) ? 1 : 0 , "temporal_layer_switching_point_flag" ); |
---|
[2] | 300 | } |
---|
[56] | 301 | #endif |
---|
| 302 | // num_ref_idx_l0_default_active_minus1 |
---|
| 303 | // num_ref_idx_l1_default_active_minus1 |
---|
| 304 | WRITE_SVLC( pcPPS->getPicInitQPMinus26(), "pic_init_qp_minus26"); |
---|
| 305 | WRITE_FLAG( pcPPS->getConstrainedIntraPred() ? 1 : 0, "constrained_intra_pred_flag" ); |
---|
| 306 | WRITE_FLAG( pcPPS->getEnableTMVPFlag() ? 1 : 0, "enable_temporal_mvp_flag" ); |
---|
| 307 | WRITE_CODE( pcPPS->getSliceGranularity(), 2, "slice_granularity"); |
---|
| 308 | WRITE_UVLC( pcPPS->getMaxCuDQPDepth() + pcPPS->getUseDQP(), "max_cu_qp_delta_depth" ); |
---|
[2] | 309 | |
---|
[56] | 310 | WRITE_SVLC( pcPPS->getChromaQpOffset(), "chroma_qp_offset" ); |
---|
| 311 | WRITE_SVLC( pcPPS->getChromaQpOffset2nd(), "chroma_qp_offset_2nd" ); |
---|
[2] | 312 | |
---|
[56] | 313 | WRITE_FLAG( pcPPS->getUseWP() ? 1 : 0, "weighted_pred_flag" ); // Use of Weighting Prediction (P_SLICE) |
---|
| 314 | WRITE_CODE( pcPPS->getWPBiPredIdc(), 2, "weighted_bipred_idc" ); // Use of Weighting Bi-Prediction (B_SLICE) |
---|
| 315 | #if H0388 |
---|
| 316 | WRITE_FLAG( pcPPS->getOutputFlagPresentFlag() ? 1 : 0, "output_flag_present_flag" ); |
---|
| 317 | #endif |
---|
| 318 | #if TILES_OR_ENTROPY_SYNC_IDC |
---|
| 319 | if(pcPPS->getSPS()->getTilesOrEntropyCodingSyncIdc()==1) |
---|
| 320 | { |
---|
| 321 | #endif |
---|
| 322 | WRITE_FLAG( pcPPS->getColumnRowInfoPresent(), "tile_info_present_flag" ); |
---|
| 323 | WRITE_FLAG( pcPPS->getTileBehaviorControlPresentFlag(), "tile_control_present_flag"); |
---|
| 324 | if( pcPPS->getColumnRowInfoPresent() == 1 ) |
---|
[2] | 325 | { |
---|
[56] | 326 | WRITE_UVLC( pcPPS->getNumColumnsMinus1(), "num_tile_columns_minus1" ); |
---|
| 327 | WRITE_UVLC( pcPPS->getNumRowsMinus1(), "num_tile_rows_minus1" ); |
---|
| 328 | WRITE_FLAG( pcPPS->getUniformSpacingIdr(), "uniform_spacing_flag" ); |
---|
| 329 | if( pcPPS->getUniformSpacingIdr() == 0 ) |
---|
[2] | 330 | { |
---|
[56] | 331 | for(UInt i=0; i<pcPPS->getNumColumnsMinus1(); i++) |
---|
[2] | 332 | { |
---|
[56] | 333 | WRITE_UVLC( pcPPS->getColumnWidth(i), "column_width" ); |
---|
[2] | 334 | } |
---|
[56] | 335 | for(UInt i=0; i<pcPPS->getNumRowsMinus1(); i++) |
---|
[2] | 336 | { |
---|
[56] | 337 | WRITE_UVLC( pcPPS->getRowHeight(i), "row_height" ); |
---|
[2] | 338 | } |
---|
| 339 | } |
---|
[56] | 340 | } |
---|
[2] | 341 | |
---|
[56] | 342 | if(pcPPS->getTileBehaviorControlPresentFlag() == 1) |
---|
[2] | 343 | { |
---|
[56] | 344 | Int iNumColTilesMinus1 = (pcPPS->getColumnRowInfoPresent() == 1)?(pcPPS->getNumColumnsMinus1()):(pcPPS->getSPS()->getNumColumnsMinus1()); |
---|
| 345 | Int iNumRowTilesMinus1 = (pcPPS->getColumnRowInfoPresent() == 1)?(pcPPS->getNumColumnsMinus1()):(pcPPS->getSPS()->getNumRowsMinus1()); |
---|
[2] | 346 | |
---|
[56] | 347 | if(iNumColTilesMinus1 !=0 || iNumRowTilesMinus1 !=0) |
---|
[2] | 348 | { |
---|
[56] | 349 | #if !REMOVE_TILE_DEPENDENCE |
---|
| 350 | WRITE_FLAG( pcPPS->getTileBoundaryIndependenceIdr(), "tile_boundary_independence_flag" ); |
---|
| 351 | if(pcPPS->getTileBoundaryIndependenceIdr() == 1) |
---|
[2] | 352 | { |
---|
[56] | 353 | #endif |
---|
| 354 | WRITE_FLAG( pcPPS->getLFCrossTileBoundaryFlag()?1 : 0, "loop_filter_across_tile_flag"); |
---|
| 355 | #if !REMOVE_TILE_DEPENDENCE |
---|
[2] | 356 | } |
---|
| 357 | #endif |
---|
| 358 | } |
---|
| 359 | } |
---|
[56] | 360 | #if TILES_OR_ENTROPY_SYNC_IDC |
---|
[2] | 361 | } |
---|
[56] | 362 | else if(pcPPS->getSPS()->getTilesOrEntropyCodingSyncIdc()==2) |
---|
[2] | 363 | { |
---|
[56] | 364 | WRITE_UVLC( pcPPS->getNumSubstreams()-1, "num_substreams_minus1" ); |
---|
[2] | 365 | } |
---|
| 366 | #endif |
---|
| 367 | |
---|
[56] | 368 | #if DBL_CONTROL |
---|
| 369 | WRITE_FLAG( pcPPS->getDeblockingFilterControlPresent()?1 : 0, "deblocking_filter_control_present_flag"); |
---|
[2] | 370 | #endif |
---|
[56] | 371 | #if PARALLEL_MERGE |
---|
| 372 | WRITE_UVLC( pcPPS->getLog2ParallelMergeLevelMinus2(), "log2_parallel_merge_level_minus2"); |
---|
[2] | 373 | #endif |
---|
[56] | 374 | WRITE_FLAG( 0, "pps_extension_flag" ); |
---|
[2] | 375 | } |
---|
| 376 | |
---|
[77] | 377 | #if VIDYO_VPS_INTEGRATION |
---|
| 378 | Void TEncCavlc::codeVPS( TComVPS* pcVPS ) |
---|
| 379 | { |
---|
[100] | 380 | WRITE_CODE( pcVPS->getMaxTLayers() - 1, 3, "max_temporal_layers_minus1" ); |
---|
[77] | 381 | WRITE_CODE( pcVPS->getMaxLayers() - 1, 5, "max_layers_minus1" ); |
---|
| 382 | WRITE_FLAG( pcVPS->getTemporalNestingFlag() - 1, "temporal_id_nesting_flag" ); |
---|
| 383 | WRITE_UVLC( pcVPS->getVPSId(), "video_parameter_set_id" ); |
---|
| 384 | for(UInt i=0; i <= pcVPS->getMaxTLayers()-1; i++) |
---|
| 385 | { |
---|
| 386 | WRITE_UVLC( pcVPS->getMaxDecPicBuffering(i), "max_dec_pic_buffering[i]" ); |
---|
| 387 | WRITE_UVLC( pcVPS->getNumReorderPics(i), "num_reorder_pics[i]" ); |
---|
| 388 | WRITE_UVLC( pcVPS->getMaxLatencyIncrease(i), "max_latency_increase[i]" ); |
---|
| 389 | } |
---|
| 390 | |
---|
| 391 | WRITE_CODE( 1, 1, "bit_equal_to_one" ); |
---|
| 392 | |
---|
| 393 | if( pcVPS->getMaxLayers() - 1 > 0 ) |
---|
| 394 | { |
---|
| 395 | WRITE_UVLC( pcVPS->getExtensionType(), "extension_type" ); |
---|
| 396 | |
---|
| 397 | for(UInt i=1; i <= pcVPS->getMaxLayers()-1; i++) |
---|
| 398 | { |
---|
| 399 | WRITE_FLAG( pcVPS->getDependentFlag(i), "dependent_flag[i]" ); |
---|
| 400 | if( pcVPS->getDependentFlag(i) ) |
---|
| 401 | { |
---|
| 402 | WRITE_UVLC( i - pcVPS->getDependentLayer(i) - 1, "delta_reference_layer_id_minus1[i]" ); |
---|
| 403 | if( pcVPS->getExtensionType() == VPS_EXTENSION_TYPE_MULTI_VIEW ) |
---|
| 404 | { |
---|
| 405 | WRITE_UVLC( pcVPS->getViewId(i), "view_id[i]" ); |
---|
| 406 | WRITE_FLAG( pcVPS->getDepthFlag(i), "depth_flag[i]" ); |
---|
| 407 | WRITE_SVLC( pcVPS->getViewOrderIdx(i), "view_order_idx[i]" ); |
---|
| 408 | } |
---|
| 409 | |
---|
| 410 | } |
---|
| 411 | } |
---|
| 412 | } |
---|
| 413 | |
---|
| 414 | WRITE_FLAG( 0, "vps_extension_flag" ); |
---|
| 415 | |
---|
| 416 | //future extensions here.. |
---|
| 417 | |
---|
| 418 | return; |
---|
| 419 | } |
---|
| 420 | #endif |
---|
| 421 | |
---|
[56] | 422 | #if HHI_MPI |
---|
| 423 | Void TEncCavlc::codeSPS( TComSPS* pcSPS, Bool bIsDepth ) |
---|
[2] | 424 | #else |
---|
[56] | 425 | Void TEncCavlc::codeSPS( TComSPS* pcSPS ) |
---|
[2] | 426 | #endif |
---|
[56] | 427 | { |
---|
| 428 | #if ENC_DEC_TRACE |
---|
| 429 | xTraceSPSHeader (pcSPS); |
---|
[2] | 430 | #endif |
---|
[56] | 431 | WRITE_CODE( pcSPS->getProfileIdc (), 8, "profile_idc" ); |
---|
| 432 | WRITE_CODE( 0, 8, "reserved_zero_8bits" ); |
---|
| 433 | WRITE_CODE( pcSPS->getLevelIdc (), 8, "level_idc" ); |
---|
| 434 | WRITE_UVLC( pcSPS->getSPSId (), "seq_parameter_set_id" ); |
---|
[77] | 435 | #if VIDYO_VPS_INTEGRATION |
---|
| 436 | WRITE_UVLC( pcSPS->getVPSId (), "video_parameter_set_id" ); |
---|
| 437 | #endif |
---|
[56] | 438 | WRITE_UVLC( pcSPS->getChromaFormatIdc (), "chroma_format_idc" ); |
---|
| 439 | WRITE_CODE( pcSPS->getMaxTLayers() - 1, 3, "max_temporal_layers_minus1" ); |
---|
| 440 | WRITE_UVLC( pcSPS->getPicWidthInLumaSamples (), "pic_width_in_luma_samples" ); |
---|
| 441 | WRITE_UVLC( pcSPS->getPicHeightInLumaSamples(), "pic_height_in_luma_samples" ); |
---|
| 442 | #if PIC_CROPPING |
---|
| 443 | WRITE_FLAG( pcSPS->getPicCroppingFlag(), "pic_cropping_flag" ); |
---|
| 444 | if (pcSPS->getPicCroppingFlag()) |
---|
[2] | 445 | { |
---|
[56] | 446 | WRITE_UVLC( pcSPS->getPicCropLeftOffset(), "pic_crop_left_offset" ); |
---|
| 447 | WRITE_UVLC( pcSPS->getPicCropRightOffset(), "pic_crop_right_offset" ); |
---|
| 448 | WRITE_UVLC( pcSPS->getPicCropTopOffset(), "pic_crop_top_offset" ); |
---|
| 449 | WRITE_UVLC( pcSPS->getPicCropBottomOffset(), "pic_crop_bottom_offset" ); |
---|
[2] | 450 | } |
---|
| 451 | #endif |
---|
| 452 | |
---|
[56] | 453 | #if FULL_NBIT |
---|
| 454 | WRITE_UVLC( pcSPS->getBitDepth() - 8, "bit_depth_luma_minus8" ); |
---|
[2] | 455 | #else |
---|
[56] | 456 | WRITE_UVLC( pcSPS->getBitIncrement(), "bit_depth_luma_minus8" ); |
---|
[2] | 457 | #endif |
---|
[56] | 458 | #if FULL_NBIT |
---|
| 459 | WRITE_UVLC( pcSPS->getBitDepth() - 8, "bit_depth_chroma_minus8" ); |
---|
| 460 | #else |
---|
| 461 | WRITE_UVLC( pcSPS->getBitIncrement(), "bit_depth_chroma_minus8" ); |
---|
[2] | 462 | #endif |
---|
| 463 | |
---|
[56] | 464 | WRITE_FLAG( pcSPS->getUsePCM() ? 1 : 0, "pcm_enabled_flag"); |
---|
[2] | 465 | |
---|
[56] | 466 | if( pcSPS->getUsePCM() ) |
---|
[2] | 467 | { |
---|
[56] | 468 | WRITE_CODE( pcSPS->getPCMBitDepthLuma() - 1, 4, "pcm_bit_depth_luma_minus1" ); |
---|
| 469 | WRITE_CODE( pcSPS->getPCMBitDepthChroma() - 1, 4, "pcm_bit_depth_chroma_minus1" ); |
---|
[2] | 470 | } |
---|
[56] | 471 | |
---|
| 472 | #if LOSSLESS_CODING |
---|
| 473 | WRITE_FLAG( (pcSPS->getUseLossless ()) ? 1 : 0, "qpprime_y_zero_transquant_bypass_flag" ); |
---|
[2] | 474 | #endif |
---|
[56] | 475 | |
---|
| 476 | WRITE_UVLC( pcSPS->getBitsForPOC()-4, "log2_max_pic_order_cnt_lsb_minus4" ); |
---|
| 477 | #if H0567_DPB_PARAMETERS_PER_TEMPORAL_LAYER |
---|
| 478 | for(UInt i=0; i <= pcSPS->getMaxTLayers()-1; i++) |
---|
[2] | 479 | { |
---|
[56] | 480 | WRITE_UVLC( pcSPS->getMaxDecPicBuffering(i), "max_dec_pic_buffering[i]" ); |
---|
| 481 | WRITE_UVLC( pcSPS->getNumReorderPics(i), "num_reorder_pics[i]" ); |
---|
| 482 | WRITE_UVLC( pcSPS->getMaxLatencyIncrease(i), "max_latency_increase[i]" ); |
---|
[2] | 483 | } |
---|
| 484 | #else |
---|
[56] | 485 | WRITE_UVLC( pcSPS->getMaxNumberOfReferencePictures(), "max_num_ref_pics" ); |
---|
| 486 | WRITE_UVLC( pcSPS->getNumReorderFrames(), "num_reorder_frames" ); |
---|
| 487 | WRITE_UVLC(pcSPS->getMaxDecFrameBuffering(), "max_dec_frame_buffering" ); |
---|
| 488 | WRITE_UVLC(pcSPS->getMaxLatencyIncrease(), "max_latency_increase" ); |
---|
[2] | 489 | #endif |
---|
[56] | 490 | assert( pcSPS->getMaxCUWidth() == pcSPS->getMaxCUHeight() ); |
---|
| 491 | |
---|
| 492 | UInt MinCUSize = pcSPS->getMaxCUWidth() >> ( pcSPS->getMaxCUDepth()-g_uiAddCUDepth ); |
---|
| 493 | UInt log2MinCUSize = 0; |
---|
| 494 | while(MinCUSize > 1) |
---|
[2] | 495 | { |
---|
[56] | 496 | MinCUSize >>= 1; |
---|
| 497 | log2MinCUSize++; |
---|
[2] | 498 | } |
---|
| 499 | |
---|
[56] | 500 | #if H0412_REF_PIC_LIST_RESTRICTION |
---|
| 501 | WRITE_FLAG( pcSPS->getRestrictedRefPicListsFlag(), "restricted_ref_pic_lists_flag" ); |
---|
| 502 | if( pcSPS->getRestrictedRefPicListsFlag() ) |
---|
[2] | 503 | { |
---|
[56] | 504 | WRITE_FLAG( pcSPS->getListsModificationPresentFlag(), "lists_modification_present_flag" ); |
---|
[2] | 505 | } |
---|
[5] | 506 | #endif |
---|
[56] | 507 | WRITE_UVLC( log2MinCUSize - 3, "log2_min_coding_block_size_minus3" ); |
---|
| 508 | WRITE_UVLC( pcSPS->getMaxCUDepth()-g_uiAddCUDepth, "log2_diff_max_min_coding_block_size" ); |
---|
| 509 | WRITE_UVLC( pcSPS->getQuadtreeTULog2MinSize() - 2, "log2_min_transform_block_size_minus2" ); |
---|
| 510 | WRITE_UVLC( pcSPS->getQuadtreeTULog2MaxSize() - pcSPS->getQuadtreeTULog2MinSize(), "log2_diff_max_min_transform_block_size" ); |
---|
[2] | 511 | |
---|
[56] | 512 | if(log2MinCUSize == 3) |
---|
[2] | 513 | { |
---|
[56] | 514 | xWriteFlag ( (pcSPS->getDisInter4x4()) ? 1 : 0 ); |
---|
[2] | 515 | } |
---|
| 516 | |
---|
[56] | 517 | if( pcSPS->getUsePCM() ) |
---|
[2] | 518 | { |
---|
[56] | 519 | WRITE_UVLC( pcSPS->getPCMLog2MinSize() - 3, "log2_min_pcm_coding_block_size_minus3" ); |
---|
| 520 | WRITE_UVLC( pcSPS->getPCMLog2MaxSize() - pcSPS->getPCMLog2MinSize(), "log2_diff_max_min_pcm_coding_block_size" ); |
---|
[2] | 521 | } |
---|
[56] | 522 | WRITE_UVLC( pcSPS->getQuadtreeTUMaxDepthInter() - 1, "max_transform_hierarchy_depth_inter" ); |
---|
| 523 | WRITE_UVLC( pcSPS->getQuadtreeTUMaxDepthIntra() - 1, "max_transform_hierarchy_depth_intra" ); |
---|
| 524 | WRITE_FLAG( pcSPS->getScalingListFlag() ? 1 : 0, "scaling_list_enabled_flag" ); |
---|
| 525 | WRITE_FLAG( pcSPS->getUseLMChroma () ? 1 : 0, "chroma_pred_from_luma_enabled_flag" ); |
---|
| 526 | WRITE_FLAG( pcSPS->getUseDF() ? 1 : 0, "deblocking_filter_in_aps_enabled_flag"); |
---|
| 527 | WRITE_FLAG( pcSPS->getLFCrossSliceBoundaryFlag()?1 : 0, "seq_loop_filter_across_slices_enabled_flag"); |
---|
| 528 | WRITE_FLAG( pcSPS->getUseAMP(), "asymmetric_motion_partitions_enabled_flag" ); |
---|
| 529 | WRITE_FLAG( pcSPS->getUseNSQT(), "non_square_quadtree_enabled_flag" ); |
---|
| 530 | WRITE_FLAG( pcSPS->getUseSAO() ? 1 : 0, "sample_adaptive_offset_enabled_flag"); |
---|
| 531 | WRITE_FLAG( pcSPS->getUseALF () ? 1 : 0, "adaptive_loop_filter_enabled_flag"); |
---|
| 532 | #if LCU_SYNTAX_ALF |
---|
| 533 | if(pcSPS->getUseALF()) |
---|
[2] | 534 | { |
---|
[56] | 535 | WRITE_FLAG( (pcSPS->getUseALFCoefInSlice()) ? 1 : 0, "alf_coef_in_slice_flag"); |
---|
[2] | 536 | } |
---|
| 537 | #endif |
---|
| 538 | |
---|
[56] | 539 | if( pcSPS->getUsePCM() ) |
---|
[2] | 540 | { |
---|
[56] | 541 | WRITE_FLAG( pcSPS->getPCMFilterDisableFlag()?1 : 0, "pcm_loop_filter_disable_flag"); |
---|
[2] | 542 | } |
---|
| 543 | |
---|
[56] | 544 | assert( pcSPS->getMaxTLayers() > 0 ); |
---|
[2] | 545 | |
---|
[56] | 546 | WRITE_FLAG( pcSPS->getTemporalIdNestingFlag() ? 1 : 0, "temporal_id_nesting_flag" ); |
---|
[2] | 547 | |
---|
[56] | 548 | #if RPS_IN_SPS |
---|
| 549 | TComRPSList* rpsList = pcSPS->getRPSList(); |
---|
| 550 | TComReferencePictureSet* rps; |
---|
[2] | 551 | |
---|
[56] | 552 | WRITE_UVLC(rpsList->getNumberOfReferencePictureSets(), "num_short_term_ref_pic_sets" ); |
---|
| 553 | for(Int i=0; i < rpsList->getNumberOfReferencePictureSets(); i++) |
---|
[2] | 554 | { |
---|
[56] | 555 | rps = rpsList->getReferencePictureSet(i); |
---|
| 556 | codeShortTermRefPicSet(pcSPS,rps); |
---|
| 557 | } |
---|
| 558 | WRITE_FLAG( pcSPS->getLongTermRefsPresent() ? 1 : 0, "long_term_ref_pics_present_flag" ); |
---|
[2] | 559 | #endif |
---|
[56] | 560 | #if !PIC_CROPPING |
---|
| 561 | //!!!KS: Syntax not in WD !!! |
---|
| 562 | |
---|
| 563 | xWriteUvlc ( pcSPS->getPad (0) ); |
---|
| 564 | xWriteUvlc ( pcSPS->getPad (1) ); |
---|
| 565 | #endif |
---|
| 566 | // AMVP mode for each depth |
---|
| 567 | for (Int i = 0; i < pcSPS->getMaxCUDepth(); i++) |
---|
[2] | 568 | { |
---|
[56] | 569 | xWriteFlag( pcSPS->getAMVPMode(i) ? 1 : 0); |
---|
[2] | 570 | } |
---|
| 571 | |
---|
[56] | 572 | #if TILES_WPP_ENTRY_POINT_SIGNALLING |
---|
| 573 | Int tilesOrEntropyCodingSyncIdc = 0; |
---|
| 574 | if ( pcSPS->getNumColumnsMinus1() > 0 || pcSPS->getNumRowsMinus1() > 0) |
---|
[2] | 575 | { |
---|
[56] | 576 | tilesOrEntropyCodingSyncIdc = 1; |
---|
[2] | 577 | } |
---|
[56] | 578 | else if ( pcSPS->getNumSubstreams() > 1 ) |
---|
[2] | 579 | { |
---|
[56] | 580 | tilesOrEntropyCodingSyncIdc = 2; |
---|
[2] | 581 | } |
---|
[56] | 582 | pcSPS->setTilesOrEntropyCodingSyncIdc( tilesOrEntropyCodingSyncIdc ); |
---|
| 583 | WRITE_CODE(tilesOrEntropyCodingSyncIdc, 2, "tiles_or_entropy_coding_sync_idc"); |
---|
[2] | 584 | #endif |
---|
[56] | 585 | |
---|
| 586 | #if TILES_OR_ENTROPY_SYNC_IDC |
---|
| 587 | if(tilesOrEntropyCodingSyncIdc == 1) |
---|
[2] | 588 | { |
---|
| 589 | #endif |
---|
[56] | 590 | WRITE_UVLC( pcSPS->getNumColumnsMinus1(), "num_tile_columns_minus1" ); |
---|
| 591 | WRITE_UVLC( pcSPS->getNumRowsMinus1(), "num_tile_rows_minus1" ); |
---|
| 592 | WRITE_FLAG( pcSPS->getUniformSpacingIdr(), "uniform_spacing_flag" ); |
---|
[2] | 593 | |
---|
[56] | 594 | if( pcSPS->getUniformSpacingIdr()==0 ) |
---|
[2] | 595 | { |
---|
[56] | 596 | for(UInt i=0; i<pcSPS->getNumColumnsMinus1(); i++) |
---|
[2] | 597 | { |
---|
[56] | 598 | WRITE_UVLC( pcSPS->getColumnWidth(i), "column_width" ); |
---|
[2] | 599 | } |
---|
[56] | 600 | for(UInt i=0; i<pcSPS->getNumRowsMinus1(); i++) |
---|
[2] | 601 | { |
---|
[56] | 602 | WRITE_UVLC( pcSPS->getRowHeight(i), "row_height" ); |
---|
[2] | 603 | } |
---|
| 604 | } |
---|
[56] | 605 | |
---|
| 606 | if( pcSPS->getNumColumnsMinus1() !=0 || pcSPS->getNumRowsMinus1() != 0) |
---|
[2] | 607 | { |
---|
[56] | 608 | #if !REMOVE_TILE_DEPENDENCE |
---|
| 609 | WRITE_FLAG( pcSPS->getTileBoundaryIndependenceIdr(), "tile_boundary_independence_flag" ); |
---|
| 610 | if(pcSPS->getTileBoundaryIndependenceIdr() == 1) |
---|
[2] | 611 | { |
---|
[56] | 612 | #endif |
---|
| 613 | WRITE_FLAG( pcSPS->getLFCrossTileBoundaryFlag()?1 : 0, "loop_filter_across_tile_flag"); |
---|
| 614 | #if !REMOVE_TILE_DEPENDENCE |
---|
[2] | 615 | } |
---|
[56] | 616 | #endif |
---|
[2] | 617 | } |
---|
[56] | 618 | #if TILES_OR_ENTROPY_SYNC_IDC |
---|
[2] | 619 | } |
---|
[56] | 620 | #endif |
---|
| 621 | WRITE_FLAG( 1, "sps_extension_flag" ); |
---|
[2] | 622 | |
---|
[56] | 623 | WRITE_FLAG( (pcSPS->getNumberOfUsableInterViewRefs() > 0) ? 1 : 0, "interview_refs_present_flag" ); |
---|
| 624 | if( pcSPS->getNumberOfUsableInterViewRefs() > 0 ) |
---|
[2] | 625 | { |
---|
[56] | 626 | WRITE_UVLC( pcSPS->getNumberOfUsableInterViewRefs() - 1, "num_usable_interview_refs_minus1" ); |
---|
| 627 | |
---|
| 628 | Int prev = 0; |
---|
| 629 | for( Int j = 0 ; j < pcSPS->getNumberOfUsableInterViewRefs(); j++ ) |
---|
| 630 | { |
---|
| 631 | WRITE_UVLC( prev - pcSPS->getUsableInterViewRef( j ) - 1, "delta_usable_interview_ref_minus1" ); |
---|
| 632 | prev = pcSPS->getUsableInterViewRef( j ); |
---|
| 633 | } |
---|
[2] | 634 | } |
---|
| 635 | |
---|
[56] | 636 | #if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX |
---|
| 637 | WRITE_FLAG( pcSPS->getUseDMM(), "enable_dmm_flag" ); |
---|
[2] | 638 | #endif |
---|
| 639 | |
---|
[56] | 640 | #if HHI_MPI |
---|
| 641 | if( bIsDepth ) |
---|
[2] | 642 | { |
---|
[56] | 643 | WRITE_FLAG( pcSPS->getUseMVI() ? 1 : 0, "use_mvi_flag" ); |
---|
[2] | 644 | } |
---|
| 645 | #endif |
---|
[181] | 646 | |
---|
| 647 | #if OL_QTLIMIT_PREDCODING_B0068 |
---|
| 648 | if( bIsDepth ) |
---|
| 649 | { |
---|
| 650 | WRITE_FLAG( pcSPS->getUseQTLPC() ? 1 : 0, "use_qtlpc_flag"); |
---|
| 651 | } |
---|
| 652 | #endif |
---|
[177] | 653 | |
---|
| 654 | #if RWTH_SDC_DLT_B0036 |
---|
| 655 | if( bIsDepth ) |
---|
| 656 | { |
---|
| 657 | WRITE_FLAG( pcSPS->getUseDLT() ? 1 : 0, "use_dlt_flag" ); |
---|
| 658 | if( pcSPS->getUseDLT() ) |
---|
| 659 | { |
---|
| 660 | // code mapping |
---|
| 661 | xWriteUvlc ( pcSPS->getNumDepthValues() ); |
---|
| 662 | for(UInt i=0; i<pcSPS->getNumDepthValues(); i++) |
---|
| 663 | { |
---|
| 664 | xWriteUvlc( pcSPS->idx2DepthValue(i) ); |
---|
| 665 | } |
---|
| 666 | } |
---|
| 667 | } |
---|
| 668 | #endif |
---|
[2] | 669 | |
---|
[56] | 670 | if( pcSPS->getViewId() || pcSPS->isDepth() ) |
---|
[2] | 671 | { |
---|
[56] | 672 | WRITE_FLAG( 0, "base_view_flag" ); |
---|
| 673 | if( pcSPS->isDepth() ) |
---|
[2] | 674 | { |
---|
[56] | 675 | WRITE_FLAG( 1, "depth_flag" ); |
---|
| 676 | WRITE_UVLC( pcSPS->getViewId(), "view_id" ); |
---|
| 677 | WRITE_SVLC( pcSPS->getViewOrderIdx(), "view_order_idx" ); |
---|
[2] | 678 | } |
---|
| 679 | else |
---|
| 680 | { |
---|
[56] | 681 | WRITE_FLAG( 0, "depth_flag" ); |
---|
| 682 | WRITE_UVLC( pcSPS->getViewId() - 1, "view_id_minus1" ); |
---|
| 683 | WRITE_SVLC( pcSPS->getViewOrderIdx(), "view_order_idx" ); |
---|
| 684 | WRITE_UVLC( pcSPS->getCamParPrecision(), "camera_parameter_precision" ); |
---|
| 685 | WRITE_FLAG( pcSPS->hasCamParInSliceHeader() ? 1 : 0, "camera_parameter_in_slice_header" ); |
---|
| 686 | if( !pcSPS->hasCamParInSliceHeader() ) |
---|
| 687 | { |
---|
| 688 | for( UInt uiId = 0; uiId < pcSPS->getViewId(); uiId++ ) |
---|
| 689 | { |
---|
| 690 | WRITE_SVLC( pcSPS->getCodedScale ()[ uiId ], "coded_scale" ); |
---|
| 691 | WRITE_SVLC( pcSPS->getCodedOffset ()[ uiId ], "coded_offset" ); |
---|
| 692 | WRITE_SVLC( pcSPS->getInvCodedScale ()[ uiId ] + pcSPS->getCodedScale ()[ uiId ], "inverse_coded_scale_plus_coded_scale" ); |
---|
| 693 | WRITE_SVLC( pcSPS->getInvCodedOffset()[ uiId ] + pcSPS->getCodedOffset()[ uiId ], "inverse_coded_offset_plus_coded_offset" ); |
---|
| 694 | } |
---|
[2] | 695 | } |
---|
[56] | 696 | #if DEPTH_MAP_GENERATION |
---|
| 697 | WRITE_UVLC( pcSPS->getPredDepthMapGeneration(), "Pdm_generation" ); |
---|
| 698 | if( pcSPS->getPredDepthMapGeneration() ) |
---|
[2] | 699 | { |
---|
[56] | 700 | WRITE_UVLC( pcSPS->getPdmPrecision(), "Pdm_precision" ); |
---|
| 701 | for( UInt uiId = 0; uiId < pcSPS->getViewId(); uiId++ ) |
---|
| 702 | { |
---|
| 703 | WRITE_SVLC( pcSPS->getPdmScaleNomDelta()[ uiId ], "Pdm_scale_nom_delta" ); |
---|
| 704 | WRITE_SVLC( pcSPS->getPdmOffset ()[ uiId ], "Pdm_offset" ); |
---|
| 705 | } |
---|
| 706 | #if HHI_INTER_VIEW_MOTION_PRED |
---|
| 707 | WRITE_UVLC( pcSPS->getMultiviewMvPredMode(), "multi_view_mv_pred_mode" ); |
---|
| 708 | #endif |
---|
| 709 | #if HHI_INTER_VIEW_RESIDUAL_PRED |
---|
| 710 | WRITE_FLAG ( pcSPS->getMultiviewResPredMode(), "multi_view_residual_pred_mode" ); |
---|
| 711 | #endif |
---|
[2] | 712 | } |
---|
[56] | 713 | #endif |
---|
[2] | 714 | } |
---|
| 715 | } |
---|
[56] | 716 | else |
---|
[2] | 717 | { |
---|
[56] | 718 | WRITE_FLAG( 1, "base_view_flag" ); |
---|
[2] | 719 | } |
---|
[56] | 720 | WRITE_FLAG( 0, "sps_extension2_flag" ); |
---|
| 721 | } |
---|
[2] | 722 | |
---|
[56] | 723 | Void TEncCavlc::writeTileMarker( UInt uiTileIdx, UInt uiBitsUsed ) |
---|
| 724 | { |
---|
| 725 | xWriteCode( uiTileIdx, uiBitsUsed ); |
---|
[2] | 726 | } |
---|
| 727 | |
---|
[56] | 728 | Void TEncCavlc::codeSliceHeader ( TComSlice* pcSlice ) |
---|
[2] | 729 | { |
---|
[56] | 730 | #if ENC_DEC_TRACE |
---|
| 731 | xTraceSliceHeader (pcSlice); |
---|
[2] | 732 | #endif |
---|
| 733 | |
---|
[56] | 734 | // if( nal_ref_idc != 0 ) |
---|
| 735 | // dec_ref_pic_marking( ) |
---|
| 736 | // if( entropy_coding_mode_flag && slice_type != I) |
---|
| 737 | // cabac_init_idc |
---|
| 738 | // first_slice_in_pic_flag |
---|
| 739 | // if( first_slice_in_pic_flag == 0 ) |
---|
| 740 | // slice_address |
---|
| 741 | //calculate number of bits required for slice address |
---|
| 742 | Int maxAddrOuter = pcSlice->getPic()->getNumCUsInFrame(); |
---|
| 743 | Int reqBitsOuter = 0; |
---|
| 744 | while(maxAddrOuter>(1<<reqBitsOuter)) |
---|
[2] | 745 | { |
---|
[56] | 746 | reqBitsOuter++; |
---|
[2] | 747 | } |
---|
[56] | 748 | Int maxAddrInner = pcSlice->getPic()->getNumPartInCU()>>(2); |
---|
| 749 | maxAddrInner = (1<<(pcSlice->getPPS()->getSliceGranularity()<<1)); |
---|
| 750 | Int reqBitsInner = 0; |
---|
| 751 | |
---|
| 752 | while(maxAddrInner>(1<<reqBitsInner)) |
---|
[2] | 753 | { |
---|
[56] | 754 | reqBitsInner++; |
---|
[2] | 755 | } |
---|
[56] | 756 | Int lCUAddress; |
---|
| 757 | Int innerAddress; |
---|
| 758 | if (pcSlice->isNextSlice()) |
---|
[2] | 759 | { |
---|
[56] | 760 | // Calculate slice address |
---|
| 761 | lCUAddress = (pcSlice->getSliceCurStartCUAddr()/pcSlice->getPic()->getNumPartInCU()); |
---|
| 762 | innerAddress = (pcSlice->getSliceCurStartCUAddr()%(pcSlice->getPic()->getNumPartInCU()))>>((pcSlice->getSPS()->getMaxCUDepth()-pcSlice->getPPS()->getSliceGranularity())<<1); |
---|
[2] | 763 | } |
---|
| 764 | else |
---|
| 765 | { |
---|
[56] | 766 | // Calculate slice address |
---|
| 767 | lCUAddress = (pcSlice->getEntropySliceCurStartCUAddr()/pcSlice->getPic()->getNumPartInCU()); |
---|
| 768 | innerAddress = (pcSlice->getEntropySliceCurStartCUAddr()%(pcSlice->getPic()->getNumPartInCU()))>>((pcSlice->getSPS()->getMaxCUDepth()-pcSlice->getPPS()->getSliceGranularity())<<1); |
---|
| 769 | |
---|
[2] | 770 | } |
---|
[56] | 771 | //write slice address |
---|
| 772 | Int address = (pcSlice->getPic()->getPicSym()->getCUOrderMap(lCUAddress) << reqBitsInner) + innerAddress; |
---|
| 773 | WRITE_FLAG( address==0, "first_slice_in_pic_flag" ); |
---|
[152] | 774 | |
---|
| 775 | #if LGE_ILLUCOMP_B0045 |
---|
| 776 | // IC flag is on only first_slice_in_pic |
---|
| 777 | if (address==0) |
---|
| 778 | { |
---|
| 779 | if( pcSlice->getSPS()->getViewId() && !pcSlice->getIsDepth() ) |
---|
| 780 | { |
---|
| 781 | WRITE_FLAG( pcSlice->getApplyIC() ? 1 : 0, "applying IC flag" ); |
---|
| 782 | } |
---|
| 783 | } |
---|
| 784 | #endif |
---|
| 785 | |
---|
[56] | 786 | if(address>0) |
---|
[2] | 787 | { |
---|
[56] | 788 | WRITE_CODE( address, reqBitsOuter+reqBitsInner, "slice_address" ); |
---|
[2] | 789 | } |
---|
| 790 | |
---|
[56] | 791 | WRITE_UVLC( pcSlice->getSliceType(), "slice_type" ); |
---|
| 792 | Bool bEntropySlice = (!pcSlice->isNextSlice()); |
---|
| 793 | WRITE_FLAG( bEntropySlice ? 1 : 0, "lightweight_slice_flag" ); |
---|
| 794 | |
---|
| 795 | if (!bEntropySlice) |
---|
[2] | 796 | { |
---|
[56] | 797 | WRITE_UVLC( pcSlice->getPPS()->getPPSId(), "pic_parameter_set_id" ); |
---|
| 798 | #if H0388 |
---|
| 799 | if( pcSlice->getPPS()->getOutputFlagPresentFlag() ) |
---|
[2] | 800 | { |
---|
[56] | 801 | WRITE_FLAG( pcSlice->getPicOutputFlag() ? 1 : 0, "pic_output_flag" ); |
---|
[2] | 802 | } |
---|
| 803 | #endif |
---|
[56] | 804 | if(pcSlice->getNalUnitType()==NAL_UNIT_CODED_SLICE_IDR) |
---|
[2] | 805 | { |
---|
[56] | 806 | WRITE_UVLC( 0, "idr_pic_id" ); |
---|
| 807 | WRITE_FLAG( 0, "no_output_of_prior_pics_flag" ); |
---|
[2] | 808 | } |
---|
| 809 | else |
---|
| 810 | { |
---|
[56] | 811 | WRITE_CODE( (pcSlice->getPOC()-pcSlice->getLastIDR()+(1<<pcSlice->getSPS()->getBitsForPOC()))%(1<<pcSlice->getSPS()->getBitsForPOC()), pcSlice->getSPS()->getBitsForPOC(), "pic_order_cnt_lsb"); |
---|
[77] | 812 | if( pcSlice->getPOC() == 0 && pcSlice->getNalUnitType() != NAL_UNIT_CODED_SLICE_IDV ) |
---|
| 813 | { |
---|
| 814 | TComReferencePictureSet* rps = pcSlice->getRPS(); |
---|
| 815 | if(pcSlice->getRPSidx() < 0) |
---|
| 816 | { |
---|
| 817 | WRITE_FLAG( 0, "short_term_ref_pic_set_sps_flag"); |
---|
| 818 | #if RPS_IN_SPS |
---|
| 819 | codeShortTermRefPicSet(pcSlice->getSPS(), rps); |
---|
| 820 | #else |
---|
| 821 | codeShortTermRefPicSet(pcSlice->getPPS(), rps); |
---|
| 822 | #endif |
---|
| 823 | } |
---|
| 824 | else |
---|
| 825 | { |
---|
| 826 | WRITE_FLAG( 1, "short_term_ref_pic_set_sps_flag"); |
---|
| 827 | WRITE_UVLC( pcSlice->getRPSidx(), "short_term_ref_pic_set_idx" ); |
---|
| 828 | } |
---|
| 829 | #if RPS_IN_SPS |
---|
| 830 | if(pcSlice->getSPS()->getLongTermRefsPresent()) |
---|
| 831 | #else |
---|
| 832 | if(pcSlice->getPPS()->getLongTermRefsPresent()) |
---|
| 833 | #endif |
---|
| 834 | { |
---|
| 835 | WRITE_UVLC( rps->getNumberOfLongtermPictures(), "num_long_term_pics"); |
---|
| 836 | Int maxPocLsb = 1<<pcSlice->getSPS()->getBitsForPOC(); |
---|
| 837 | Int prev = 0; |
---|
| 838 | #if LTRP_MULT |
---|
| 839 | Int prevDeltaPocLt=0; |
---|
| 840 | Int currDeltaPocLt=0; |
---|
| 841 | #endif |
---|
| 842 | for(Int i=rps->getNumberOfPictures()-1 ; i > rps->getNumberOfPictures()-rps->getNumberOfLongtermPictures()-1; i--) |
---|
| 843 | { |
---|
| 844 | WRITE_UVLC((maxPocLsb-rps->getDeltaPOC(i)+prev)%maxPocLsb, "delta_poc_lsb_lt"); |
---|
| 845 | |
---|
| 846 | #if LTRP_MULT |
---|
| 847 | currDeltaPocLt=((maxPocLsb-rps->getDeltaPOC(i)+prev)%maxPocLsb)+prevDeltaPocLt; |
---|
[2] | 848 | |
---|
[77] | 849 | Int deltaMsbCycle=0; |
---|
| 850 | if( (i==(rps->getNumberOfPictures()-1)) ) |
---|
| 851 | { |
---|
| 852 | deltaMsbCycle=((-rps->getDeltaPOC(i))/maxPocLsb)-1; |
---|
| 853 | } |
---|
| 854 | else if( prevDeltaPocLt!=currDeltaPocLt ) |
---|
| 855 | { |
---|
| 856 | deltaMsbCycle=((-rps->getDeltaPOC(i))/maxPocLsb)-1; |
---|
| 857 | if( ((prevDeltaPocLt==maxPocLsb-1) && (currDeltaPocLt==maxPocLsb+1)) || ((prevDeltaPocLt==maxPocLsb-2) && (currDeltaPocLt==maxPocLsb))) |
---|
| 858 | { |
---|
| 859 | deltaMsbCycle=deltaMsbCycle-1; |
---|
| 860 | } |
---|
| 861 | } |
---|
| 862 | else |
---|
| 863 | { |
---|
| 864 | deltaMsbCycle=((rps->getDeltaPOC(i+1)-rps->getDeltaPOC(i))/maxPocLsb)-1; |
---|
| 865 | } |
---|
| 866 | |
---|
| 867 | if(deltaMsbCycle>=0) |
---|
| 868 | { |
---|
| 869 | WRITE_FLAG( 1, "delta_poc_msb_present_flag"); |
---|
| 870 | WRITE_UVLC(deltaMsbCycle, "delta_poc_msb_cycle_lt_minus1"); |
---|
| 871 | } |
---|
| 872 | else |
---|
| 873 | { |
---|
| 874 | WRITE_FLAG( 0, "delta_poc_msb_present_flag"); |
---|
| 875 | } |
---|
| 876 | prevDeltaPocLt=currDeltaPocLt; |
---|
| 877 | #endif |
---|
| 878 | prev = rps->getDeltaPOC(i); |
---|
| 879 | WRITE_FLAG( rps->getUsed(i), "used_by_curr_pic_lt_flag"); |
---|
| 880 | } |
---|
| 881 | } |
---|
| 882 | } |
---|
| 883 | if( pcSlice->getPOC() != 0 ) |
---|
[2] | 884 | { |
---|
[56] | 885 | TComReferencePictureSet* rps = pcSlice->getRPS(); |
---|
| 886 | if(pcSlice->getRPSidx() < 0) |
---|
| 887 | { |
---|
| 888 | WRITE_FLAG( 0, "short_term_ref_pic_set_sps_flag"); |
---|
| 889 | #if RPS_IN_SPS |
---|
| 890 | codeShortTermRefPicSet(pcSlice->getSPS(), rps); |
---|
| 891 | #else |
---|
| 892 | codeShortTermRefPicSet(pcSlice->getPPS(), rps); |
---|
[2] | 893 | #endif |
---|
[56] | 894 | } |
---|
| 895 | else |
---|
[2] | 896 | { |
---|
[56] | 897 | WRITE_FLAG( 1, "short_term_ref_pic_set_sps_flag"); |
---|
| 898 | WRITE_UVLC( pcSlice->getRPSidx(), "short_term_ref_pic_set_idx" ); |
---|
[2] | 899 | } |
---|
[56] | 900 | #if RPS_IN_SPS |
---|
| 901 | if(pcSlice->getSPS()->getLongTermRefsPresent()) |
---|
| 902 | #else |
---|
| 903 | if(pcSlice->getPPS()->getLongTermRefsPresent()) |
---|
[2] | 904 | #endif |
---|
| 905 | { |
---|
[56] | 906 | WRITE_UVLC( rps->getNumberOfLongtermPictures(), "num_long_term_pics"); |
---|
| 907 | Int maxPocLsb = 1<<pcSlice->getSPS()->getBitsForPOC(); |
---|
| 908 | Int prev = 0; |
---|
| 909 | #if LTRP_MULT |
---|
| 910 | Int prevDeltaPocLt=0; |
---|
| 911 | Int currDeltaPocLt=0; |
---|
| 912 | #endif |
---|
| 913 | for(Int i=rps->getNumberOfPictures()-1 ; i > rps->getNumberOfPictures()-rps->getNumberOfLongtermPictures()-1; i--) |
---|
| 914 | { |
---|
| 915 | WRITE_UVLC((maxPocLsb-rps->getDeltaPOC(i)+prev)%maxPocLsb, "delta_poc_lsb_lt"); |
---|
| 916 | |
---|
| 917 | #if LTRP_MULT |
---|
| 918 | currDeltaPocLt=((maxPocLsb-rps->getDeltaPOC(i)+prev)%maxPocLsb)+prevDeltaPocLt; |
---|
| 919 | |
---|
| 920 | Int deltaMsbCycle=0; |
---|
| 921 | if( (i==(rps->getNumberOfPictures()-1)) ) |
---|
| 922 | { |
---|
| 923 | deltaMsbCycle=((-rps->getDeltaPOC(i))/maxPocLsb)-1; |
---|
| 924 | } |
---|
| 925 | else if( prevDeltaPocLt!=currDeltaPocLt ) |
---|
| 926 | { |
---|
| 927 | deltaMsbCycle=((-rps->getDeltaPOC(i))/maxPocLsb)-1; |
---|
| 928 | if( ((prevDeltaPocLt==maxPocLsb-1) && (currDeltaPocLt==maxPocLsb+1)) || ((prevDeltaPocLt==maxPocLsb-2) && (currDeltaPocLt==maxPocLsb))) |
---|
| 929 | { |
---|
| 930 | deltaMsbCycle=deltaMsbCycle-1; |
---|
| 931 | } |
---|
| 932 | } |
---|
| 933 | else |
---|
| 934 | { |
---|
| 935 | deltaMsbCycle=((rps->getDeltaPOC(i+1)-rps->getDeltaPOC(i))/maxPocLsb)-1; |
---|
| 936 | } |
---|
| 937 | |
---|
| 938 | if(deltaMsbCycle>=0) |
---|
| 939 | { |
---|
| 940 | WRITE_FLAG( 1, "delta_poc_msb_present_flag"); |
---|
| 941 | WRITE_UVLC(deltaMsbCycle, "delta_poc_msb_cycle_lt_minus1"); |
---|
| 942 | } |
---|
| 943 | else |
---|
| 944 | { |
---|
| 945 | WRITE_FLAG( 0, "delta_poc_msb_present_flag"); |
---|
| 946 | } |
---|
| 947 | prevDeltaPocLt=currDeltaPocLt; |
---|
| 948 | #endif |
---|
| 949 | prev = rps->getDeltaPOC(i); |
---|
| 950 | WRITE_FLAG( rps->getUsed(i), "used_by_curr_pic_lt_flag"); |
---|
| 951 | } |
---|
[2] | 952 | } |
---|
| 953 | } |
---|
| 954 | } |
---|
[56] | 955 | |
---|
| 956 | if(pcSlice->getSPS()->getUseSAO() || pcSlice->getSPS()->getUseALF()|| pcSlice->getSPS()->getScalingListFlag() || pcSlice->getSPS()->getUseDF()) |
---|
[2] | 957 | { |
---|
[56] | 958 | if (pcSlice->getSPS()->getUseALF()) |
---|
[2] | 959 | { |
---|
[56] | 960 | #if !LCU_SYNTAX_ALF |
---|
| 961 | if (pcSlice->getAlfEnabledFlag()) |
---|
| 962 | { |
---|
| 963 | assert (pcSlice->getAPS()->getAlfEnabled()); |
---|
| 964 | } |
---|
[2] | 965 | #endif |
---|
[56] | 966 | WRITE_FLAG( pcSlice->getAlfEnabledFlag(), "ALF on/off flag in slice header" ); |
---|
[2] | 967 | } |
---|
[56] | 968 | if (pcSlice->getSPS()->getUseSAO()) |
---|
[2] | 969 | { |
---|
[56] | 970 | #if SAO_UNIT_INTERLEAVING |
---|
| 971 | WRITE_FLAG( pcSlice->getSaoInterleavingFlag(), "SAO interleaving flag" ); |
---|
[2] | 972 | #endif |
---|
[56] | 973 | assert (pcSlice->getSaoEnabledFlag() == pcSlice->getAPS()->getSaoEnabled()); |
---|
| 974 | WRITE_FLAG( pcSlice->getSaoEnabledFlag(), "SAO on/off flag in slice header" ); |
---|
| 975 | #if SAO_UNIT_INTERLEAVING |
---|
| 976 | if (pcSlice->getSaoInterleavingFlag()&&pcSlice->getSaoEnabledFlag() ) |
---|
| 977 | { |
---|
| 978 | WRITE_FLAG( pcSlice->getAPS()->getSaoParam()->bSaoFlag[1], "SAO on/off flag for Cb in slice header" ); |
---|
| 979 | WRITE_FLAG( pcSlice->getAPS()->getSaoParam()->bSaoFlag[2], "SAO on/off flag for Cr in slice header" ); |
---|
| 980 | } |
---|
| 981 | #endif |
---|
[2] | 982 | } |
---|
[56] | 983 | WRITE_UVLC( pcSlice->getAPS()->getAPSID(), "aps_id"); |
---|
[2] | 984 | } |
---|
[56] | 985 | |
---|
| 986 | // we always set num_ref_idx_active_override_flag equal to one. this might be done in a more intelligent way |
---|
| 987 | if (!pcSlice->isIntra()) |
---|
| 988 | { |
---|
| 989 | WRITE_FLAG( 1 , "num_ref_idx_active_override_flag"); |
---|
| 990 | WRITE_CODE( pcSlice->getNumRefIdx( REF_PIC_LIST_0 ) - 1, 3, "num_ref_idx_l0_active_minus1" ); |
---|
| 991 | } |
---|
[2] | 992 | else |
---|
| 993 | { |
---|
[56] | 994 | pcSlice->setNumRefIdx(REF_PIC_LIST_0, 0); |
---|
[2] | 995 | } |
---|
[56] | 996 | if (pcSlice->isInterB()) |
---|
[2] | 997 | { |
---|
[56] | 998 | WRITE_CODE( pcSlice->getNumRefIdx( REF_PIC_LIST_1 ) - 1, 3, "num_ref_idx_l1_active_minus1" ); |
---|
[2] | 999 | } |
---|
[56] | 1000 | else |
---|
[2] | 1001 | { |
---|
[56] | 1002 | pcSlice->setNumRefIdx(REF_PIC_LIST_1, 0); |
---|
[2] | 1003 | } |
---|
[56] | 1004 | #if H0412_REF_PIC_LIST_RESTRICTION |
---|
| 1005 | if( pcSlice->getSPS()->getListsModificationPresentFlag() ) |
---|
| 1006 | { |
---|
[2] | 1007 | #endif |
---|
[56] | 1008 | TComRefPicListModification* refPicListModification = pcSlice->getRefPicListModification(); |
---|
| 1009 | #if H0137_0138_LIST_MODIFICATION |
---|
| 1010 | if( !pcSlice->isIntra() ) |
---|
[2] | 1011 | { |
---|
[56] | 1012 | WRITE_FLAG(pcSlice->getRefPicListModification()->getRefPicListModificationFlagL0() ? 1 : 0, "ref_pic_list_modification_flag_l0" ); |
---|
| 1013 | if (pcSlice->getRefPicListModification()->getRefPicListModificationFlagL0()) |
---|
[2] | 1014 | { |
---|
[56] | 1015 | Int NumPocTotalCurr = pcSlice->getNumPocTotalCurrMvc(); |
---|
| 1016 | if (NumPocTotalCurr > 1) |
---|
[2] | 1017 | { |
---|
[56] | 1018 | Int length = 1; |
---|
| 1019 | NumPocTotalCurr --; |
---|
| 1020 | while ( NumPocTotalCurr >>= 1) |
---|
[2] | 1021 | { |
---|
[56] | 1022 | length ++; |
---|
[2] | 1023 | } |
---|
[56] | 1024 | for(Int i = 0; i < pcSlice->getNumRefIdx( REF_PIC_LIST_0 ); i++) |
---|
[2] | 1025 | { |
---|
[56] | 1026 | WRITE_CODE( refPicListModification->getRefPicSetIdxL0(i), length, "list_entry_l0"); |
---|
[2] | 1027 | } |
---|
| 1028 | } |
---|
| 1029 | } |
---|
[56] | 1030 | } |
---|
| 1031 | if(pcSlice->isInterB()) |
---|
| 1032 | { |
---|
| 1033 | WRITE_FLAG(pcSlice->getRefPicListModification()->getRefPicListModificationFlagL1() ? 1 : 0, "ref_pic_list_modification_flag_l1" ); |
---|
| 1034 | if (pcSlice->getRefPicListModification()->getRefPicListModificationFlagL1()) |
---|
[2] | 1035 | { |
---|
[56] | 1036 | Int NumPocTotalCurr = pcSlice->getNumPocTotalCurrMvc(); |
---|
| 1037 | if ( NumPocTotalCurr > 1 ) |
---|
[2] | 1038 | { |
---|
[56] | 1039 | Int length = 1; |
---|
| 1040 | NumPocTotalCurr --; |
---|
| 1041 | while ( NumPocTotalCurr >>= 1) |
---|
[2] | 1042 | { |
---|
[56] | 1043 | length ++; |
---|
[2] | 1044 | } |
---|
[56] | 1045 | for(Int i = 0; i < pcSlice->getNumRefIdx( REF_PIC_LIST_1 ); i++) |
---|
[2] | 1046 | { |
---|
[56] | 1047 | WRITE_CODE( refPicListModification->getRefPicSetIdxL1(i), length, "list_entry_l1"); |
---|
[2] | 1048 | } |
---|
| 1049 | } |
---|
| 1050 | } |
---|
| 1051 | } |
---|
| 1052 | #else |
---|
[56] | 1053 | if(!pcSlice->isIntra()) |
---|
[2] | 1054 | { |
---|
[56] | 1055 | WRITE_FLAG(pcSlice->getRefPicListModification()->getRefPicListModificationFlagL0() ? 1 : 0, "ref_pic_list_modification_flag" ); |
---|
| 1056 | for(Int i = 0; i < refPicListModification->getNumberOfRefPicListModificationsL0(); i++) |
---|
[2] | 1057 | { |
---|
[56] | 1058 | WRITE_UVLC( refPicListModification->getListIdcL0(i), "ref_pic_list_modification_idc"); |
---|
| 1059 | WRITE_UVLC( refPicListModification->getRefPicSetIdxL0(i), "ref_pic_set_idx"); |
---|
[2] | 1060 | } |
---|
[56] | 1061 | if(pcSlice->getRefPicListModification()->getRefPicListModificationFlagL0()) |
---|
| 1062 | WRITE_UVLC( 3, "ref_pic_list_modification_idc"); |
---|
| 1063 | } |
---|
| 1064 | if(pcSlice->isInterB()) |
---|
| 1065 | { |
---|
| 1066 | WRITE_FLAG(pcSlice->getRefPicListModification()->getRefPicListModificationFlagL1() ? 1 : 0, "ref_pic_list_modification_flag" ); |
---|
| 1067 | for(Int i = 0; i < refPicListModification->getNumberOfRefPicListModificationsL1(); i++) |
---|
[2] | 1068 | { |
---|
[56] | 1069 | WRITE_UVLC( refPicListModification->getListIdcL1(i), "ref_pic_list_modification_idc"); |
---|
| 1070 | WRITE_UVLC( refPicListModification->getRefPicSetIdxL1(i), "ref_pic_set_idx"); |
---|
[2] | 1071 | } |
---|
[56] | 1072 | if(pcSlice->getRefPicListModification()->getRefPicListModificationFlagL1()) |
---|
| 1073 | WRITE_UVLC( 3, "ref_pic_list_modification_idc"); |
---|
[2] | 1074 | } |
---|
[56] | 1075 | #endif |
---|
| 1076 | } |
---|
| 1077 | #if H0412_REF_PIC_LIST_RESTRICTION |
---|
| 1078 | } |
---|
| 1079 | #endif |
---|
| 1080 | // ref_pic_list_combination( ) |
---|
| 1081 | // maybe move to own function? |
---|
| 1082 | if (pcSlice->isInterB()) |
---|
| 1083 | { |
---|
| 1084 | WRITE_FLAG(pcSlice->getRefPicListCombinationFlag() ? 1 : 0, "ref_pic_list_combination_flag" ); |
---|
| 1085 | if(pcSlice->getRefPicListCombinationFlag()) |
---|
| 1086 | { |
---|
| 1087 | WRITE_UVLC( pcSlice->getNumRefIdx(REF_PIC_LIST_C) - 1, "num_ref_idx lc_active_minus1"); |
---|
| 1088 | |
---|
| 1089 | #if H0412_REF_PIC_LIST_RESTRICTION |
---|
| 1090 | if( pcSlice->getSPS()->getListsModificationPresentFlag() ) |
---|
[2] | 1091 | { |
---|
[56] | 1092 | #endif |
---|
| 1093 | WRITE_FLAG( pcSlice->getRefPicListModificationFlagLC() ? 1 : 0, "ref_pic_list_modification_flag_lc" ); |
---|
| 1094 | if(pcSlice->getRefPicListModificationFlagLC()) |
---|
[2] | 1095 | { |
---|
[56] | 1096 | for (UInt i=0;i<pcSlice->getNumRefIdx(REF_PIC_LIST_C);i++) |
---|
| 1097 | { |
---|
| 1098 | WRITE_FLAG( pcSlice->getListIdFromIdxOfLC(i), "pic_from_list_0_flag" ); |
---|
| 1099 | #if H0137_0138_LIST_MODIFICATION |
---|
| 1100 | if (((pcSlice->getListIdFromIdxOfLC(i)==REF_PIC_LIST_0) && pcSlice->getNumRefIdx( REF_PIC_LIST_0 )>1 ) || ((pcSlice->getListIdFromIdxOfLC(i)==REF_PIC_LIST_1) && pcSlice->getNumRefIdx( REF_PIC_LIST_1 )>1 ) ) |
---|
| 1101 | { |
---|
| 1102 | WRITE_UVLC( pcSlice->getRefIdxFromIdxOfLC(i), "ref_idx_list_curr" ); |
---|
| 1103 | } |
---|
| 1104 | #else |
---|
| 1105 | WRITE_UVLC( pcSlice->getRefIdxFromIdxOfLC(i), "ref_idx_list_curr" ); |
---|
| 1106 | #endif |
---|
| 1107 | } |
---|
[2] | 1108 | } |
---|
[56] | 1109 | #if H0412_REF_PIC_LIST_RESTRICTION |
---|
[2] | 1110 | } |
---|
| 1111 | #endif |
---|
| 1112 | } |
---|
| 1113 | } |
---|
[56] | 1114 | |
---|
| 1115 | #if H0111_MVD_L1_ZERO |
---|
| 1116 | if (pcSlice->isInterB()) |
---|
[2] | 1117 | { |
---|
[56] | 1118 | WRITE_FLAG( pcSlice->getMvdL1ZeroFlag() ? 1 : 0, "mvd_l1_zero_flag"); |
---|
[2] | 1119 | } |
---|
| 1120 | #endif |
---|
| 1121 | |
---|
[56] | 1122 | if(pcSlice->getPPS()->getEntropyCodingMode() && !pcSlice->isIntra()) |
---|
[2] | 1123 | { |
---|
[56] | 1124 | #if CABAC_INIT_FLAG |
---|
| 1125 | if (!pcSlice->isIntra() && pcSlice->getPPS()->getCabacInitPresentFlag()) |
---|
[2] | 1126 | { |
---|
[56] | 1127 | SliceType sliceType = pcSlice->getSliceType(); |
---|
| 1128 | Int encCABACTableIdx = pcSlice->getPPS()->getEncCABACTableIdx(); |
---|
| 1129 | Bool encCabacInitFlag = (sliceType!=encCABACTableIdx && encCABACTableIdx!=0) ? true : false; |
---|
| 1130 | pcSlice->setCabacInitFlag( encCabacInitFlag ); |
---|
| 1131 | WRITE_FLAG( encCabacInitFlag?1:0, "cabac_init_flag" ); |
---|
[2] | 1132 | } |
---|
| 1133 | #else |
---|
[56] | 1134 | WRITE_UVLC(pcSlice->getCABACinitIDC(), "cabac_init_idc"); |
---|
[2] | 1135 | #endif |
---|
| 1136 | } |
---|
| 1137 | |
---|
[56] | 1138 | // if( !lightweight_slice_flag ) { |
---|
| 1139 | if (!bEntropySlice) |
---|
[2] | 1140 | { |
---|
[56] | 1141 | Int iCode = pcSlice->getSliceQp() - ( pcSlice->getPPS()->getPicInitQPMinus26() + 26 ); |
---|
| 1142 | WRITE_SVLC( iCode, "slice_qp_delta" ); |
---|
| 1143 | #if DBL_CONTROL |
---|
| 1144 | if (pcSlice->getPPS()->getDeblockingFilterControlPresent()) |
---|
[2] | 1145 | { |
---|
[56] | 1146 | if ( pcSlice->getSPS()->getUseDF() ) |
---|
[2] | 1147 | { |
---|
[56] | 1148 | WRITE_FLAG(pcSlice->getInheritDblParamFromAPS(), "inherit_dbl_param_from_APS_flag"); |
---|
[2] | 1149 | } |
---|
[56] | 1150 | #else |
---|
| 1151 | WRITE_FLAG(pcSlice->getInheritDblParamFromAPS(), "inherit_dbl_param_from_APS_flag"); |
---|
| 1152 | #endif |
---|
| 1153 | if (!pcSlice->getInheritDblParamFromAPS()) |
---|
[2] | 1154 | { |
---|
[56] | 1155 | WRITE_FLAG(pcSlice->getLoopFilterDisable(), "loop_filter_disable"); // should be an IDC |
---|
| 1156 | if(!pcSlice->getLoopFilterDisable()) |
---|
| 1157 | { |
---|
| 1158 | WRITE_SVLC (pcSlice->getLoopFilterBetaOffset(), "beta_offset_div2"); |
---|
| 1159 | WRITE_SVLC (pcSlice->getLoopFilterTcOffset(), "tc_offset_div2"); |
---|
| 1160 | } |
---|
[2] | 1161 | } |
---|
[56] | 1162 | #if DBL_CONTROL |
---|
| 1163 | } |
---|
| 1164 | #endif |
---|
| 1165 | if ( pcSlice->getSliceType() == B_SLICE ) |
---|
| 1166 | { |
---|
| 1167 | WRITE_FLAG( pcSlice->getColDir(), "collocated_from_l0_flag" ); |
---|
| 1168 | } |
---|
[2] | 1169 | |
---|
[56] | 1170 | #if COLLOCATED_REF_IDX |
---|
| 1171 | if ( pcSlice->getSliceType() != I_SLICE && |
---|
| 1172 | ((pcSlice->getColDir()==0 && pcSlice->getNumRefIdx(REF_PIC_LIST_0)>1)|| |
---|
| 1173 | (pcSlice->getColDir()==1 && pcSlice->getNumRefIdx(REF_PIC_LIST_1)>1))) |
---|
| 1174 | { |
---|
| 1175 | WRITE_UVLC( pcSlice->getColRefIdx(), "collocated_ref_idx" ); |
---|
[2] | 1176 | } |
---|
[56] | 1177 | #endif |
---|
| 1178 | |
---|
| 1179 | if ( (pcSlice->getPPS()->getUseWP() && pcSlice->getSliceType()==P_SLICE) || (pcSlice->getPPS()->getWPBiPredIdc()==1 && pcSlice->getSliceType()==B_SLICE) ) |
---|
[2] | 1180 | { |
---|
[56] | 1181 | xCodePredWeightTable( pcSlice ); |
---|
[2] | 1182 | } |
---|
| 1183 | } |
---|
| 1184 | |
---|
[56] | 1185 | // !!!! sytnax elements not in the WD !!!! |
---|
| 1186 | if (!bEntropySlice) |
---|
[2] | 1187 | { |
---|
[56] | 1188 | if( pcSlice->getSPS()->hasCamParInSliceHeader() ) |
---|
| 1189 | { |
---|
| 1190 | for( UInt uiId = 0; uiId < pcSlice->getSPS()->getViewId(); uiId++ ) |
---|
| 1191 | { |
---|
| 1192 | WRITE_SVLC( pcSlice->getCodedScale ()[ uiId ], "coded_scale" ); |
---|
| 1193 | WRITE_SVLC( pcSlice->getCodedOffset ()[ uiId ], "coded_offset" ); |
---|
| 1194 | WRITE_SVLC( pcSlice->getInvCodedScale ()[ uiId ] + pcSlice->getCodedScale ()[ uiId ], "inverse_coded_scale_plus_coded_scale" ); |
---|
| 1195 | WRITE_SVLC( pcSlice->getInvCodedOffset()[ uiId ] + pcSlice->getCodedOffset()[ uiId ], "inverse_coded_offset_plus_coded_offset" ); |
---|
| 1196 | } |
---|
| 1197 | } |
---|
[2] | 1198 | } |
---|
[56] | 1199 | |
---|
| 1200 | #if ( HHI_MPI || HHI_INTER_VIEW_MOTION_PRED ) |
---|
| 1201 | #if ( HHI_MPI && HHI_INTER_VIEW_MOTION_PRED ) |
---|
| 1202 | const int iExtraMergeCandidates = ( pcSlice->getSPS()->getUseMVI() || pcSlice->getSPS()->getMultiviewMvPredMode() ) ? 1 : 0; |
---|
| 1203 | #elif HHI_MPI |
---|
| 1204 | const int iExtraMergeCandidates = pcSlice->getSPS()->getUseMVI() ? 1 : 0; |
---|
| 1205 | #else |
---|
| 1206 | const int iExtraMergeCandidates = pcSlice->getSPS()->getMultiviewMvPredMode() ? 1 : 0; |
---|
| 1207 | #endif |
---|
| 1208 | assert(pcSlice->getMaxNumMergeCand()<=(MRG_MAX_NUM_CANDS_SIGNALED+iExtraMergeCandidates)); |
---|
| 1209 | assert(MRG_MAX_NUM_CANDS_SIGNALED<=MRG_MAX_NUM_CANDS); |
---|
| 1210 | WRITE_UVLC(MRG_MAX_NUM_CANDS + iExtraMergeCandidates - pcSlice->getMaxNumMergeCand(), "maxNumMergeCand"); |
---|
[2] | 1211 | #else |
---|
[56] | 1212 | assert(pcSlice->getMaxNumMergeCand()<=MRG_MAX_NUM_CANDS_SIGNALED); |
---|
| 1213 | assert(MRG_MAX_NUM_CANDS_SIGNALED<=MRG_MAX_NUM_CANDS); |
---|
| 1214 | WRITE_UVLC(MRG_MAX_NUM_CANDS - pcSlice->getMaxNumMergeCand(), "maxNumMergeCand"); |
---|
[2] | 1215 | #endif |
---|
| 1216 | } |
---|
| 1217 | |
---|
| 1218 | |
---|
[56] | 1219 | Void TEncCavlc::codeTileMarkerFlag(TComSlice* pcSlice) |
---|
[2] | 1220 | { |
---|
[56] | 1221 | Bool bEntropySlice = (!pcSlice->isNextSlice()); |
---|
| 1222 | if (!bEntropySlice) |
---|
| 1223 | { |
---|
| 1224 | xWriteFlag (pcSlice->getTileMarkerFlag() ? 1 : 0 ); |
---|
| 1225 | } |
---|
[2] | 1226 | } |
---|
| 1227 | |
---|
[56] | 1228 | /** |
---|
| 1229 | - write wavefront substreams sizes for the slice header. |
---|
| 1230 | . |
---|
| 1231 | \param pcSlice Where we find the substream size information. |
---|
| 1232 | */ |
---|
| 1233 | #if TILES_WPP_ENTRY_POINT_SIGNALLING |
---|
| 1234 | Void TEncCavlc::codeTilesWPPEntryPoint( TComSlice* pSlice ) |
---|
[2] | 1235 | { |
---|
[56] | 1236 | Int tilesOrEntropyCodingSyncIdc = pSlice->getSPS()->getTilesOrEntropyCodingSyncIdc(); |
---|
[2] | 1237 | |
---|
[56] | 1238 | if ( tilesOrEntropyCodingSyncIdc == 0 ) |
---|
[2] | 1239 | { |
---|
[56] | 1240 | return; |
---|
[2] | 1241 | } |
---|
| 1242 | |
---|
[56] | 1243 | UInt numEntryPointOffsets = 0, offsetLenMinus1 = 0, maxOffset = 0; |
---|
| 1244 | UInt *entryPointOffset = NULL; |
---|
| 1245 | if (tilesOrEntropyCodingSyncIdc == 1) // tiles |
---|
[2] | 1246 | { |
---|
[56] | 1247 | numEntryPointOffsets = pSlice->getTileLocationCount(); |
---|
| 1248 | entryPointOffset = new UInt[numEntryPointOffsets]; |
---|
| 1249 | for (Int idx=0; idx<pSlice->getTileLocationCount(); idx++) |
---|
[2] | 1250 | { |
---|
[56] | 1251 | if ( idx == 0 ) |
---|
[2] | 1252 | { |
---|
[56] | 1253 | entryPointOffset [ idx ] = pSlice->getTileLocation( 0 ); |
---|
[2] | 1254 | } |
---|
[56] | 1255 | else |
---|
[2] | 1256 | { |
---|
[56] | 1257 | entryPointOffset [ idx ] = pSlice->getTileLocation( idx ) - pSlice->getTileLocation( idx-1 ); |
---|
[2] | 1258 | } |
---|
| 1259 | |
---|
[56] | 1260 | if ( entryPointOffset[ idx ] > maxOffset ) |
---|
| 1261 | { |
---|
| 1262 | maxOffset = entryPointOffset[ idx ]; |
---|
| 1263 | } |
---|
[2] | 1264 | } |
---|
| 1265 | } |
---|
[56] | 1266 | else if (tilesOrEntropyCodingSyncIdc == 2) // wavefront |
---|
[2] | 1267 | { |
---|
[56] | 1268 | Int numZeroSubstreamsAtEndOfSlice = 0; |
---|
| 1269 | UInt* pSubstreamSizes = pSlice->getSubstreamSizes(); |
---|
| 1270 | // Find number of zero substreams at the end of slice |
---|
| 1271 | for (Int idx=pSlice->getPPS()->getNumSubstreams()-2; idx>=0; idx--) |
---|
[2] | 1272 | { |
---|
[56] | 1273 | if ( pSubstreamSizes[ idx ] == 0 ) |
---|
[2] | 1274 | { |
---|
[56] | 1275 | numZeroSubstreamsAtEndOfSlice++; |
---|
[2] | 1276 | } |
---|
[56] | 1277 | else |
---|
[2] | 1278 | { |
---|
[56] | 1279 | break; |
---|
[2] | 1280 | } |
---|
| 1281 | } |
---|
[56] | 1282 | numEntryPointOffsets = pSlice->getPPS()->getNumSubstreams() - 1 - numZeroSubstreamsAtEndOfSlice; |
---|
| 1283 | entryPointOffset = new UInt[numEntryPointOffsets]; |
---|
| 1284 | for (Int idx=0; idx<numEntryPointOffsets; idx++) |
---|
[2] | 1285 | { |
---|
[56] | 1286 | entryPointOffset[ idx ] = ( pSubstreamSizes[ idx ] >> 3 ) ; |
---|
| 1287 | if ( entryPointOffset[ idx ] > maxOffset ) |
---|
[2] | 1288 | { |
---|
[56] | 1289 | maxOffset = entryPointOffset[ idx ]; |
---|
[2] | 1290 | } |
---|
| 1291 | } |
---|
[56] | 1292 | } |
---|
[2] | 1293 | |
---|
[56] | 1294 | maxOffset += ((m_pcBitIf->getNumberOfWrittenBits() + 16) >> 3) + 8 + 2; // allowing for NALU header, slice header, bytes added for "offset_len_minus1" and "num_entry_point_offsets" |
---|
[2] | 1295 | |
---|
[56] | 1296 | // Determine number of bits "offsetLenMinus1+1" required for entry point information |
---|
| 1297 | offsetLenMinus1 = 0; |
---|
| 1298 | while (1) |
---|
| 1299 | { |
---|
| 1300 | if (maxOffset >= (1 << offsetLenMinus1) ) |
---|
| 1301 | { |
---|
| 1302 | offsetLenMinus1++; |
---|
| 1303 | if ( offsetLenMinus1 > 32 ) |
---|
[2] | 1304 | { |
---|
[56] | 1305 | FATAL_ERROR_0("exceeded 32-bits", -1); |
---|
[2] | 1306 | } |
---|
| 1307 | } |
---|
[56] | 1308 | else |
---|
[2] | 1309 | { |
---|
[56] | 1310 | break; |
---|
[2] | 1311 | } |
---|
| 1312 | } |
---|
| 1313 | |
---|
[56] | 1314 | WRITE_UVLC(numEntryPointOffsets, "num_entry_point_offsets"); |
---|
| 1315 | if (numEntryPointOffsets>0) |
---|
[2] | 1316 | { |
---|
[56] | 1317 | WRITE_UVLC(offsetLenMinus1, "offset_len_minus1"); |
---|
[2] | 1318 | } |
---|
[56] | 1319 | |
---|
| 1320 | for (UInt idx=0; idx<numEntryPointOffsets; idx++) |
---|
[2] | 1321 | { |
---|
[56] | 1322 | if ( idx == 0 ) |
---|
| 1323 | { |
---|
| 1324 | // Adding sizes of NALU header and slice header information to entryPointOffset[ 0 ] |
---|
| 1325 | Int bitDistFromNALUHdrStart = m_pcBitIf->getNumberOfWrittenBits() + 16; |
---|
| 1326 | entryPointOffset[ idx ] += ( bitDistFromNALUHdrStart + numEntryPointOffsets*(offsetLenMinus1+1) ) >> 3; |
---|
| 1327 | } |
---|
| 1328 | WRITE_CODE(entryPointOffset[ idx ], offsetLenMinus1+1, "entry_point_offset"); |
---|
[2] | 1329 | } |
---|
| 1330 | |
---|
[56] | 1331 | delete [] entryPointOffset; |
---|
[2] | 1332 | } |
---|
[56] | 1333 | #else |
---|
| 1334 | Void TEncCavlc::codeSliceHeaderSubstreamTable( TComSlice* pcSlice ) |
---|
| 1335 | { |
---|
| 1336 | UInt uiNumSubstreams = pcSlice->getPPS()->getNumSubstreams(); |
---|
| 1337 | UInt*puiSubstreamSizes = pcSlice->getSubstreamSizes(); |
---|
[2] | 1338 | |
---|
[56] | 1339 | // Write header information for all substreams except the last. |
---|
| 1340 | for (UInt ui = 0; ui+1 < uiNumSubstreams; ui++) |
---|
[2] | 1341 | { |
---|
[56] | 1342 | UInt uiNumbits = puiSubstreamSizes[ui]; |
---|
[2] | 1343 | |
---|
[56] | 1344 | //the 2 first bits are used to give the size of the header |
---|
| 1345 | if ( uiNumbits < (1<<8) ) |
---|
[2] | 1346 | { |
---|
[56] | 1347 | xWriteCode(0, 2 ); |
---|
| 1348 | xWriteCode(uiNumbits, 8 ); |
---|
[2] | 1349 | } |
---|
[56] | 1350 | else if ( uiNumbits < (1<<16) ) |
---|
| 1351 | { |
---|
| 1352 | xWriteCode(1, 2 ); |
---|
| 1353 | xWriteCode(uiNumbits, 16 ); |
---|
| 1354 | } |
---|
| 1355 | else if ( uiNumbits < (1<<24) ) |
---|
| 1356 | { |
---|
| 1357 | xWriteCode(2, 2 ); |
---|
| 1358 | xWriteCode(uiNumbits, 24 ); |
---|
| 1359 | } |
---|
| 1360 | else if ( uiNumbits < (1<<31) ) |
---|
| 1361 | { |
---|
| 1362 | xWriteCode(3, 2 ); |
---|
| 1363 | xWriteCode(uiNumbits, 32 ); |
---|
| 1364 | } |
---|
| 1365 | else |
---|
| 1366 | { |
---|
| 1367 | printf("Error in codeSliceHeaderTable\n"); |
---|
| 1368 | exit(-1); |
---|
| 1369 | } |
---|
[2] | 1370 | } |
---|
| 1371 | } |
---|
[56] | 1372 | #endif |
---|
[2] | 1373 | |
---|
[56] | 1374 | Void TEncCavlc::codeTerminatingBit ( UInt uilsLast ) |
---|
[2] | 1375 | { |
---|
[56] | 1376 | } |
---|
[2] | 1377 | |
---|
[56] | 1378 | Void TEncCavlc::codeSliceFinish () |
---|
| 1379 | { |
---|
| 1380 | } |
---|
[2] | 1381 | |
---|
[56] | 1382 | #if HHI_INTER_VIEW_MOTION_PRED |
---|
| 1383 | Void TEncCavlc::codeMVPIdx ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList, Int iNum ) |
---|
[2] | 1384 | #else |
---|
[56] | 1385 | Void TEncCavlc::codeMVPIdx ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ) |
---|
[2] | 1386 | #endif |
---|
[56] | 1387 | { |
---|
| 1388 | assert(0); |
---|
| 1389 | } |
---|
[2] | 1390 | |
---|
[56] | 1391 | Void TEncCavlc::codePartSize( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
| 1392 | { |
---|
| 1393 | assert(0); |
---|
| 1394 | } |
---|
[2] | 1395 | |
---|
[56] | 1396 | Void TEncCavlc::codePredMode( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
| 1397 | { |
---|
| 1398 | assert(0); |
---|
| 1399 | } |
---|
[2] | 1400 | |
---|
[56] | 1401 | Void TEncCavlc::codeMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
| 1402 | { |
---|
| 1403 | assert(0); |
---|
| 1404 | } |
---|
[2] | 1405 | |
---|
[56] | 1406 | Void TEncCavlc::codeMergeIndex ( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
| 1407 | { |
---|
| 1408 | assert(0); |
---|
| 1409 | } |
---|
[2] | 1410 | |
---|
[56] | 1411 | #if HHI_INTER_VIEW_RESIDUAL_PRED |
---|
| 1412 | Void |
---|
| 1413 | TEncCavlc::codeResPredFlag( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
| 1414 | { |
---|
| 1415 | assert(0); |
---|
| 1416 | } |
---|
[2] | 1417 | #endif |
---|
| 1418 | |
---|
[56] | 1419 | Void TEncCavlc::codeAlfCtrlFlag( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
| 1420 | { |
---|
| 1421 | if (!m_bAlfCtrl) |
---|
| 1422 | { |
---|
| 1423 | return; |
---|
[2] | 1424 | } |
---|
[56] | 1425 | |
---|
| 1426 | if( pcCU->getDepth(uiAbsPartIdx) > m_uiMaxAlfCtrlDepth && !pcCU->isFirstAbsZorderIdxInDepth(uiAbsPartIdx, m_uiMaxAlfCtrlDepth)) |
---|
| 1427 | { |
---|
| 1428 | return; |
---|
| 1429 | } |
---|
| 1430 | |
---|
| 1431 | // get context function is here |
---|
| 1432 | UInt uiSymbol = pcCU->getAlfCtrlFlag( uiAbsPartIdx ) ? 1 : 0; |
---|
| 1433 | |
---|
| 1434 | xWriteFlag( uiSymbol ); |
---|
| 1435 | } |
---|
[2] | 1436 | |
---|
[56] | 1437 | Void TEncCavlc::codeApsExtensionFlag () |
---|
| 1438 | { |
---|
| 1439 | WRITE_FLAG(0, "aps_extension_flag"); |
---|
[2] | 1440 | } |
---|
| 1441 | |
---|
[56] | 1442 | Void TEncCavlc::codeAlfCtrlDepth() |
---|
| 1443 | { |
---|
| 1444 | if (!m_bAlfCtrl) |
---|
[2] | 1445 | { |
---|
[56] | 1446 | return; |
---|
[2] | 1447 | } |
---|
[56] | 1448 | |
---|
| 1449 | UInt uiDepth = m_uiMaxAlfCtrlDepth; |
---|
| 1450 | |
---|
| 1451 | xWriteUvlc(uiDepth); |
---|
| 1452 | } |
---|
[2] | 1453 | |
---|
[56] | 1454 | Void TEncCavlc::codeInterModeFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiEncMode ) |
---|
| 1455 | { |
---|
| 1456 | assert(0); |
---|
| 1457 | } |
---|
[2] | 1458 | |
---|
[56] | 1459 | Void TEncCavlc::codeSkipFlag( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
| 1460 | { |
---|
| 1461 | assert(0); |
---|
| 1462 | } |
---|
[2] | 1463 | |
---|
[152] | 1464 | #if LGE_ILLUCOMP_B0045 |
---|
| 1465 | Void TEncCavlc::codeICFlag( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
| 1466 | { |
---|
| 1467 | assert(0); |
---|
| 1468 | } |
---|
| 1469 | #endif |
---|
| 1470 | |
---|
[56] | 1471 | Void TEncCavlc::codeSplitFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
| 1472 | { |
---|
| 1473 | assert(0); |
---|
| 1474 | } |
---|
[2] | 1475 | |
---|
[56] | 1476 | Void TEncCavlc::codeTransformSubdivFlag( UInt uiSymbol, UInt uiCtx ) |
---|
| 1477 | { |
---|
| 1478 | assert(0); |
---|
| 1479 | } |
---|
[2] | 1480 | |
---|
[56] | 1481 | Void TEncCavlc::codeQtCbf( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth ) |
---|
| 1482 | { |
---|
| 1483 | assert(0); |
---|
| 1484 | } |
---|
[2] | 1485 | |
---|
[56] | 1486 | Void TEncCavlc::codeQtRootCbf( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
| 1487 | { |
---|
| 1488 | assert(0); |
---|
| 1489 | } |
---|
[2] | 1490 | |
---|
[56] | 1491 | #if BURST_IPCM |
---|
| 1492 | /** Code I_PCM information. |
---|
| 1493 | * \param pcCU pointer to CU |
---|
| 1494 | * \param uiAbsPartIdx CU index |
---|
| 1495 | * \param numIPCM the number of succesive IPCM blocks with the same size |
---|
| 1496 | * \param firstIPCMFlag |
---|
| 1497 | * \returns Void |
---|
| 1498 | */ |
---|
| 1499 | Void TEncCavlc::codeIPCMInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, Int numIPCM, Bool firstIPCMFlag) |
---|
| 1500 | { |
---|
| 1501 | assert(0); |
---|
| 1502 | } |
---|
[2] | 1503 | #else |
---|
[56] | 1504 | /** Code I_PCM information. |
---|
| 1505 | * \param pcCU pointer to CU |
---|
| 1506 | * \param uiAbsPartIdx CU index |
---|
| 1507 | * \returns Void |
---|
| 1508 | * |
---|
| 1509 | * If I_PCM flag indicates that the CU is I_PCM, code its PCM alignment bits and codes. |
---|
| 1510 | */ |
---|
| 1511 | Void TEncCavlc::codeIPCMInfo( TComDataCU* pcCU, UInt uiAbsPartIdx) |
---|
| 1512 | { |
---|
| 1513 | UInt uiIPCM = (pcCU->getIPCMFlag(uiAbsPartIdx) == true)? 1 : 0; |
---|
[2] | 1514 | |
---|
[56] | 1515 | xWriteFlag(uiIPCM); |
---|
[2] | 1516 | |
---|
[56] | 1517 | if (uiIPCM) |
---|
[2] | 1518 | { |
---|
[56] | 1519 | xWritePCMAlignZero(); |
---|
[2] | 1520 | |
---|
[56] | 1521 | UInt uiMinCoeffSize = pcCU->getPic()->getMinCUWidth()*pcCU->getPic()->getMinCUHeight(); |
---|
| 1522 | UInt uiLumaOffset = uiMinCoeffSize*uiAbsPartIdx; |
---|
| 1523 | UInt uiChromaOffset = uiLumaOffset>>2; |
---|
[2] | 1524 | |
---|
[56] | 1525 | Pel* piPCMSample; |
---|
| 1526 | UInt uiWidth; |
---|
| 1527 | UInt uiHeight; |
---|
| 1528 | UInt uiSampleBits; |
---|
| 1529 | UInt uiX, uiY; |
---|
[2] | 1530 | |
---|
[56] | 1531 | piPCMSample = pcCU->getPCMSampleY() + uiLumaOffset; |
---|
| 1532 | uiWidth = pcCU->getWidth(uiAbsPartIdx); |
---|
| 1533 | uiHeight = pcCU->getHeight(uiAbsPartIdx); |
---|
| 1534 | uiSampleBits = pcCU->getSlice()->getSPS()->getPCMBitDepthLuma(); |
---|
| 1535 | |
---|
| 1536 | for(uiY = 0; uiY < uiHeight; uiY++) |
---|
[2] | 1537 | { |
---|
[56] | 1538 | for(uiX = 0; uiX < uiWidth; uiX++) |
---|
[2] | 1539 | { |
---|
[56] | 1540 | UInt uiSample = piPCMSample[uiX]; |
---|
| 1541 | |
---|
| 1542 | xWriteCode(uiSample, uiSampleBits); |
---|
[2] | 1543 | } |
---|
[56] | 1544 | piPCMSample += uiWidth; |
---|
[2] | 1545 | } |
---|
| 1546 | |
---|
[56] | 1547 | piPCMSample = pcCU->getPCMSampleCb() + uiChromaOffset; |
---|
| 1548 | uiWidth = pcCU->getWidth(uiAbsPartIdx)/2; |
---|
| 1549 | uiHeight = pcCU->getHeight(uiAbsPartIdx)/2; |
---|
| 1550 | uiSampleBits = pcCU->getSlice()->getSPS()->getPCMBitDepthChroma(); |
---|
| 1551 | |
---|
| 1552 | for(uiY = 0; uiY < uiHeight; uiY++) |
---|
[2] | 1553 | { |
---|
[56] | 1554 | for(uiX = 0; uiX < uiWidth; uiX++) |
---|
[2] | 1555 | { |
---|
[56] | 1556 | UInt uiSample = piPCMSample[uiX]; |
---|
| 1557 | |
---|
| 1558 | xWriteCode(uiSample, uiSampleBits); |
---|
[2] | 1559 | } |
---|
[56] | 1560 | piPCMSample += uiWidth; |
---|
[2] | 1561 | } |
---|
| 1562 | |
---|
[56] | 1563 | piPCMSample = pcCU->getPCMSampleCr() + uiChromaOffset; |
---|
| 1564 | uiWidth = pcCU->getWidth(uiAbsPartIdx)/2; |
---|
| 1565 | uiHeight = pcCU->getHeight(uiAbsPartIdx)/2; |
---|
| 1566 | uiSampleBits = pcCU->getSlice()->getSPS()->getPCMBitDepthChroma(); |
---|
| 1567 | |
---|
| 1568 | for(uiY = 0; uiY < uiHeight; uiY++) |
---|
[2] | 1569 | { |
---|
[56] | 1570 | for(uiX = 0; uiX < uiWidth; uiX++) |
---|
| 1571 | { |
---|
| 1572 | UInt uiSample = piPCMSample[uiX]; |
---|
| 1573 | |
---|
| 1574 | xWriteCode(uiSample, uiSampleBits); |
---|
| 1575 | } |
---|
| 1576 | piPCMSample += uiWidth; |
---|
[2] | 1577 | } |
---|
[56] | 1578 | } |
---|
| 1579 | } |
---|
[2] | 1580 | #endif |
---|
| 1581 | |
---|
[56] | 1582 | Void TEncCavlc::codeIntraDirLumaAng( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
| 1583 | { |
---|
| 1584 | assert(0); |
---|
| 1585 | } |
---|
[2] | 1586 | |
---|
[56] | 1587 | Void TEncCavlc::codeIntraDirChroma( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
| 1588 | { |
---|
| 1589 | assert(0); |
---|
[2] | 1590 | } |
---|
| 1591 | |
---|
[56] | 1592 | Void TEncCavlc::codeInterDir( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
[2] | 1593 | { |
---|
[56] | 1594 | assert(0); |
---|
| 1595 | } |
---|
[2] | 1596 | |
---|
[56] | 1597 | Void TEncCavlc::codeRefFrmIdx( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ) |
---|
| 1598 | { |
---|
| 1599 | assert(0); |
---|
[2] | 1600 | } |
---|
| 1601 | |
---|
[56] | 1602 | Void TEncCavlc::codeMvd( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ) |
---|
[2] | 1603 | { |
---|
[56] | 1604 | assert(0); |
---|
[2] | 1605 | } |
---|
| 1606 | |
---|
[56] | 1607 | Void TEncCavlc::codeDeltaQP( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
| 1608 | { |
---|
| 1609 | Int iDQp = pcCU->getQP( uiAbsPartIdx ) - pcCU->getRefQP( uiAbsPartIdx ); |
---|
| 1610 | |
---|
| 1611 | #if H0736_AVC_STYLE_QP_RANGE |
---|
| 1612 | Int qpBdOffsetY = pcCU->getSlice()->getSPS()->getQpBDOffsetY(); |
---|
| 1613 | iDQp = (iDQp + 78 + qpBdOffsetY + (qpBdOffsetY/2)) % (52 + qpBdOffsetY) - 26 - (qpBdOffsetY/2); |
---|
| 1614 | #endif |
---|
| 1615 | |
---|
| 1616 | xWriteSvlc( iDQp ); |
---|
| 1617 | |
---|
| 1618 | return; |
---|
| 1619 | } |
---|
| 1620 | |
---|
| 1621 | Void TEncCavlc::codeCoeffNxN ( TComDataCU* pcCU, TCoeff* pcCoef, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt uiDepth, TextType eTType ) |
---|
| 1622 | { |
---|
| 1623 | assert(0); |
---|
| 1624 | } |
---|
| 1625 | |
---|
| 1626 | Void TEncCavlc::codeAlfFlag( UInt uiCode ) |
---|
| 1627 | { |
---|
| 1628 | xWriteFlag( uiCode ); |
---|
| 1629 | } |
---|
| 1630 | |
---|
[2] | 1631 | Void TEncCavlc::codeAlfCtrlFlag( UInt uiSymbol ) |
---|
| 1632 | { |
---|
| 1633 | xWriteFlag( uiSymbol ); |
---|
| 1634 | } |
---|
| 1635 | |
---|
| 1636 | Void TEncCavlc::codeAlfUvlc( UInt uiCode ) |
---|
| 1637 | { |
---|
| 1638 | xWriteUvlc( uiCode ); |
---|
| 1639 | } |
---|
| 1640 | |
---|
| 1641 | Void TEncCavlc::codeAlfSvlc( Int iCode ) |
---|
| 1642 | { |
---|
| 1643 | xWriteSvlc( iCode ); |
---|
| 1644 | } |
---|
[56] | 1645 | #if LCU_SYNTAX_ALF |
---|
| 1646 | /** Code the fixed length code (smaller than one max value) in OSALF |
---|
| 1647 | * \param idx: coded value |
---|
| 1648 | * \param maxValue: max value |
---|
| 1649 | */ |
---|
| 1650 | Void TEncCavlc::codeAlfFixedLengthIdx( UInt idx, UInt maxValue) |
---|
[2] | 1651 | { |
---|
[56] | 1652 | UInt length = 0; |
---|
| 1653 | assert(idx<=maxValue); |
---|
[2] | 1654 | |
---|
[56] | 1655 | UInt temp = maxValue; |
---|
| 1656 | for(UInt i=0; i<32; i++) |
---|
| 1657 | { |
---|
| 1658 | if(temp&0x1) |
---|
| 1659 | { |
---|
| 1660 | length = i+1; |
---|
| 1661 | } |
---|
| 1662 | temp = (temp >> 1); |
---|
| 1663 | } |
---|
| 1664 | |
---|
| 1665 | if(length) |
---|
| 1666 | { |
---|
| 1667 | xWriteCode( idx, length ); |
---|
| 1668 | } |
---|
| 1669 | } |
---|
| 1670 | #endif |
---|
| 1671 | |
---|
| 1672 | Void TEncCavlc::codeSaoFlag( UInt uiCode ) |
---|
| 1673 | { |
---|
[2] | 1674 | xWriteFlag( uiCode ); |
---|
| 1675 | } |
---|
| 1676 | |
---|
[56] | 1677 | Void TEncCavlc::codeSaoUvlc( UInt uiCode ) |
---|
[2] | 1678 | { |
---|
| 1679 | xWriteUvlc( uiCode ); |
---|
| 1680 | } |
---|
| 1681 | |
---|
[56] | 1682 | Void TEncCavlc::codeSaoSvlc( Int iCode ) |
---|
[2] | 1683 | { |
---|
| 1684 | xWriteSvlc( iCode ); |
---|
| 1685 | } |
---|
[56] | 1686 | #if SAO_UNIT_INTERLEAVING |
---|
| 1687 | /** Code SAO run. |
---|
| 1688 | * \param uiCode |
---|
| 1689 | * \param maxValue |
---|
| 1690 | */ |
---|
| 1691 | Void TEncCavlc::codeSaoRun( UInt uiCode, UInt maxValue) |
---|
| 1692 | { |
---|
| 1693 | UInt uiLength = 0; |
---|
| 1694 | if (!maxValue) |
---|
| 1695 | { |
---|
| 1696 | return; |
---|
| 1697 | } |
---|
| 1698 | assert(uiCode<=maxValue); |
---|
[2] | 1699 | |
---|
[56] | 1700 | for(UInt i=0; i<32; i++) |
---|
| 1701 | { |
---|
| 1702 | if(maxValue&0x1) |
---|
| 1703 | { |
---|
| 1704 | uiLength = i+1; |
---|
| 1705 | } |
---|
| 1706 | maxValue = (maxValue >> 1); |
---|
| 1707 | } |
---|
| 1708 | WRITE_CODE( uiCode, uiLength, "sao_run_diff"); |
---|
| 1709 | } |
---|
[2] | 1710 | #endif |
---|
| 1711 | |
---|
[56] | 1712 | Void TEncCavlc::estBit( estBitsSbacStruct* pcEstBitsCabac, Int width, Int height, TextType eTType ) |
---|
[2] | 1713 | { |
---|
| 1714 | // printf("error : no VLC mode support in this version\n"); |
---|
| 1715 | return; |
---|
| 1716 | } |
---|
| 1717 | |
---|
| 1718 | // ==================================================================================================================== |
---|
| 1719 | // Protected member functions |
---|
| 1720 | // ==================================================================================================================== |
---|
| 1721 | |
---|
| 1722 | Void TEncCavlc::xWriteCode ( UInt uiCode, UInt uiLength ) |
---|
| 1723 | { |
---|
| 1724 | assert ( uiLength > 0 ); |
---|
| 1725 | m_pcBitIf->write( uiCode, uiLength ); |
---|
| 1726 | } |
---|
| 1727 | |
---|
| 1728 | Void TEncCavlc::xWriteUvlc ( UInt uiCode ) |
---|
| 1729 | { |
---|
| 1730 | UInt uiLength = 1; |
---|
| 1731 | UInt uiTemp = ++uiCode; |
---|
[56] | 1732 | |
---|
[2] | 1733 | assert ( uiTemp ); |
---|
[56] | 1734 | |
---|
[2] | 1735 | while( 1 != uiTemp ) |
---|
| 1736 | { |
---|
| 1737 | uiTemp >>= 1; |
---|
| 1738 | uiLength += 2; |
---|
| 1739 | } |
---|
[56] | 1740 | |
---|
| 1741 | //m_pcBitIf->write( uiCode, uiLength ); |
---|
| 1742 | // Take care of cases where uiLength > 32 |
---|
| 1743 | m_pcBitIf->write( 0, uiLength >> 1); |
---|
| 1744 | m_pcBitIf->write( uiCode, (uiLength+1) >> 1); |
---|
[2] | 1745 | } |
---|
| 1746 | |
---|
| 1747 | Void TEncCavlc::xWriteSvlc ( Int iCode ) |
---|
| 1748 | { |
---|
| 1749 | UInt uiCode; |
---|
[56] | 1750 | |
---|
[2] | 1751 | uiCode = xConvertToUInt( iCode ); |
---|
| 1752 | xWriteUvlc( uiCode ); |
---|
| 1753 | } |
---|
| 1754 | |
---|
| 1755 | Void TEncCavlc::xWriteFlag( UInt uiCode ) |
---|
| 1756 | { |
---|
| 1757 | m_pcBitIf->write( uiCode, 1 ); |
---|
| 1758 | } |
---|
| 1759 | |
---|
[56] | 1760 | /** Write PCM alignment bits. |
---|
| 1761 | * \returns Void |
---|
| 1762 | */ |
---|
| 1763 | Void TEncCavlc::xWritePCMAlignZero () |
---|
[2] | 1764 | { |
---|
[56] | 1765 | m_pcBitIf->writeAlignZero(); |
---|
[2] | 1766 | } |
---|
| 1767 | |
---|
| 1768 | Void TEncCavlc::xWriteUnaryMaxSymbol( UInt uiSymbol, UInt uiMaxSymbol ) |
---|
| 1769 | { |
---|
| 1770 | if (uiMaxSymbol == 0) |
---|
| 1771 | { |
---|
| 1772 | return; |
---|
| 1773 | } |
---|
| 1774 | xWriteFlag( uiSymbol ? 1 : 0 ); |
---|
| 1775 | if ( uiSymbol == 0 ) |
---|
| 1776 | { |
---|
| 1777 | return; |
---|
| 1778 | } |
---|
[56] | 1779 | |
---|
[2] | 1780 | Bool bCodeLast = ( uiMaxSymbol > uiSymbol ); |
---|
[56] | 1781 | |
---|
[2] | 1782 | while( --uiSymbol ) |
---|
| 1783 | { |
---|
| 1784 | xWriteFlag( 1 ); |
---|
| 1785 | } |
---|
| 1786 | if( bCodeLast ) |
---|
| 1787 | { |
---|
| 1788 | xWriteFlag( 0 ); |
---|
| 1789 | } |
---|
| 1790 | return; |
---|
| 1791 | } |
---|
| 1792 | |
---|
| 1793 | Void TEncCavlc::xWriteExGolombLevel( UInt uiSymbol ) |
---|
| 1794 | { |
---|
| 1795 | if( uiSymbol ) |
---|
| 1796 | { |
---|
| 1797 | xWriteFlag( 1 ); |
---|
| 1798 | UInt uiCount = 0; |
---|
| 1799 | Bool bNoExGo = (uiSymbol < 13); |
---|
[56] | 1800 | |
---|
[2] | 1801 | while( --uiSymbol && ++uiCount < 13 ) |
---|
| 1802 | { |
---|
| 1803 | xWriteFlag( 1 ); |
---|
| 1804 | } |
---|
| 1805 | if( bNoExGo ) |
---|
| 1806 | { |
---|
| 1807 | xWriteFlag( 0 ); |
---|
| 1808 | } |
---|
| 1809 | else |
---|
| 1810 | { |
---|
| 1811 | xWriteEpExGolomb( uiSymbol, 0 ); |
---|
| 1812 | } |
---|
| 1813 | } |
---|
| 1814 | else |
---|
| 1815 | { |
---|
| 1816 | xWriteFlag( 0 ); |
---|
| 1817 | } |
---|
| 1818 | return; |
---|
| 1819 | } |
---|
| 1820 | |
---|
| 1821 | Void TEncCavlc::xWriteEpExGolomb( UInt uiSymbol, UInt uiCount ) |
---|
| 1822 | { |
---|
| 1823 | while( uiSymbol >= (UInt)(1<<uiCount) ) |
---|
| 1824 | { |
---|
| 1825 | xWriteFlag( 1 ); |
---|
| 1826 | uiSymbol -= 1<<uiCount; |
---|
| 1827 | uiCount ++; |
---|
| 1828 | } |
---|
| 1829 | xWriteFlag( 0 ); |
---|
| 1830 | while( uiCount-- ) |
---|
| 1831 | { |
---|
| 1832 | xWriteFlag( (uiSymbol>>uiCount) & 1 ); |
---|
| 1833 | } |
---|
| 1834 | return; |
---|
| 1835 | } |
---|
| 1836 | |
---|
[56] | 1837 | /** code explicit wp tables |
---|
| 1838 | * \param TComSlice* pcSlice |
---|
| 1839 | * \returns Void |
---|
[2] | 1840 | */ |
---|
[56] | 1841 | Void TEncCavlc::xCodePredWeightTable( TComSlice* pcSlice ) |
---|
[2] | 1842 | { |
---|
[56] | 1843 | wpScalingParam *wp; |
---|
| 1844 | Bool bChroma = true; // color always present in HEVC ? |
---|
| 1845 | Int iNbRef = (pcSlice->getSliceType() == B_SLICE ) ? (2) : (1); |
---|
| 1846 | Bool bDenomCoded = false; |
---|
[2] | 1847 | |
---|
[56] | 1848 | UInt uiMode = 0; |
---|
| 1849 | if ( (pcSlice->getSliceType()==P_SLICE && pcSlice->getPPS()->getUseWP()) || (pcSlice->getSliceType()==B_SLICE && pcSlice->getPPS()->getWPBiPredIdc()==1 && pcSlice->getRefPicListCombinationFlag()==0 ) ) |
---|
| 1850 | uiMode = 1; // explicit |
---|
| 1851 | else if ( pcSlice->getSliceType()==B_SLICE && pcSlice->getPPS()->getWPBiPredIdc()==2 ) |
---|
| 1852 | uiMode = 2; // implicit (does not use this mode in this syntax) |
---|
| 1853 | if (pcSlice->getSliceType()==B_SLICE && pcSlice->getPPS()->getWPBiPredIdc()==1 && pcSlice->getRefPicListCombinationFlag()) |
---|
| 1854 | uiMode = 3; // combined explicit |
---|
| 1855 | if(uiMode == 1) |
---|
[2] | 1856 | { |
---|
[56] | 1857 | for ( Int iNumRef=0 ; iNumRef<iNbRef ; iNumRef++ ) |
---|
[2] | 1858 | { |
---|
[56] | 1859 | RefPicList eRefPicList = ( iNumRef ? REF_PIC_LIST_1 : REF_PIC_LIST_0 ); |
---|
| 1860 | for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) |
---|
[2] | 1861 | { |
---|
[56] | 1862 | pcSlice->getWpScaling(eRefPicList, iRefIdx, wp); |
---|
| 1863 | if ( !bDenomCoded ) |
---|
[2] | 1864 | { |
---|
[56] | 1865 | Int iDeltaDenom; |
---|
| 1866 | WRITE_UVLC( wp[0].uiLog2WeightDenom, "luma_log2_weight_denom" ); // ue(v): luma_log2_weight_denom |
---|
[2] | 1867 | |
---|
[56] | 1868 | if( bChroma ) |
---|
[2] | 1869 | { |
---|
[56] | 1870 | iDeltaDenom = (wp[1].uiLog2WeightDenom - wp[0].uiLog2WeightDenom); |
---|
| 1871 | WRITE_SVLC( iDeltaDenom, "delta_chroma_log2_weight_denom" ); // se(v): delta_chroma_log2_weight_denom |
---|
[2] | 1872 | } |
---|
[56] | 1873 | bDenomCoded = true; |
---|
| 1874 | } |
---|
[2] | 1875 | |
---|
[56] | 1876 | WRITE_FLAG( wp[0].bPresentFlag, "luma_weight_lX_flag" ); // u(1): luma_weight_lX_flag |
---|
[2] | 1877 | |
---|
[56] | 1878 | if ( wp[0].bPresentFlag ) |
---|
| 1879 | { |
---|
| 1880 | Int iDeltaWeight = (wp[0].iWeight - (1<<wp[0].uiLog2WeightDenom)); |
---|
| 1881 | WRITE_SVLC( iDeltaWeight, "delta_luma_weight_lX" ); // se(v): delta_luma_weight_lX |
---|
| 1882 | WRITE_SVLC( wp[0].iOffset, "luma_offset_lX" ); // se(v): luma_offset_lX |
---|
| 1883 | } |
---|
[2] | 1884 | |
---|
[56] | 1885 | if ( bChroma ) |
---|
| 1886 | { |
---|
| 1887 | WRITE_FLAG( wp[1].bPresentFlag, "chroma_weight_lX_flag" ); // u(1): chroma_weight_lX_flag |
---|
[2] | 1888 | |
---|
[56] | 1889 | if ( wp[1].bPresentFlag ) |
---|
[2] | 1890 | { |
---|
[56] | 1891 | for ( Int j=1 ; j<3 ; j++ ) |
---|
[2] | 1892 | { |
---|
[56] | 1893 | Int iDeltaWeight = (wp[j].iWeight - (1<<wp[1].uiLog2WeightDenom)); |
---|
| 1894 | WRITE_SVLC( iDeltaWeight, "delta_chroma_weight_lX" ); // se(v): delta_chroma_weight_lX |
---|
| 1895 | |
---|
| 1896 | Int iDeltaChroma = (wp[j].iOffset + ( ( (g_uiIBDI_MAX>>1)*wp[j].iWeight)>>(wp[j].uiLog2WeightDenom) ) - (g_uiIBDI_MAX>>1)); |
---|
| 1897 | WRITE_SVLC( iDeltaChroma, "delta_chroma_offset_lX" ); // se(v): delta_chroma_offset_lX |
---|
[2] | 1898 | } |
---|
| 1899 | } |
---|
| 1900 | } |
---|
| 1901 | } |
---|
| 1902 | } |
---|
| 1903 | } |
---|
[56] | 1904 | else if (uiMode == 3) |
---|
[2] | 1905 | { |
---|
[56] | 1906 | for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(REF_PIC_LIST_C) ; iRefIdx++ ) |
---|
| 1907 | { |
---|
| 1908 | RefPicList eRefPicList = (RefPicList)pcSlice->getListIdFromIdxOfLC(iRefIdx); |
---|
| 1909 | Int iCombRefIdx = pcSlice->getRefIdxFromIdxOfLC(iRefIdx); |
---|
[2] | 1910 | |
---|
[56] | 1911 | pcSlice->getWpScaling(eRefPicList, iCombRefIdx, wp); |
---|
| 1912 | if ( !bDenomCoded ) |
---|
[2] | 1913 | { |
---|
[56] | 1914 | Int iDeltaDenom; |
---|
| 1915 | WRITE_UVLC( wp[0].uiLog2WeightDenom, "luma_log2_weight_denom" ); // ue(v): luma_log2_weight_denom |
---|
| 1916 | |
---|
| 1917 | if( bChroma ) |
---|
| 1918 | { |
---|
| 1919 | iDeltaDenom = (wp[1].uiLog2WeightDenom - wp[0].uiLog2WeightDenom); |
---|
| 1920 | WRITE_SVLC( iDeltaDenom, "delta_chroma_log2_weight_denom" ); // se(v): delta_chroma_log2_weight_denom |
---|
| 1921 | } |
---|
| 1922 | bDenomCoded = true; |
---|
[2] | 1923 | } |
---|
| 1924 | |
---|
[56] | 1925 | WRITE_FLAG( wp[0].bPresentFlag, "luma_weight_lc_flag" ); // u(1): luma_weight_lc_flag |
---|
[2] | 1926 | |
---|
[56] | 1927 | if ( wp[0].bPresentFlag ) |
---|
| 1928 | { |
---|
| 1929 | Int iDeltaWeight = (wp[0].iWeight - (1<<wp[0].uiLog2WeightDenom)); |
---|
| 1930 | WRITE_SVLC( iDeltaWeight, "delta_luma_weight_lc" ); // se(v): delta_luma_weight_lc |
---|
| 1931 | WRITE_SVLC( wp[0].iOffset, "luma_offset_lc" ); // se(v): luma_offset_lc |
---|
| 1932 | } |
---|
| 1933 | if ( bChroma ) |
---|
| 1934 | { |
---|
| 1935 | WRITE_FLAG( wp[1].bPresentFlag, "chroma_weight_lc_flag" ); // u(1): luma_weight_lc_flag |
---|
[2] | 1936 | |
---|
[56] | 1937 | if ( wp[1].bPresentFlag ) |
---|
| 1938 | { |
---|
| 1939 | for ( Int j=1 ; j<3 ; j++ ) |
---|
| 1940 | { |
---|
| 1941 | Int iDeltaWeight = (wp[j].iWeight - (1<<wp[1].uiLog2WeightDenom)); |
---|
| 1942 | WRITE_SVLC( iDeltaWeight, "delta_chroma_weight_lc" ); // se(v): delta_chroma_weight_lc |
---|
[2] | 1943 | |
---|
[56] | 1944 | Int iDeltaChroma = (wp[j].iOffset + ( ( (g_uiIBDI_MAX>>1)*wp[j].iWeight)>>(wp[j].uiLog2WeightDenom) ) - (g_uiIBDI_MAX>>1)); |
---|
| 1945 | WRITE_SVLC( iDeltaChroma, "delta_chroma_offset_lc" ); // se(v): delta_chroma_offset_lc |
---|
| 1946 | } |
---|
| 1947 | } |
---|
| 1948 | } |
---|
[2] | 1949 | } |
---|
| 1950 | } |
---|
[56] | 1951 | } |
---|
[2] | 1952 | |
---|
[56] | 1953 | /** code quantization matrix |
---|
| 1954 | * \param scalingList quantization matrix information |
---|
| 1955 | */ |
---|
| 1956 | Void TEncCavlc::codeScalingList( TComScalingList* scalingList ) |
---|
| 1957 | { |
---|
| 1958 | UInt listId,sizeId; |
---|
| 1959 | Bool scalingListPredModeFlag; |
---|
[2] | 1960 | |
---|
[56] | 1961 | #if SCALING_LIST_OUTPUT_RESULT |
---|
| 1962 | Int startBit; |
---|
| 1963 | Int startTotalBit; |
---|
| 1964 | startBit = m_pcBitIf->getNumberOfWrittenBits(); |
---|
| 1965 | startTotalBit = m_pcBitIf->getNumberOfWrittenBits(); |
---|
[2] | 1966 | #endif |
---|
| 1967 | |
---|
[56] | 1968 | WRITE_FLAG( scalingList->getScalingListPresentFlag (), "scaling_list_present_flag" ); |
---|
| 1969 | |
---|
| 1970 | if(scalingList->getScalingListPresentFlag () == false) |
---|
[2] | 1971 | { |
---|
[56] | 1972 | #if SCALING_LIST_OUTPUT_RESULT |
---|
| 1973 | printf("Header Bit %d\n",m_pcBitIf->getNumberOfWrittenBits()-startBit); |
---|
[2] | 1974 | #endif |
---|
[56] | 1975 | //for each size |
---|
| 1976 | for(sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++) |
---|
[2] | 1977 | { |
---|
[56] | 1978 | for(listId = 0; listId < g_scalingListNum[sizeId]; listId++) |
---|
[2] | 1979 | { |
---|
[56] | 1980 | #if SCALING_LIST_OUTPUT_RESULT |
---|
| 1981 | startBit = m_pcBitIf->getNumberOfWrittenBits(); |
---|
[2] | 1982 | #endif |
---|
[56] | 1983 | scalingListPredModeFlag = scalingList->checkPredMode( sizeId, listId ); |
---|
| 1984 | WRITE_FLAG( scalingListPredModeFlag, "scaling_list_pred_mode_flag" ); |
---|
| 1985 | if(!scalingListPredModeFlag)// Copy Mode |
---|
[2] | 1986 | { |
---|
[56] | 1987 | WRITE_UVLC( (Int)listId - (Int)scalingList->getRefMatrixId (sizeId,listId) - 1, "scaling_list_pred_matrix_id_delta"); |
---|
[2] | 1988 | } |
---|
[56] | 1989 | else// DPCM Mode |
---|
[2] | 1990 | { |
---|
[56] | 1991 | xCodeScalingList(scalingList, sizeId, listId); |
---|
[2] | 1992 | } |
---|
[56] | 1993 | #if SCALING_LIST_OUTPUT_RESULT |
---|
| 1994 | printf("Matrix [%d][%d] Bit %d\n",sizeId,listId,m_pcBitIf->getNumberOfWrittenBits() - startBit); |
---|
[2] | 1995 | #endif |
---|
| 1996 | } |
---|
| 1997 | } |
---|
| 1998 | } |
---|
[56] | 1999 | #if SCALING_LIST_OUTPUT_RESULT |
---|
| 2000 | else |
---|
[2] | 2001 | { |
---|
[56] | 2002 | printf("Header Bit %d\n",m_pcBitIf->getNumberOfWrittenBits()-startTotalBit); |
---|
[2] | 2003 | } |
---|
[56] | 2004 | printf("Total Bit %d\n",m_pcBitIf->getNumberOfWrittenBits()-startTotalBit); |
---|
| 2005 | #endif |
---|
[2] | 2006 | return; |
---|
| 2007 | } |
---|
[56] | 2008 | /** code DPCM |
---|
| 2009 | * \param scalingList quantization matrix information |
---|
| 2010 | * \param sizeIdc size index |
---|
| 2011 | * \param listIdc list index |
---|
| 2012 | */ |
---|
| 2013 | Void TEncCavlc::xCodeScalingList(TComScalingList* scalingList, UInt sizeId, UInt listId) |
---|
[2] | 2014 | { |
---|
[56] | 2015 | #if SCALING_LIST |
---|
| 2016 | Int coefNum = min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId]); |
---|
| 2017 | UInt* scan = g_auiFrameScanXY [ (sizeId == 0)? 1 : 2]; |
---|
[2] | 2018 | #else |
---|
[56] | 2019 | Int coefNum = (Int)g_scalingListSize[sizeId]; |
---|
| 2020 | UInt* scan = g_auiFrameScanXY [ sizeId + 1]; |
---|
[2] | 2021 | #endif |
---|
[56] | 2022 | Int nextCoef = SCALING_LIST_START_VALUE; |
---|
| 2023 | Int data; |
---|
| 2024 | Int *src = scalingList->getScalingListAddress(sizeId, listId); |
---|
| 2025 | #if SCALING_LIST |
---|
| 2026 | if(sizeId > SCALING_LIST_8x8 && scalingList->getUseDefaultScalingMatrixFlag(sizeId,listId)) |
---|
[2] | 2027 | { |
---|
[56] | 2028 | WRITE_SVLC( -8, "scaling_list_dc_coef_minus8"); |
---|
[2] | 2029 | } |
---|
[56] | 2030 | else if(sizeId < SCALING_LIST_16x16 && scalingList->getUseDefaultScalingMatrixFlag(sizeId,listId)) |
---|
[2] | 2031 | { |
---|
[56] | 2032 | WRITE_SVLC( -8, "scaling_list_delta_coef"); |
---|
[2] | 2033 | } |
---|
[56] | 2034 | else |
---|
[2] | 2035 | { |
---|
[56] | 2036 | if( sizeId > SCALING_LIST_8x8 ) |
---|
[2] | 2037 | { |
---|
[56] | 2038 | WRITE_SVLC( scalingList->getScalingListDC(sizeId,listId) - 8, "scaling_list_dc_coef_minus8"); |
---|
[2] | 2039 | } |
---|
[56] | 2040 | for(Int i=0;i<coefNum;i++) |
---|
[2] | 2041 | { |
---|
[56] | 2042 | data = src[scan[i]] - nextCoef; |
---|
| 2043 | nextCoef = src[scan[i]]; |
---|
| 2044 | if(data > 127) |
---|
[2] | 2045 | { |
---|
[56] | 2046 | data = data - 256; |
---|
[2] | 2047 | } |
---|
[56] | 2048 | if(data < -128) |
---|
[2] | 2049 | { |
---|
[56] | 2050 | data = data + 256; |
---|
[2] | 2051 | } |
---|
| 2052 | |
---|
[56] | 2053 | WRITE_SVLC( data, "scaling_list_delta_coef"); |
---|
[2] | 2054 | } |
---|
| 2055 | } |
---|
[56] | 2056 | #else |
---|
| 2057 | for(Int i=0;i<coefNum;i++) |
---|
[2] | 2058 | { |
---|
[56] | 2059 | data = src[scan[i]] - nextCoef; |
---|
| 2060 | nextCoef = src[scan[i]]; |
---|
| 2061 | if(data > 127) |
---|
[2] | 2062 | { |
---|
[56] | 2063 | data = data - 256; |
---|
[2] | 2064 | } |
---|
[56] | 2065 | if(data < -128) |
---|
[2] | 2066 | { |
---|
[56] | 2067 | data = data + 256; |
---|
[2] | 2068 | } |
---|
[56] | 2069 | |
---|
| 2070 | WRITE_SVLC( data, "delta_coef"); |
---|
[2] | 2071 | } |
---|
[56] | 2072 | #endif |
---|
[2] | 2073 | } |
---|
[56] | 2074 | Bool TComScalingList::checkPredMode(UInt sizeId, UInt listId) |
---|
| 2075 | { |
---|
| 2076 | for(Int predListIdx = (Int)listId -1 ; predListIdx >= 0; predListIdx--) |
---|
| 2077 | { |
---|
| 2078 | #if SCALING_LIST |
---|
| 2079 | if( !memcmp(getScalingListAddress(sizeId,listId),getScalingListAddress(sizeId, predListIdx),sizeof(Int)*min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId])) // check value of matrix |
---|
| 2080 | && ((sizeId < SCALING_LIST_16x16) || (getScalingListDC(sizeId,listId) == getScalingListDC(sizeId,predListIdx)))) // check DC value |
---|
| 2081 | #else |
---|
| 2082 | if( !memcmp(getScalingListAddress(sizeId,listId),getScalingListAddress(sizeId, predListIdx),sizeof(Int)*(Int)g_scalingListSize[sizeId])) // check value of matrix |
---|
[2] | 2083 | #endif |
---|
[56] | 2084 | { |
---|
| 2085 | setRefMatrixId(sizeId, listId, predListIdx); |
---|
| 2086 | return false; |
---|
[2] | 2087 | } |
---|
| 2088 | } |
---|
[56] | 2089 | return true; |
---|
[2] | 2090 | } |
---|
[177] | 2091 | |
---|
| 2092 | #if RWTH_SDC_DLT_B0036 |
---|
| 2093 | Void TEncCavlc::codeSDCFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
| 2094 | { |
---|
| 2095 | assert(0); |
---|
| 2096 | } |
---|
| 2097 | |
---|
| 2098 | Void TEncCavlc::codeSDCResidualData ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiSegment ) |
---|
| 2099 | { |
---|
| 2100 | assert(0); |
---|
| 2101 | } |
---|
| 2102 | |
---|
| 2103 | Void TEncCavlc::codeSDCPredMode ( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
| 2104 | { |
---|
| 2105 | assert(0); |
---|
| 2106 | } |
---|
| 2107 | #endif |
---|
[56] | 2108 | //! \} |
---|