[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 | * |
---|
[872] | 6 | * Copyright (c) 2010-2014, 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 TEncEntropy.cpp |
---|
| 35 | \brief entropy encoder class |
---|
| 36 | */ |
---|
| 37 | |
---|
| 38 | #include "TEncEntropy.h" |
---|
[56] | 39 | #include "TLibCommon/TypeDef.h" |
---|
| 40 | #include "TLibCommon/TComSampleAdaptiveOffset.h" |
---|
[2] | 41 | |
---|
[56] | 42 | //! \ingroup TLibEncoder |
---|
| 43 | //! \{ |
---|
| 44 | |
---|
[2] | 45 | Void TEncEntropy::setEntropyCoder ( TEncEntropyIf* e, TComSlice* pcSlice ) |
---|
| 46 | { |
---|
| 47 | m_pcEntropyCoderIf = e; |
---|
| 48 | m_pcEntropyCoderIf->setSlice ( pcSlice ); |
---|
| 49 | } |
---|
| 50 | |
---|
| 51 | Void TEncEntropy::encodeSliceHeader ( TComSlice* pcSlice ) |
---|
| 52 | { |
---|
| 53 | m_pcEntropyCoderIf->codeSliceHeader( pcSlice ); |
---|
| 54 | return; |
---|
| 55 | } |
---|
| 56 | |
---|
[56] | 57 | Void TEncEntropy::encodeTilesWPPEntryPoint( TComSlice* pSlice ) |
---|
| 58 | { |
---|
| 59 | m_pcEntropyCoderIf->codeTilesWPPEntryPoint( pSlice ); |
---|
| 60 | } |
---|
| 61 | |
---|
[2] | 62 | Void TEncEntropy::encodeTerminatingBit ( UInt uiIsLast ) |
---|
| 63 | { |
---|
| 64 | m_pcEntropyCoderIf->codeTerminatingBit( uiIsLast ); |
---|
| 65 | |
---|
| 66 | return; |
---|
| 67 | } |
---|
| 68 | |
---|
| 69 | Void TEncEntropy::encodeSliceFinish() |
---|
| 70 | { |
---|
| 71 | m_pcEntropyCoderIf->codeSliceFinish(); |
---|
| 72 | } |
---|
| 73 | |
---|
| 74 | Void TEncEntropy::encodePPS( TComPPS* pcPPS ) |
---|
| 75 | { |
---|
| 76 | m_pcEntropyCoderIf->codePPS( pcPPS ); |
---|
| 77 | return; |
---|
| 78 | } |
---|
| 79 | |
---|
[608] | 80 | #if H_3D |
---|
| 81 | Void TEncEntropy::encodeSPS( TComSPS* pcSPS, Int viewIndex, Bool depthFlag ) |
---|
[77] | 82 | { |
---|
[608] | 83 | m_pcEntropyCoderIf->codeSPS( pcSPS, viewIndex, depthFlag ); |
---|
[77] | 84 | return; |
---|
| 85 | } |
---|
[56] | 86 | #else |
---|
[2] | 87 | Void TEncEntropy::encodeSPS( TComSPS* pcSPS ) |
---|
| 88 | { |
---|
| 89 | m_pcEntropyCoderIf->codeSPS( pcSPS ); |
---|
| 90 | return; |
---|
| 91 | } |
---|
[56] | 92 | #endif |
---|
[2] | 93 | |
---|
[608] | 94 | Void TEncEntropy::encodeCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD ) |
---|
[2] | 95 | { |
---|
| 96 | if( bRD ) |
---|
[56] | 97 | { |
---|
[2] | 98 | uiAbsPartIdx = 0; |
---|
[56] | 99 | } |
---|
[608] | 100 | m_pcEntropyCoderIf->codeCUTransquantBypassFlag( pcCU, uiAbsPartIdx ); |
---|
[2] | 101 | } |
---|
| 102 | |
---|
[608] | 103 | Void TEncEntropy::encodeVPS( TComVPS* pcVPS ) |
---|
[189] | 104 | { |
---|
[608] | 105 | m_pcEntropyCoderIf->codeVPS( pcVPS ); |
---|
| 106 | return; |
---|
| 107 | } |
---|
| 108 | |
---|
| 109 | Void TEncEntropy::encodeSkipFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD ) |
---|
| 110 | { |
---|
| 111 | if ( pcCU->getSlice()->isIntra() ) |
---|
[189] | 112 | { |
---|
| 113 | return; |
---|
| 114 | } |
---|
| 115 | if( bRD ) |
---|
| 116 | { |
---|
| 117 | uiAbsPartIdx = 0; |
---|
| 118 | } |
---|
[608] | 119 | m_pcEntropyCoderIf->codeSkipFlag( pcCU, uiAbsPartIdx ); |
---|
[189] | 120 | } |
---|
| 121 | |
---|
[2] | 122 | /** encode merge flag |
---|
| 123 | * \param pcCU |
---|
| 124 | * \param uiAbsPartIdx |
---|
| 125 | * \returns Void |
---|
| 126 | */ |
---|
[608] | 127 | Void TEncEntropy::encodeMergeFlag( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
[2] | 128 | { |
---|
[56] | 129 | // at least one merge candidate exists |
---|
| 130 | m_pcEntropyCoderIf->codeMergeFlag( pcCU, uiAbsPartIdx ); |
---|
[2] | 131 | } |
---|
| 132 | |
---|
| 133 | /** encode merge index |
---|
| 134 | * \param pcCU |
---|
| 135 | * \param uiAbsPartIdx |
---|
| 136 | * \param uiPUIdx |
---|
| 137 | * \param bRD |
---|
| 138 | * \returns Void |
---|
| 139 | */ |
---|
[608] | 140 | Void TEncEntropy::encodeMergeIndex( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD ) |
---|
[2] | 141 | { |
---|
| 142 | if( bRD ) |
---|
| 143 | { |
---|
| 144 | uiAbsPartIdx = 0; |
---|
| 145 | assert( pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2Nx2N ); |
---|
| 146 | } |
---|
[608] | 147 | m_pcEntropyCoderIf->codeMergeIndex( pcCU, uiAbsPartIdx ); |
---|
[2] | 148 | } |
---|
| 149 | |
---|
[608] | 150 | #if H_3D_IC |
---|
| 151 | Void TEncEntropy::encodeICFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD ) |
---|
[443] | 152 | { |
---|
[833] | 153 | if ( pcCU->isIntra( uiAbsPartIdx ) || ( pcCU->getSlice()->getViewIndex() == 0 ) || pcCU->getSlice()->getIsDepth() || pcCU->getARPW( uiAbsPartIdx ) > 0 ) |
---|
[443] | 154 | { |
---|
| 155 | return; |
---|
| 156 | } |
---|
[608] | 157 | |
---|
| 158 | if( !pcCU->getSlice()->getApplyIC() ) |
---|
| 159 | return; |
---|
| 160 | |
---|
[443] | 161 | if( bRD ) |
---|
| 162 | { |
---|
| 163 | uiAbsPartIdx = 0; |
---|
| 164 | } |
---|
[608] | 165 | |
---|
| 166 | if( pcCU->isICFlagRequired( uiAbsPartIdx ) ) |
---|
| 167 | m_pcEntropyCoderIf->codeICFlag( pcCU, uiAbsPartIdx ); |
---|
[443] | 168 | } |
---|
| 169 | #endif |
---|
[2] | 170 | |
---|
[608] | 171 | #if H_3D_ARP |
---|
| 172 | Void TEncEntropy::encodeARPW( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
[56] | 173 | { |
---|
[608] | 174 | if( !pcCU->getSlice()->getARPStepNum() || pcCU->isIntra( uiAbsPartIdx ) ) |
---|
[56] | 175 | { |
---|
[608] | 176 | return; |
---|
[56] | 177 | } |
---|
| 178 | |
---|
[608] | 179 | if ( pcCU->getPartitionSize(uiAbsPartIdx)!=SIZE_2Nx2N ) |
---|
[56] | 180 | { |
---|
[608] | 181 | assert(pcCU->getARPW (uiAbsPartIdx) == 0); |
---|
[56] | 182 | } |
---|
[608] | 183 | else |
---|
[56] | 184 | { |
---|
[608] | 185 | m_pcEntropyCoderIf->codeARPW( pcCU, uiAbsPartIdx ); |
---|
[56] | 186 | } |
---|
| 187 | } |
---|
[608] | 188 | #endif |
---|
[56] | 189 | |
---|
[2] | 190 | /** encode prediction mode |
---|
| 191 | * \param pcCU |
---|
| 192 | * \param uiAbsPartIdx |
---|
| 193 | * \param bRD |
---|
| 194 | * \returns Void |
---|
| 195 | */ |
---|
| 196 | Void TEncEntropy::encodePredMode( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD ) |
---|
| 197 | { |
---|
| 198 | if( bRD ) |
---|
[56] | 199 | { |
---|
[2] | 200 | uiAbsPartIdx = 0; |
---|
[56] | 201 | } |
---|
[2] | 202 | if ( pcCU->getSlice()->isIntra() ) |
---|
| 203 | { |
---|
| 204 | return; |
---|
| 205 | } |
---|
[56] | 206 | |
---|
[2] | 207 | m_pcEntropyCoderIf->codePredMode( pcCU, uiAbsPartIdx ); |
---|
| 208 | } |
---|
| 209 | |
---|
| 210 | // Split mode |
---|
| 211 | Void TEncEntropy::encodeSplitFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, Bool bRD ) |
---|
| 212 | { |
---|
| 213 | if( bRD ) |
---|
[56] | 214 | { |
---|
[2] | 215 | uiAbsPartIdx = 0; |
---|
[56] | 216 | } |
---|
[2] | 217 | m_pcEntropyCoderIf->codeSplitFlag( pcCU, uiAbsPartIdx, uiDepth ); |
---|
| 218 | } |
---|
| 219 | |
---|
| 220 | /** encode partition size |
---|
| 221 | * \param pcCU |
---|
| 222 | * \param uiAbsPartIdx |
---|
| 223 | * \param uiDepth |
---|
| 224 | * \param bRD |
---|
| 225 | * \returns Void |
---|
| 226 | */ |
---|
| 227 | Void TEncEntropy::encodePartSize( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, Bool bRD ) |
---|
| 228 | { |
---|
| 229 | if( bRD ) |
---|
[56] | 230 | { |
---|
[2] | 231 | uiAbsPartIdx = 0; |
---|
[56] | 232 | } |
---|
[833] | 233 | |
---|
| 234 | #if H_3D_DBBP |
---|
| 235 | PartSize eVirtualPartSize = pcCU->getPartitionSize(uiAbsPartIdx); |
---|
| 236 | if( pcCU->getDBBPFlag(uiAbsPartIdx) ) |
---|
| 237 | { |
---|
| 238 | AOF( pcCU->getSlice()->getVPS()->getUseDBBP(pcCU->getSlice()->getLayerIdInVps()) ); |
---|
| 239 | |
---|
| 240 | // temporarily change partition size for DBBP blocks |
---|
| 241 | pcCU->setPartSizeSubParts(RWTH_DBBP_PACK_MODE, uiAbsPartIdx, uiDepth); |
---|
| 242 | } |
---|
| 243 | #endif |
---|
| 244 | |
---|
[2] | 245 | m_pcEntropyCoderIf->codePartSize( pcCU, uiAbsPartIdx, uiDepth ); |
---|
[833] | 246 | |
---|
| 247 | #if H_3D_DBBP |
---|
| 248 | if( pcCU->getSlice()->getVPS()->getUseDBBP(pcCU->getSlice()->getLayerIdInVps()) && pcCU->getPartitionSize(uiAbsPartIdx) == RWTH_DBBP_PACK_MODE ) |
---|
| 249 | { |
---|
| 250 | encodeDBBPFlag(pcCU, uiAbsPartIdx, bRD); |
---|
| 251 | |
---|
| 252 | if( pcCU->getDBBPFlag(uiAbsPartIdx) ) |
---|
| 253 | { |
---|
| 254 | AOF( pcCU->getPartitionSize(uiAbsPartIdx) == RWTH_DBBP_PACK_MODE ); |
---|
| 255 | // restore virtual partition size for DBBP blocks |
---|
| 256 | pcCU->setPartSizeSubParts(eVirtualPartSize, uiAbsPartIdx, uiDepth); |
---|
| 257 | } |
---|
| 258 | } |
---|
| 259 | #endif |
---|
[2] | 260 | } |
---|
| 261 | |
---|
[56] | 262 | /** Encode I_PCM information. |
---|
| 263 | * \param pcCU pointer to CU |
---|
| 264 | * \param uiAbsPartIdx CU index |
---|
| 265 | * \param bRD flag indicating estimation or encoding |
---|
| 266 | * \returns Void |
---|
| 267 | */ |
---|
| 268 | Void TEncEntropy::encodeIPCMInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD ) |
---|
[2] | 269 | { |
---|
[56] | 270 | if(!pcCU->getSlice()->getSPS()->getUsePCM() |
---|
| 271 | || pcCU->getWidth(uiAbsPartIdx) > (1<<pcCU->getSlice()->getSPS()->getPCMLog2MaxSize()) |
---|
| 272 | || pcCU->getWidth(uiAbsPartIdx) < (1<<pcCU->getSlice()->getSPS()->getPCMLog2MinSize())) |
---|
| 273 | { |
---|
| 274 | return; |
---|
| 275 | } |
---|
[608] | 276 | #if H_3D_DIM_SDC |
---|
[189] | 277 | if( pcCU->getSDCFlag(uiAbsPartIdx) ) |
---|
| 278 | { |
---|
| 279 | return; |
---|
| 280 | } |
---|
| 281 | #endif |
---|
| 282 | |
---|
[56] | 283 | if( bRD ) |
---|
| 284 | { |
---|
| 285 | uiAbsPartIdx = 0; |
---|
| 286 | } |
---|
| 287 | |
---|
[608] | 288 | m_pcEntropyCoderIf->codeIPCMInfo ( pcCU, uiAbsPartIdx ); |
---|
[56] | 289 | } |
---|
| 290 | |
---|
[608] | 291 | Void TEncEntropy::xEncodeTransform( TComDataCU* pcCU,UInt offsetLuma, UInt offsetChroma, UInt uiAbsPartIdx, UInt uiDepth, UInt width, UInt height, UInt uiTrIdx, Bool& bCodeDQP ) |
---|
[56] | 292 | { |
---|
[2] | 293 | const UInt uiSubdiv = pcCU->getTransformIdx( uiAbsPartIdx ) + pcCU->getDepth( uiAbsPartIdx ) > uiDepth; |
---|
| 294 | const UInt uiLog2TrafoSize = g_aucConvertToBit[pcCU->getSlice()->getSPS()->getMaxCUWidth()]+2 - uiDepth; |
---|
[56] | 295 | UInt cbfY = pcCU->getCbf( uiAbsPartIdx, TEXT_LUMA , uiTrIdx ); |
---|
| 296 | UInt cbfU = pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrIdx ); |
---|
| 297 | UInt cbfV = pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrIdx ); |
---|
| 298 | |
---|
| 299 | if(uiTrIdx==0) |
---|
[2] | 300 | { |
---|
[56] | 301 | m_bakAbsPartIdxCU = uiAbsPartIdx; |
---|
[2] | 302 | } |
---|
[56] | 303 | if( uiLog2TrafoSize == 2 ) |
---|
[2] | 304 | { |
---|
[56] | 305 | UInt partNum = pcCU->getPic()->getNumPartInCU() >> ( ( uiDepth - 1 ) << 1 ); |
---|
| 306 | if( ( uiAbsPartIdx % partNum ) == 0 ) |
---|
| 307 | { |
---|
| 308 | m_uiBakAbsPartIdx = uiAbsPartIdx; |
---|
| 309 | m_uiBakChromaOffset = offsetChroma; |
---|
| 310 | } |
---|
| 311 | else if( ( uiAbsPartIdx % partNum ) == (partNum - 1) ) |
---|
| 312 | { |
---|
| 313 | cbfU = pcCU->getCbf( m_uiBakAbsPartIdx, TEXT_CHROMA_U, uiTrIdx ); |
---|
| 314 | cbfV = pcCU->getCbf( m_uiBakAbsPartIdx, TEXT_CHROMA_V, uiTrIdx ); |
---|
| 315 | } |
---|
[2] | 316 | } |
---|
[608] | 317 | |
---|
| 318 | if( pcCU->getPredictionMode(uiAbsPartIdx) == MODE_INTRA && pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_NxN && uiDepth == pcCU->getDepth(uiAbsPartIdx) ) |
---|
| 319 | { |
---|
| 320 | assert( uiSubdiv ); |
---|
| 321 | } |
---|
| 322 | else if( pcCU->getPredictionMode(uiAbsPartIdx) == MODE_INTER && (pcCU->getPartitionSize(uiAbsPartIdx) != SIZE_2Nx2N) && uiDepth == pcCU->getDepth(uiAbsPartIdx) && (pcCU->getSlice()->getSPS()->getQuadtreeTUMaxDepthInter() == 1) ) |
---|
| 323 | { |
---|
| 324 | if ( uiLog2TrafoSize > pcCU->getQuadtreeTULog2MinSizeInCU(uiAbsPartIdx) ) |
---|
[2] | 325 | { |
---|
| 326 | assert( uiSubdiv ); |
---|
| 327 | } |
---|
[608] | 328 | else |
---|
[56] | 329 | { |
---|
[608] | 330 | assert(!uiSubdiv ); |
---|
[56] | 331 | } |
---|
[608] | 332 | } |
---|
| 333 | else if( uiLog2TrafoSize > pcCU->getSlice()->getSPS()->getQuadtreeTULog2MaxSize() ) |
---|
| 334 | { |
---|
| 335 | assert( uiSubdiv ); |
---|
| 336 | } |
---|
| 337 | else if( uiLog2TrafoSize == pcCU->getSlice()->getSPS()->getQuadtreeTULog2MinSize() ) |
---|
| 338 | { |
---|
| 339 | assert( !uiSubdiv ); |
---|
| 340 | } |
---|
| 341 | else if( uiLog2TrafoSize == pcCU->getQuadtreeTULog2MinSizeInCU(uiAbsPartIdx) ) |
---|
| 342 | { |
---|
| 343 | assert( !uiSubdiv ); |
---|
| 344 | } |
---|
| 345 | else |
---|
| 346 | { |
---|
| 347 | assert( uiLog2TrafoSize > pcCU->getQuadtreeTULog2MinSizeInCU(uiAbsPartIdx) ); |
---|
| 348 | m_pcEntropyCoderIf->codeTransformSubdivFlag( uiSubdiv, 5 - uiLog2TrafoSize ); |
---|
| 349 | } |
---|
| 350 | |
---|
| 351 | const UInt uiTrDepthCurr = uiDepth - pcCU->getDepth( uiAbsPartIdx ); |
---|
| 352 | const Bool bFirstCbfOfCU = uiTrDepthCurr == 0; |
---|
| 353 | if( bFirstCbfOfCU || uiLog2TrafoSize > 2 ) |
---|
| 354 | { |
---|
| 355 | if( bFirstCbfOfCU || pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepthCurr - 1 ) ) |
---|
[56] | 356 | { |
---|
[608] | 357 | m_pcEntropyCoderIf->codeQtCbf( pcCU, uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepthCurr ); |
---|
[56] | 358 | } |
---|
[608] | 359 | if( bFirstCbfOfCU || pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepthCurr - 1 ) ) |
---|
[2] | 360 | { |
---|
[608] | 361 | m_pcEntropyCoderIf->codeQtCbf( pcCU, uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepthCurr ); |
---|
[2] | 362 | } |
---|
[608] | 363 | } |
---|
| 364 | else if( uiLog2TrafoSize == 2 ) |
---|
| 365 | { |
---|
| 366 | assert( pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepthCurr ) == pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepthCurr - 1 ) ); |
---|
| 367 | assert( pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepthCurr ) == pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepthCurr - 1 ) ); |
---|
| 368 | } |
---|
| 369 | |
---|
| 370 | if( uiSubdiv ) |
---|
| 371 | { |
---|
| 372 | UInt size; |
---|
| 373 | width >>= 1; |
---|
| 374 | height >>= 1; |
---|
| 375 | size = width*height; |
---|
| 376 | uiTrIdx++; |
---|
| 377 | ++uiDepth; |
---|
| 378 | const UInt partNum = pcCU->getPic()->getNumPartInCU() >> (uiDepth << 1); |
---|
| 379 | |
---|
| 380 | xEncodeTransform( pcCU, offsetLuma, offsetChroma, uiAbsPartIdx, uiDepth, width, height, uiTrIdx, bCodeDQP ); |
---|
| 381 | |
---|
| 382 | uiAbsPartIdx += partNum; offsetLuma += size; offsetChroma += (size>>2); |
---|
| 383 | xEncodeTransform( pcCU, offsetLuma, offsetChroma, uiAbsPartIdx, uiDepth, width, height, uiTrIdx, bCodeDQP ); |
---|
| 384 | |
---|
| 385 | uiAbsPartIdx += partNum; offsetLuma += size; offsetChroma += (size>>2); |
---|
| 386 | xEncodeTransform( pcCU, offsetLuma, offsetChroma, uiAbsPartIdx, uiDepth, width, height, uiTrIdx, bCodeDQP ); |
---|
| 387 | |
---|
| 388 | uiAbsPartIdx += partNum; offsetLuma += size; offsetChroma += (size>>2); |
---|
| 389 | xEncodeTransform( pcCU, offsetLuma, offsetChroma, uiAbsPartIdx, uiDepth, width, height, uiTrIdx, bCodeDQP ); |
---|
| 390 | } |
---|
| 391 | else |
---|
| 392 | { |
---|
| 393 | #if !H_MV_ENC_DEC_TRAC |
---|
[2] | 394 | { |
---|
[608] | 395 | DTRACE_CABAC_VL( g_nSymbolCounter++ ); |
---|
| 396 | DTRACE_CABAC_T( "\tTrIdx: abspart=" ); |
---|
| 397 | DTRACE_CABAC_V( uiAbsPartIdx ); |
---|
| 398 | DTRACE_CABAC_T( "\tdepth=" ); |
---|
| 399 | DTRACE_CABAC_V( uiDepth ); |
---|
| 400 | DTRACE_CABAC_T( "\ttrdepth=" ); |
---|
| 401 | DTRACE_CABAC_V( pcCU->getTransformIdx( uiAbsPartIdx ) ); |
---|
| 402 | DTRACE_CABAC_T( "\n" ); |
---|
[2] | 403 | } |
---|
[608] | 404 | #endif |
---|
| 405 | |
---|
| 406 | if( pcCU->getPredictionMode(uiAbsPartIdx) != MODE_INTRA && uiDepth == pcCU->getDepth( uiAbsPartIdx ) && !pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, 0 ) && !pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, 0 ) ) |
---|
| 407 | { |
---|
| 408 | assert( pcCU->getCbf( uiAbsPartIdx, TEXT_LUMA, 0 ) ); |
---|
| 409 | // printf( "saved one bin! " ); |
---|
| 410 | } |
---|
[2] | 411 | else |
---|
| 412 | { |
---|
[608] | 413 | m_pcEntropyCoderIf->codeQtCbf( pcCU, uiAbsPartIdx, TEXT_LUMA, pcCU->getTransformIdx( uiAbsPartIdx ) ); |
---|
[2] | 414 | } |
---|
[56] | 415 | |
---|
[608] | 416 | |
---|
| 417 | if ( cbfY || cbfU || cbfV ) |
---|
[2] | 418 | { |
---|
[608] | 419 | // dQP: only for LCU once |
---|
| 420 | if ( pcCU->getSlice()->getPPS()->getUseDQP() ) |
---|
[2] | 421 | { |
---|
[608] | 422 | if ( bCodeDQP ) |
---|
[2] | 423 | { |
---|
[608] | 424 | encodeQP( pcCU, m_bakAbsPartIdxCU ); |
---|
| 425 | bCodeDQP = false; |
---|
[2] | 426 | } |
---|
| 427 | } |
---|
| 428 | } |
---|
[608] | 429 | if( cbfY ) |
---|
[2] | 430 | { |
---|
[608] | 431 | Int trWidth = width; |
---|
| 432 | Int trHeight = height; |
---|
| 433 | m_pcEntropyCoderIf->codeCoeffNxN( pcCU, (pcCU->getCoeffY()+offsetLuma), uiAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_LUMA ); |
---|
[2] | 434 | } |
---|
[608] | 435 | if( uiLog2TrafoSize > 2 ) |
---|
[2] | 436 | { |
---|
[608] | 437 | Int trWidth = width >> 1; |
---|
| 438 | Int trHeight = height >> 1; |
---|
| 439 | if( cbfU ) |
---|
[2] | 440 | { |
---|
[608] | 441 | m_pcEntropyCoderIf->codeCoeffNxN( pcCU, (pcCU->getCoeffCb()+offsetChroma), uiAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_CHROMA_U ); |
---|
[2] | 442 | } |
---|
[608] | 443 | if( cbfV ) |
---|
[56] | 444 | { |
---|
[608] | 445 | m_pcEntropyCoderIf->codeCoeffNxN( pcCU, (pcCU->getCoeffCr()+offsetChroma), uiAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_CHROMA_V ); |
---|
[56] | 446 | } |
---|
[608] | 447 | } |
---|
| 448 | else |
---|
| 449 | { |
---|
| 450 | UInt partNum = pcCU->getPic()->getNumPartInCU() >> ( ( uiDepth - 1 ) << 1 ); |
---|
| 451 | if( ( uiAbsPartIdx % partNum ) == (partNum - 1) ) |
---|
[2] | 452 | { |
---|
[56] | 453 | Int trWidth = width; |
---|
| 454 | Int trHeight = height; |
---|
| 455 | if( cbfU ) |
---|
[2] | 456 | { |
---|
[608] | 457 | m_pcEntropyCoderIf->codeCoeffNxN( pcCU, (pcCU->getCoeffCb()+m_uiBakChromaOffset), m_uiBakAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_CHROMA_U ); |
---|
[2] | 458 | } |
---|
[56] | 459 | if( cbfV ) |
---|
| 460 | { |
---|
[608] | 461 | m_pcEntropyCoderIf->codeCoeffNxN( pcCU, (pcCU->getCoeffCr()+m_uiBakChromaOffset), m_uiBakAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_CHROMA_V ); |
---|
[56] | 462 | } |
---|
[2] | 463 | } |
---|
| 464 | } |
---|
| 465 | } |
---|
| 466 | } |
---|
| 467 | |
---|
| 468 | // Intra direction for Luma |
---|
[608] | 469 | Void TEncEntropy::encodeIntraDirModeLuma ( TComDataCU* pcCU, UInt absPartIdx, Bool isMultiplePU ) |
---|
[2] | 470 | { |
---|
[608] | 471 | m_pcEntropyCoderIf->codeIntraDirLumaAng( pcCU, absPartIdx , isMultiplePU); |
---|
[2] | 472 | } |
---|
| 473 | |
---|
| 474 | // Intra direction for Chroma |
---|
| 475 | Void TEncEntropy::encodeIntraDirModeChroma( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD ) |
---|
| 476 | { |
---|
| 477 | if( bRD ) |
---|
[56] | 478 | { |
---|
[2] | 479 | uiAbsPartIdx = 0; |
---|
[56] | 480 | } |
---|
[2] | 481 | |
---|
| 482 | m_pcEntropyCoderIf->codeIntraDirChroma( pcCU, uiAbsPartIdx ); |
---|
| 483 | } |
---|
| 484 | |
---|
[608] | 485 | Void TEncEntropy::encodePredInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD ) |
---|
[2] | 486 | { |
---|
| 487 | if( bRD ) |
---|
[56] | 488 | { |
---|
[2] | 489 | uiAbsPartIdx = 0; |
---|
[56] | 490 | } |
---|
[2] | 491 | if( pcCU->isIntra( uiAbsPartIdx ) ) // If it is Intra mode, encode intra prediction mode. |
---|
| 492 | { |
---|
[608] | 493 | encodeIntraDirModeLuma ( pcCU, uiAbsPartIdx,true ); |
---|
| 494 | #if H_3D_DIM_SDC |
---|
| 495 | if(!pcCU->getSDCFlag(uiAbsPartIdx)) |
---|
[443] | 496 | #endif |
---|
[608] | 497 | encodeIntraDirModeChroma( pcCU, uiAbsPartIdx, bRD ); |
---|
[2] | 498 | } |
---|
| 499 | else // if it is Inter mode, encode motion vector and reference index |
---|
| 500 | { |
---|
[56] | 501 | encodePUWise( pcCU, uiAbsPartIdx, bRD ); |
---|
[2] | 502 | } |
---|
| 503 | } |
---|
| 504 | |
---|
| 505 | /** encode motion information for every PU block |
---|
| 506 | * \param pcCU |
---|
| 507 | * \param uiAbsPartIdx |
---|
| 508 | * \param bRD |
---|
| 509 | * \returns Void |
---|
| 510 | */ |
---|
| 511 | Void TEncEntropy::encodePUWise( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD ) |
---|
| 512 | { |
---|
| 513 | if ( bRD ) |
---|
[56] | 514 | { |
---|
[2] | 515 | uiAbsPartIdx = 0; |
---|
[56] | 516 | } |
---|
| 517 | |
---|
[2] | 518 | PartSize ePartSize = pcCU->getPartitionSize( uiAbsPartIdx ); |
---|
| 519 | UInt uiNumPU = ( ePartSize == SIZE_2Nx2N ? 1 : ( ePartSize == SIZE_NxN ? 4 : 2 ) ); |
---|
| 520 | UInt uiDepth = pcCU->getDepth( uiAbsPartIdx ); |
---|
| 521 | UInt uiPUOffset = ( g_auiPUOffset[UInt( ePartSize )] << ( ( pcCU->getSlice()->getSPS()->getMaxCUDepth() - uiDepth ) << 1 ) ) >> 4; |
---|
| 522 | |
---|
| 523 | for ( UInt uiPartIdx = 0, uiSubPartIdx = uiAbsPartIdx; uiPartIdx < uiNumPU; uiPartIdx++, uiSubPartIdx += uiPUOffset ) |
---|
| 524 | { |
---|
[608] | 525 | #if H_MV_ENC_DEC_TRAC |
---|
| 526 | DTRACE_PU_S("=========== prediction_unit ===========\n") |
---|
| 527 | //Todo: |
---|
| 528 | //DTRACE_PU("x0", uiLPelX) |
---|
| 529 | //DTRACE_PU("x1", uiTPelY) |
---|
| 530 | #endif |
---|
| 531 | encodeMergeFlag( pcCU, uiSubPartIdx ); |
---|
[2] | 532 | if ( pcCU->getMergeFlag( uiSubPartIdx ) ) |
---|
| 533 | { |
---|
[608] | 534 | encodeMergeIndex( pcCU, uiSubPartIdx ); |
---|
[2] | 535 | } |
---|
| 536 | else |
---|
| 537 | { |
---|
| 538 | encodeInterDirPU( pcCU, uiSubPartIdx ); |
---|
| 539 | for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ ) |
---|
| 540 | { |
---|
| 541 | if ( pcCU->getSlice()->getNumRefIdx( RefPicList( uiRefListIdx ) ) > 0 ) |
---|
| 542 | { |
---|
| 543 | encodeRefFrmIdxPU ( pcCU, uiSubPartIdx, RefPicList( uiRefListIdx ) ); |
---|
| 544 | encodeMvdPU ( pcCU, uiSubPartIdx, RefPicList( uiRefListIdx ) ); |
---|
| 545 | encodeMVPIdxPU ( pcCU, uiSubPartIdx, RefPicList( uiRefListIdx ) ); |
---|
| 546 | } |
---|
| 547 | } |
---|
| 548 | } |
---|
| 549 | } |
---|
| 550 | |
---|
| 551 | return; |
---|
| 552 | } |
---|
| 553 | |
---|
| 554 | Void TEncEntropy::encodeInterDirPU( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
| 555 | { |
---|
| 556 | if ( !pcCU->getSlice()->isInterB() ) |
---|
| 557 | { |
---|
| 558 | return; |
---|
| 559 | } |
---|
| 560 | |
---|
| 561 | m_pcEntropyCoderIf->codeInterDir( pcCU, uiAbsPartIdx ); |
---|
| 562 | return; |
---|
| 563 | } |
---|
| 564 | |
---|
| 565 | /** encode reference frame index for a PU block |
---|
| 566 | * \param pcCU |
---|
| 567 | * \param uiAbsPartIdx |
---|
| 568 | * \param eRefList |
---|
| 569 | * \returns Void |
---|
| 570 | */ |
---|
| 571 | Void TEncEntropy::encodeRefFrmIdxPU( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ) |
---|
| 572 | { |
---|
| 573 | assert( !pcCU->isIntra( uiAbsPartIdx ) ); |
---|
| 574 | { |
---|
[56] | 575 | if ( ( pcCU->getSlice()->getNumRefIdx( eRefList ) == 1 ) ) |
---|
| 576 | { |
---|
| 577 | return; |
---|
| 578 | } |
---|
[2] | 579 | |
---|
[56] | 580 | if ( pcCU->getInterDir( uiAbsPartIdx ) & ( 1 << eRefList ) ) |
---|
| 581 | { |
---|
| 582 | m_pcEntropyCoderIf->codeRefFrmIdx( pcCU, uiAbsPartIdx, eRefList ); |
---|
| 583 | } |
---|
[2] | 584 | } |
---|
| 585 | |
---|
| 586 | return; |
---|
| 587 | } |
---|
| 588 | |
---|
| 589 | /** encode motion vector difference for a PU block |
---|
| 590 | * \param pcCU |
---|
| 591 | * \param uiAbsPartIdx |
---|
| 592 | * \param eRefList |
---|
| 593 | * \returns Void |
---|
| 594 | */ |
---|
| 595 | Void TEncEntropy::encodeMvdPU( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ) |
---|
| 596 | { |
---|
| 597 | assert( !pcCU->isIntra( uiAbsPartIdx ) ); |
---|
| 598 | |
---|
| 599 | if ( pcCU->getInterDir( uiAbsPartIdx ) & ( 1 << eRefList ) ) |
---|
| 600 | { |
---|
| 601 | m_pcEntropyCoderIf->codeMvd( pcCU, uiAbsPartIdx, eRefList ); |
---|
| 602 | } |
---|
| 603 | return; |
---|
| 604 | } |
---|
| 605 | |
---|
| 606 | Void TEncEntropy::encodeMVPIdxPU( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ) |
---|
| 607 | { |
---|
[608] | 608 | if ( (pcCU->getInterDir( uiAbsPartIdx ) & ( 1 << eRefList )) ) |
---|
[2] | 609 | { |
---|
| 610 | m_pcEntropyCoderIf->codeMVPIdx( pcCU, uiAbsPartIdx, eRefList ); |
---|
| 611 | } |
---|
| 612 | |
---|
| 613 | return; |
---|
| 614 | } |
---|
| 615 | |
---|
| 616 | Void TEncEntropy::encodeQtCbf( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth ) |
---|
| 617 | { |
---|
| 618 | m_pcEntropyCoderIf->codeQtCbf( pcCU, uiAbsPartIdx, eType, uiTrDepth ); |
---|
| 619 | } |
---|
| 620 | |
---|
| 621 | Void TEncEntropy::encodeTransformSubdivFlag( UInt uiSymbol, UInt uiCtx ) |
---|
| 622 | { |
---|
| 623 | m_pcEntropyCoderIf->codeTransformSubdivFlag( uiSymbol, uiCtx ); |
---|
| 624 | } |
---|
| 625 | |
---|
| 626 | Void TEncEntropy::encodeQtRootCbf( TComDataCU* pcCU, UInt uiAbsPartIdx ) |
---|
| 627 | { |
---|
| 628 | m_pcEntropyCoderIf->codeQtRootCbf( pcCU, uiAbsPartIdx ); |
---|
| 629 | } |
---|
| 630 | |
---|
[608] | 631 | Void TEncEntropy::encodeQtCbfZero( TComDataCU* pcCU, TextType eType, UInt uiTrDepth ) |
---|
| 632 | { |
---|
| 633 | m_pcEntropyCoderIf->codeQtCbfZero( pcCU, eType, uiTrDepth ); |
---|
| 634 | } |
---|
| 635 | Void TEncEntropy::encodeQtRootCbfZero( TComDataCU* pcCU ) |
---|
| 636 | { |
---|
| 637 | m_pcEntropyCoderIf->codeQtRootCbfZero( pcCU ); |
---|
| 638 | } |
---|
| 639 | |
---|
[2] | 640 | // dQP |
---|
| 641 | Void TEncEntropy::encodeQP( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD ) |
---|
| 642 | { |
---|
| 643 | if( bRD ) |
---|
[56] | 644 | { |
---|
[2] | 645 | uiAbsPartIdx = 0; |
---|
[56] | 646 | } |
---|
[2] | 647 | |
---|
[56] | 648 | if ( pcCU->getSlice()->getPPS()->getUseDQP() ) |
---|
[2] | 649 | { |
---|
| 650 | m_pcEntropyCoderIf->codeDeltaQP( pcCU, uiAbsPartIdx ); |
---|
| 651 | } |
---|
| 652 | } |
---|
| 653 | |
---|
| 654 | |
---|
| 655 | // texture |
---|
| 656 | /** encode coefficients |
---|
| 657 | * \param pcCU |
---|
| 658 | * \param uiAbsPartIdx |
---|
| 659 | * \param uiDepth |
---|
| 660 | * \param uiWidth |
---|
| 661 | * \param uiHeight |
---|
| 662 | */ |
---|
[56] | 663 | Void TEncEntropy::encodeCoeff( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiWidth, UInt uiHeight, Bool& bCodeDQP ) |
---|
[2] | 664 | { |
---|
| 665 | UInt uiMinCoeffSize = pcCU->getPic()->getMinCUWidth()*pcCU->getPic()->getMinCUHeight(); |
---|
| 666 | UInt uiLumaOffset = uiMinCoeffSize*uiAbsPartIdx; |
---|
| 667 | UInt uiChromaOffset = uiLumaOffset>>2; |
---|
[833] | 668 | #if H_3D_DIM_SDC |
---|
| 669 | if( pcCU->getSDCFlag( uiAbsPartIdx ) && pcCU->isIntra( uiAbsPartIdx ) ) |
---|
| 670 | { |
---|
| 671 | assert( pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2Nx2N ); |
---|
| 672 | assert( pcCU->getTransformIdx(uiAbsPartIdx) == 0 ); |
---|
| 673 | assert( pcCU->getCbf(uiAbsPartIdx, TEXT_LUMA) == 1 ); |
---|
| 674 | assert( pcCU->getCbf(uiAbsPartIdx, TEXT_CHROMA_U) == 1 ); |
---|
| 675 | assert( pcCU->getCbf(uiAbsPartIdx, TEXT_CHROMA_V) == 1 ); |
---|
| 676 | } |
---|
| 677 | |
---|
| 678 | if( pcCU->getSDCFlag( uiAbsPartIdx ) && !pcCU->isIntra( uiAbsPartIdx ) ) |
---|
| 679 | { |
---|
| 680 | assert( !pcCU->isSkipped( uiAbsPartIdx ) ); |
---|
| 681 | assert( !pcCU->isIntra( uiAbsPartIdx) ); |
---|
| 682 | assert( pcCU->getSlice()->getIsDepth() ); |
---|
| 683 | } |
---|
[884] | 684 | |
---|
[833] | 685 | if( pcCU->getSlice()->getIsDepth() && ( pcCU->getSDCFlag( uiAbsPartIdx ) || pcCU->isIntra( uiAbsPartIdx ) ) ) |
---|
| 686 | { |
---|
| 687 | Int iPartNum = ( pcCU->isIntra( uiAbsPartIdx ) && pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_NxN ) ? 4 : 1; |
---|
| 688 | UInt uiPartOffset = ( pcCU->getPic()->getNumPartInCU() >> ( pcCU->getDepth( uiAbsPartIdx ) << 1 ) ) >> 2; |
---|
[608] | 689 | |
---|
[833] | 690 | if( !pcCU->getSDCFlag( uiAbsPartIdx ) ) |
---|
| 691 | { |
---|
| 692 | for( Int iPart = 0; iPart < iPartNum; iPart++ ) |
---|
| 693 | { |
---|
| 694 | if( getDimType( pcCU->getLumaIntraDir( uiAbsPartIdx + uiPartOffset*iPart ) ) < DIM_NUM_TYPE ) |
---|
| 695 | { |
---|
| 696 | m_pcEntropyCoderIf->codeDeltaDC( pcCU, uiAbsPartIdx + uiPartOffset*iPart ); |
---|
| 697 | } |
---|
| 698 | } |
---|
| 699 | } |
---|
| 700 | else |
---|
| 701 | { |
---|
| 702 | m_pcEntropyCoderIf->codeDeltaDC( pcCU, uiAbsPartIdx ); |
---|
| 703 | return; |
---|
| 704 | } |
---|
| 705 | } |
---|
[443] | 706 | #endif |
---|
[608] | 707 | |
---|
[2] | 708 | if( pcCU->isIntra(uiAbsPartIdx) ) |
---|
| 709 | { |
---|
[608] | 710 | #if !H_MV |
---|
[56] | 711 | DTRACE_CABAC_VL( g_nSymbolCounter++ ) |
---|
[2] | 712 | DTRACE_CABAC_T( "\tdecodeTransformIdx()\tCUDepth=" ) |
---|
| 713 | DTRACE_CABAC_V( uiDepth ) |
---|
| 714 | DTRACE_CABAC_T( "\n" ) |
---|
[608] | 715 | #endif |
---|
[2] | 716 | } |
---|
| 717 | else |
---|
| 718 | { |
---|
[608] | 719 | if( !(pcCU->getMergeFlag( uiAbsPartIdx ) && pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2Nx2N ) ) |
---|
[2] | 720 | { |
---|
[608] | 721 | m_pcEntropyCoderIf->codeQtRootCbf( pcCU, uiAbsPartIdx ); |
---|
[2] | 722 | } |
---|
[608] | 723 | if ( !pcCU->getQtRootCbf( uiAbsPartIdx ) ) |
---|
[189] | 724 | { |
---|
[608] | 725 | return; |
---|
[189] | 726 | } |
---|
| 727 | } |
---|
[608] | 728 | |
---|
| 729 | xEncodeTransform( pcCU, uiLumaOffset, uiChromaOffset, uiAbsPartIdx, uiDepth, uiWidth, uiHeight, 0, bCodeDQP); |
---|
[2] | 730 | } |
---|
| 731 | |
---|
[56] | 732 | Void TEncEntropy::encodeCoeffNxN( TComDataCU* pcCU, TCoeff* pcCoeff, UInt uiAbsPartIdx, UInt uiTrWidth, UInt uiTrHeight, UInt uiDepth, TextType eType ) |
---|
[608] | 733 | { |
---|
| 734 | // This is for Transform unit processing. This may be used at mode selection stage for Inter. |
---|
[56] | 735 | m_pcEntropyCoderIf->codeCoeffNxN( pcCU, pcCoeff, uiAbsPartIdx, uiTrWidth, uiTrHeight, uiDepth, eType ); |
---|
[2] | 736 | } |
---|
| 737 | |
---|
[56] | 738 | Void TEncEntropy::estimateBit (estBitsSbacStruct* pcEstBitsSbac, Int width, Int height, TextType eTType) |
---|
| 739 | { |
---|
| 740 | eTType = eTType == TEXT_LUMA ? TEXT_LUMA : TEXT_CHROMA; |
---|
| 741 | |
---|
| 742 | m_pcEntropyCoderIf->estBit ( pcEstBitsSbac, width, height, eTType ); |
---|
| 743 | } |
---|
| 744 | |
---|
| 745 | Int TEncEntropy::countNonZeroCoeffs( TCoeff* pcCoef, UInt uiSize ) |
---|
| 746 | { |
---|
| 747 | Int count = 0; |
---|
| 748 | |
---|
| 749 | for ( Int i = 0; i < uiSize; i++ ) |
---|
[2] | 750 | { |
---|
[56] | 751 | count += pcCoef[i] != 0; |
---|
[2] | 752 | } |
---|
[56] | 753 | |
---|
| 754 | return count; |
---|
| 755 | } |
---|
[2] | 756 | |
---|
[56] | 757 | /** encode quantization matrix |
---|
| 758 | * \param scalingList quantization matrix information |
---|
| 759 | */ |
---|
| 760 | Void TEncEntropy::encodeScalingList( TComScalingList* scalingList ) |
---|
| 761 | { |
---|
| 762 | m_pcEntropyCoderIf->codeScalingList( scalingList ); |
---|
[2] | 763 | } |
---|
| 764 | |
---|
[655] | 765 | #if H_3D_INTER_SDC |
---|
[833] | 766 | Void TEncEntropy::encodeDeltaDC ( TComDataCU* pcCU, UInt absPartIdx ) |
---|
| 767 | { |
---|
| 768 | m_pcEntropyCoderIf->codeDeltaDC( pcCU, absPartIdx ); |
---|
| 769 | } |
---|
| 770 | |
---|
| 771 | Void TEncEntropy::encodeSDCFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD ) |
---|
| 772 | { |
---|
| 773 | if( ( !pcCU->isIntra( uiAbsPartIdx ) && !pcCU->getSlice()->getVPS()->getInterSDCFlag( pcCU->getSlice()->getLayerIdInVps() ) ) || |
---|
| 774 | ( pcCU->isIntra( uiAbsPartIdx ) && !pcCU->getSlice()->getVPS()->getVpsDepthModesFlag( pcCU->getSlice()->getLayerIdInVps() ) ) ) |
---|
| 775 | { |
---|
| 776 | return; |
---|
| 777 | } |
---|
| 778 | |
---|
| 779 | if( !pcCU->getSlice()->getIsDepth() || pcCU->getPartitionSize( uiAbsPartIdx ) != SIZE_2Nx2N || pcCU->isSkipped( uiAbsPartIdx ) ) |
---|
| 780 | { |
---|
| 781 | return; |
---|
| 782 | } |
---|
| 783 | |
---|
| 784 | assert( pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_2Nx2N || ( !pcCU->isIntra( uiAbsPartIdx ) && !pcCU->isSkipped( uiAbsPartIdx ) ) ); |
---|
| 785 | |
---|
| 786 | if( bRD ) |
---|
| 787 | { |
---|
| 788 | uiAbsPartIdx = 0; |
---|
| 789 | } |
---|
| 790 | |
---|
| 791 | m_pcEntropyCoderIf->codeSDCFlag( pcCU, uiAbsPartIdx ); |
---|
| 792 | } |
---|
[2] | 793 | |
---|
[189] | 794 | #endif |
---|
[833] | 795 | #if H_3D_DBBP |
---|
| 796 | Void TEncEntropy::encodeDBBPFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD ) |
---|
| 797 | { |
---|
| 798 | if( bRD ) |
---|
| 799 | { |
---|
| 800 | uiAbsPartIdx = 0; |
---|
| 801 | } |
---|
| 802 | m_pcEntropyCoderIf->codeDBBPFlag( pcCU, uiAbsPartIdx ); |
---|
| 803 | } |
---|
| 804 | #endif |
---|
[56] | 805 | //! \} |
---|