/* The copyright in this software is being made available under the BSD * License, included below. This software may be subject to other third party * and contributor rights, including patent rights, and no such rights are * granted under this license. * * Copyright (c) 2010-2012, ITU/ISO/IEC * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * Neither the name of the ITU/ISO/IEC nor the names of its contributors may * be used to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. */ /** \file TEncSampleAdaptiveOffset.cpp \brief estimation part of sample adaptive offset class */ #include "TEncSampleAdaptiveOffset.h" #include #include #include #include //! \ingroup TLibEncoder //! \{ TEncSampleAdaptiveOffset::TEncSampleAdaptiveOffset() { m_pcEntropyCoder = NULL; m_pppcRDSbacCoder = NULL; m_pcRDGoOnSbacCoder = NULL; m_pppcBinCoderCABAC = NULL; m_iCount = NULL; m_iOffset = NULL; m_iOffsetOrg = NULL; m_iRate = NULL; m_iDist = NULL; m_dCost = NULL; m_dCostPartBest = NULL; m_iDistOrg = NULL; m_iTypePartBest = NULL; } TEncSampleAdaptiveOffset::~TEncSampleAdaptiveOffset() { } // ==================================================================================================================== // Constants // ==================================================================================================================== // ==================================================================================================================== // Tables // ==================================================================================================================== inline Double xRoundIbdi2(Double x) { #if FULL_NBIT Int bitDepthMinus8 = g_uiBitDepth - 8; return ((x)>0) ? (Int)(((Int)(x)+(1<<(bitDepthMinus8-1)))/(1<0) ? (Int)(((Int)(x)+(1<<(g_uiBitIncrement-1)))/(1< 8 ? xRoundIbdi2((x)) : ((x)>=0 ? ((Int)((x)+0.5)) : ((Int)((x)-0.5)))) ; #else return (g_uiBitIncrement >0 ? xRoundIbdi2((x)) : ((x)>=0 ? ((Int)((x)+0.5)) : ((Int)((x)-0.5)))) ; #endif } /** process SAO for one partition * \param *psQTPart, iPartIdx, dLambda */ #if SAO_UNIT_INTERLEAVING Void TEncSampleAdaptiveOffset::rdoSaoOnePart(SAOQTPart *psQTPart, Int iPartIdx, Double dLambda) { Int iTypeIdx; Int iNumTotalType = MAX_NUM_SAO_TYPE; SAOQTPart* pOnePart = &(psQTPart[iPartIdx]); Int64 iEstDist; Int64 iOffsetOrg; Int64 iOffset; Int64 iCount; Int iClassIdx; Int uiShift = g_uiBitIncrement << 1; UInt uiDepth = pOnePart->PartLevel; m_iDistOrg [iPartIdx] = 0; Double bestRDCostTableBo = MAX_DOUBLE; Int bestClassTableBo = 0; Int currentDistortionTableBo[MAX_NUM_SAO_CLASS]; Double currentRdCostTableBo[MAX_NUM_SAO_CLASS]; #if HHI_INTERVIEW_SKIP Int iFrameWidthInCU = m_pcPic->getFrameWidthInCU(); Int LcuIdxX = psQTPart->StartCUX; Int LcuIdxY = psQTPart->StartCUY; Int iAddr = LcuIdxY*iFrameWidthInCU + LcuIdxX; TComDataCU *pcCU = m_pcPic->getCU(iAddr); Bool bRenderable = pcCU->getRenderable(0) ; #endif for (iTypeIdx=-1; iTypeIdxload(m_pppcRDSbacCoder[uiDepth][CI_CURR_BEST]); m_pcRDGoOnSbacCoder->resetBits(); } else { m_pcEntropyCoder->resetEntropy(); m_pcEntropyCoder->resetBits(); } iEstDist = 0; m_pcEntropyCoder->m_pcEntropyCoderIf->codeSaoTypeIdx(iTypeIdx+1); if (iTypeIdx>=0) { for(iClassIdx=1; iClassIdx < ( (iTypeIdx < SAO_BO) ? m_iNumClass[iTypeIdx]+1 : SAO_MAX_BO_CLASSES+1); iClassIdx++) { if( iTypeIdx == SAO_BO) { currentDistortionTableBo[iClassIdx-1] = 0; currentRdCostTableBo[iClassIdx-1] = dLambda; } #if HHI_INTERVIEW_SKIP if(m_iCount [iPartIdx][iTypeIdx][iClassIdx] && !bRenderable) #else if(m_iCount [iPartIdx][iTypeIdx][iClassIdx]) #endif { #if FULL_NBIT m_iOffset[iPartIdx][iTypeIdx][iClassIdx] = (Int64) xRoundIbdi((Double)(m_iOffsetOrg[iPartIdx][iTypeIdx][iClassIdx]<0 && iClassIdx>=3) { m_iOffset[iPartIdx][iTypeIdx][iClassIdx] = 0; } } { //Clean up, best_q_offset. Int64 iIterOffset, iTempOffset; Int64 iTempDist, iTempRate; Double dTempCost, dTempMinCost; UInt uiLength, uiTemp; iIterOffset = m_iOffset[iPartIdx][iTypeIdx][iClassIdx]; m_iOffset[iPartIdx][iTypeIdx][iClassIdx] = 0; dTempMinCost = dLambda; // Assuming sending quantized value 0 results in zero offset and sending the value zero needs 1 bit. entropy coder can be used to measure the exact rate here. while (iIterOffset != 0) { // Calculate the bits required for signalling the offset uiLength = 1; uiTemp = (UInt)((iIterOffset <= 0) ? ( (-iIterOffset<<1) + 1 ) : (iIterOffset<<1)); while( 1 != uiTemp ) { uiTemp >>= 1; uiLength += 2; } iTempRate = (uiLength >> 1) + ((uiLength+1) >> 1); // Do the dequntization before distorion calculation iTempOffset = iIterOffset << m_uiSaoBitIncrease; iTempDist = (( m_iCount [iPartIdx][iTypeIdx][iClassIdx]*iTempOffset*iTempOffset-m_iOffsetOrg[iPartIdx][iTypeIdx][iClassIdx]*iTempOffset*2 ) >> uiShift); dTempCost = ((Double)iTempDist + dLambda * (Double) iTempRate); if(dTempCost < dTempMinCost) { dTempMinCost = dTempCost; m_iOffset[iPartIdx][iTypeIdx][iClassIdx] = iIterOffset; if(iTypeIdx == SAO_BO) { currentDistortionTableBo[iClassIdx-1] = (Int) iTempDist; currentRdCostTableBo[iClassIdx-1] = dTempCost; } } iIterOffset = (iIterOffset > 0) ? (iIterOffset-1):(iIterOffset+1); } } } else { m_iOffsetOrg[iPartIdx][iTypeIdx][iClassIdx] = 0; m_iOffset[iPartIdx][iTypeIdx][iClassIdx] = 0; } if( iTypeIdx != SAO_BO ) { iCount = m_iCount [iPartIdx][iTypeIdx][iClassIdx]; iOffset = m_iOffset[iPartIdx][iTypeIdx][iClassIdx] << m_uiSaoBitIncrease; iOffsetOrg = m_iOffsetOrg[iPartIdx][iTypeIdx][iClassIdx]; iEstDist += (( iCount*iOffset*iOffset-iOffsetOrg*iOffset*2 ) >> uiShift); if (iTypeIdx < 4) { if (iClassIdx<3) { m_pcEntropyCoder->m_pcEntropyCoderIf->codeSaoUvlc((Int)m_iOffset[iPartIdx][iTypeIdx][iClassIdx]); } else { m_pcEntropyCoder->m_pcEntropyCoderIf->codeSaoUvlc((Int)-m_iOffset[iPartIdx][iTypeIdx][iClassIdx]); } } else { m_pcEntropyCoder->m_pcEntropyCoderIf->codeSaoSvlc((Int)m_iOffset[iPartIdx][iTypeIdx][iClassIdx]); } } } if( iTypeIdx == SAO_BO ) { // Estimate Best Position Double currentRDCost = 0.0; for(Int i=0; i< SAO_MAX_BO_CLASSES -SAO_BO_LEN +1; i++) { currentRDCost = 0.0; for(UInt uj = i; uj < i+SAO_BO_LEN; uj++) { currentRDCost += currentRdCostTableBo[uj]; } if( currentRDCost < bestRDCostTableBo) { bestRDCostTableBo = currentRDCost; bestClassTableBo = i; } } // Re code all Offsets // Code Center m_pcEntropyCoder->m_pcEntropyCoderIf->codeSaoUflc( (UInt) (bestClassTableBo) ); for(iClassIdx = bestClassTableBo; iClassIdx < bestClassTableBo+SAO_BO_LEN; iClassIdx++) { m_pcEntropyCoder->m_pcEntropyCoderIf->codeSaoSvlc((Int)m_iOffset[iPartIdx][iTypeIdx][iClassIdx+1]); iEstDist += currentDistortionTableBo[iClassIdx]; } } m_iDist[iPartIdx][iTypeIdx] = iEstDist; m_iRate[iPartIdx][iTypeIdx] = m_pcEntropyCoder->getNumberOfWrittenBits(); m_dCost[iPartIdx][iTypeIdx] = (Double)((Double)m_iDist[iPartIdx][iTypeIdx] + dLambda * (Double) m_iRate[iPartIdx][iTypeIdx]); if(m_dCost[iPartIdx][iTypeIdx] < m_dCostPartBest[iPartIdx]) { m_iDistOrg [iPartIdx] = 0; m_dCostPartBest[iPartIdx] = m_dCost[iPartIdx][iTypeIdx]; m_iTypePartBest[iPartIdx] = iTypeIdx; if( m_bUseSBACRD ) m_pcRDGoOnSbacCoder->store( m_pppcRDSbacCoder[pOnePart->PartLevel][CI_TEMP_BEST] ); } } else { if(m_iDistOrg[iPartIdx] < m_dCostPartBest[iPartIdx] ) { m_dCostPartBest[iPartIdx] = (Double) m_iDistOrg[iPartIdx] + m_pcEntropyCoder->getNumberOfWrittenBits()*dLambda ; m_iTypePartBest[iPartIdx] = -1; if( m_bUseSBACRD ) m_pcRDGoOnSbacCoder->store( m_pppcRDSbacCoder[pOnePart->PartLevel][CI_TEMP_BEST] ); } } } pOnePart->bProcessed = true; pOnePart->bSplit = false; pOnePart->iMinDist = m_iTypePartBest[iPartIdx] >= 0 ? m_iDist[iPartIdx][m_iTypePartBest[iPartIdx]] : m_iDistOrg[iPartIdx]; pOnePart->iMinRate = (Int) (m_iTypePartBest[iPartIdx] >= 0 ? m_iRate[iPartIdx][m_iTypePartBest[iPartIdx]] : 0); pOnePart->dMinCost = pOnePart->iMinDist + dLambda * pOnePart->iMinRate; pOnePart->iBestType = m_iTypePartBest[iPartIdx]; if (pOnePart->iBestType != -1) { // pOnePart->bEnableFlag = 1; pOnePart->iLength = m_iNumClass[pOnePart->iBestType]; Int minIndex = 0; if( pOnePart->iBestType == SAO_BO ) { pOnePart->bandPosition = bestClassTableBo; minIndex = pOnePart->bandPosition; } for (Int i=0; i< pOnePart->iLength ; i++) { pOnePart->iOffset[i] = (Int) m_iOffset[iPartIdx][pOnePart->iBestType][minIndex+i+1]; } } else { // pOnePart->bEnableFlag = 0; pOnePart->iLength = 0; } } #else Void TEncSampleAdaptiveOffset::rdoSaoOnePart(SAOQTPart *psQTPart, Int iPartIdx, Double dLambda) { Int iTypeIdx; Int iNumTotalType = MAX_NUM_SAO_TYPE; SAOQTPart* pOnePart = &(psQTPart[iPartIdx]); Int64 iEstDist; Int64 iOffsetOrg; Int64 iOffset; Int64 iCount; Int iClassIdx; Int uiShift = g_uiBitIncrement << 1; UInt uiDepth = pOnePart->PartLevel; m_iDistOrg [iPartIdx] = 0; for (iTypeIdx=-1; iTypeIdxload(m_pppcRDSbacCoder[uiDepth][CI_CURR_BEST]); m_pcRDGoOnSbacCoder->resetBits(); } else { m_pcEntropyCoder->resetEntropy(); m_pcEntropyCoder->resetBits(); } iEstDist = 0; m_pcEntropyCoder->m_pcEntropyCoderIf->codeSaoUvlc(iTypeIdx+1); if (iTypeIdx>=0) { for(iClassIdx=1; iClassIdx < m_iNumClass[iTypeIdx]+1; iClassIdx++) { if(m_iCount [iPartIdx][iTypeIdx][iClassIdx]) { #if FULL_NBIT m_iOffset[iPartIdx][iTypeIdx][iClassIdx] = (Int64) xRoundIbdi((Double)(m_iOffsetOrg[iPartIdx][iTypeIdx][iClassIdx]<>= 1; codeLength += 2; } tempRate = (codeLength >> 1) + ((codeLength+1) >> 1); // Do the dequntization before distorion calculation tempOffset = iterOffset << m_uiSaoBitIncrease; tempDist = (( m_iCount [iPartIdx][iTypeIdx][iClassIdx]*tempOffset*tempOffset-m_iOffsetOrg[iPartIdx][iTypeIdx][iClassIdx]*tempOffset*2 ) >> uiShift); tempCost = ((Double)tempDist + dLambda * (Double) tempRate); if(tempCost < tempMinCost) { tempMinCost = tempCost; m_iOffset[iPartIdx][iTypeIdx][iClassIdx] = iterOffset; } iterOffset = (iterOffset > 0) ? (iterOffset-1):(iterOffset+1); } } } else { m_iOffsetOrg[iPartIdx][iTypeIdx][iClassIdx] = 0; m_iOffset[iPartIdx][iTypeIdx][iClassIdx] = 0; } iCount = m_iCount [iPartIdx][iTypeIdx][iClassIdx]; iOffset = m_iOffset[iPartIdx][iTypeIdx][iClassIdx] << m_uiSaoBitIncrease; iOffsetOrg = m_iOffsetOrg[iPartIdx][iTypeIdx][iClassIdx]; iEstDist += (( iCount*iOffset*iOffset-iOffsetOrg*iOffset*2 ) >> uiShift); m_pcEntropyCoder->m_pcEntropyCoderIf->codeSaoSvlc((Int)m_iOffset[iPartIdx][iTypeIdx][iClassIdx]); } m_iDist[iPartIdx][iTypeIdx] = iEstDist; m_iRate[iPartIdx][iTypeIdx] = m_pcEntropyCoder->getNumberOfWrittenBits(); m_dCost[iPartIdx][iTypeIdx] = (Double)((Double)m_iDist[iPartIdx][iTypeIdx] + dLambda * (Double) m_iRate[iPartIdx][iTypeIdx]); if(m_dCost[iPartIdx][iTypeIdx] < m_dCostPartBest[iPartIdx]) { m_iDistOrg [iPartIdx] = 0; m_dCostPartBest[iPartIdx] = m_dCost[iPartIdx][iTypeIdx]; m_iTypePartBest[iPartIdx] = iTypeIdx; if( m_bUseSBACRD ) m_pcRDGoOnSbacCoder->store( m_pppcRDSbacCoder[pOnePart->PartLevel][CI_TEMP_BEST] ); } } else { if(m_iDistOrg[iPartIdx] < m_dCostPartBest[iPartIdx] ) { m_dCostPartBest[iPartIdx] = (Double) m_iDistOrg[iPartIdx] + m_pcEntropyCoder->getNumberOfWrittenBits()*dLambda ; m_iTypePartBest[iPartIdx] = -1; if( m_bUseSBACRD ) m_pcRDGoOnSbacCoder->store( m_pppcRDSbacCoder[pOnePart->PartLevel][CI_TEMP_BEST] ); } } } pOnePart->bProcessed = true; pOnePart->bSplit = false; pOnePart->iMinDist = m_iTypePartBest[iPartIdx] >= 0 ? m_iDist[iPartIdx][m_iTypePartBest[iPartIdx]] : m_iDistOrg[iPartIdx]; pOnePart->iMinRate = (Int) (m_iTypePartBest[iPartIdx] >= 0 ? m_iRate[iPartIdx][m_iTypePartBest[iPartIdx]] : 0); pOnePart->dMinCost = pOnePart->iMinDist + dLambda * pOnePart->iMinRate; pOnePart->iBestType = m_iTypePartBest[iPartIdx]; if (pOnePart->iBestType != -1) { pOnePart->bEnableFlag = 1; pOnePart->iLength = m_iNumClass[pOnePart->iBestType]; for (Int i=0; iiLength ; i++) pOnePart->iOffset[i] = (Int) m_iOffset[iPartIdx][pOnePart->iBestType][i+1]; } else { pOnePart->bEnableFlag = 0; pOnePart->iLength = 0; } } #endif /** Run partition tree disable */ Void TEncSampleAdaptiveOffset::disablePartTree(SAOQTPart *psQTPart, Int iPartIdx) { SAOQTPart* pOnePart= &(psQTPart[iPartIdx]); #if !SAO_UNIT_INTERLEAVING pOnePart->bEnableFlag = false; #endif pOnePart->bSplit = false; pOnePart->iLength = 0; pOnePart->iBestType = -1; if (pOnePart->PartLevel < m_uiMaxSplitLevel) { for (Int i=0; iDownPartsIdx[i]); } } } /** Run quadtree decision function * \param iPartIdx, pcPicOrg, pcPicDec, pcPicRest, &dCostFinal */ Void TEncSampleAdaptiveOffset::runQuadTreeDecision(SAOQTPart *psQTPart, Int iPartIdx, Double &dCostFinal, Int iMaxLevel, Double dLambda) { SAOQTPart* pOnePart = &(psQTPart[iPartIdx]); UInt uiDepth = pOnePart->PartLevel; UInt uhNextDepth = uiDepth+1; if (iPartIdx == 0) { dCostFinal = 0; } //SAO for this part if(!pOnePart->bProcessed) { rdoSaoOnePart (psQTPart, iPartIdx, dLambda); } //SAO for sub 4 parts if (pOnePart->PartLevel < iMaxLevel) { Double dCostNotSplit = dLambda + pOnePart->dMinCost; Double dCostSplit = dLambda; for (Int i=0; i< NUM_DOWN_PART ;i++) { if( m_bUseSBACRD ) { if ( 0 == i) //initialize RD with previous depth buffer { m_pppcRDSbacCoder[uhNextDepth][CI_CURR_BEST]->load(m_pppcRDSbacCoder[uiDepth][CI_CURR_BEST]); } else { m_pppcRDSbacCoder[uhNextDepth][CI_CURR_BEST]->load(m_pppcRDSbacCoder[uhNextDepth][CI_NEXT_BEST]); } } runQuadTreeDecision(psQTPart, pOnePart->DownPartsIdx[i], dCostFinal, iMaxLevel, dLambda); dCostSplit += dCostFinal; if( m_bUseSBACRD ) { m_pppcRDSbacCoder[uhNextDepth][CI_NEXT_BEST]->load(m_pppcRDSbacCoder[uhNextDepth][CI_TEMP_BEST]); } } if(dCostSplit < dCostNotSplit) { dCostFinal = dCostSplit; pOnePart->bSplit = true; #if !SAO_UNIT_INTERLEAVING pOnePart->bEnableFlag = false; #endif pOnePart->iLength = 0; pOnePart->iBestType = -1; if( m_bUseSBACRD ) { m_pppcRDSbacCoder[uiDepth][CI_NEXT_BEST]->load(m_pppcRDSbacCoder[uhNextDepth][CI_NEXT_BEST]); } } else { dCostFinal = dCostNotSplit; pOnePart->bSplit = false; for (Int i=0; iDownPartsIdx[i]); } if( m_bUseSBACRD ) { m_pppcRDSbacCoder[uiDepth][CI_NEXT_BEST]->load(m_pppcRDSbacCoder[uiDepth][CI_TEMP_BEST]); } } } else { dCostFinal = pOnePart->dMinCost; } } /** delete allocated memory of TEncSampleAdaptiveOffset class. */ Void TEncSampleAdaptiveOffset::destroyEncBuffer() { for (Int i=0;iinit( m_pppcBinCoderCABAC [iDepth][iCIIdx] ); } } } /** Start SAO encoder * \param pcPic, pcEntropyCoder, pppcRDSbacCoder, pcRDGoOnSbacCoder */ Void TEncSampleAdaptiveOffset::startSaoEnc( TComPic* pcPic, TEncEntropy* pcEntropyCoder, TEncSbac*** pppcRDSbacCoder, TEncSbac* pcRDGoOnSbacCoder) { if( pcRDGoOnSbacCoder ) m_bUseSBACRD = true; else m_bUseSBACRD = false; m_pcPic = pcPic; m_pcEntropyCoder = pcEntropyCoder; m_pcRDGoOnSbacCoder = pcRDGoOnSbacCoder; m_pcEntropyCoder->resetEntropy(); m_pcEntropyCoder->resetBits(); if( m_bUseSBACRD ) { m_pcRDGoOnSbacCoder->store( m_pppcRDSbacCoder[0][CI_NEXT_BEST]); m_pppcRDSbacCoder[0][CI_CURR_BEST]->load( m_pppcRDSbacCoder[0][CI_NEXT_BEST]); } } /** End SAO encoder */ Void TEncSampleAdaptiveOffset::endSaoEnc() { m_pcPic = NULL; m_pcEntropyCoder = NULL; } inline int xSign(int x) { return ((x >> 31) | ((int)( (((unsigned int) -x)) >> 31))); } /** Calculate SAO statistics for non-cross-slice or non-cross-tile processing * \param pRecStart to-be-filtered block buffer pointer * \param pOrgStart original block buffer pointer * \param stride picture buffer stride * \param ppStat statistics buffer * \param ppCount counter buffer * \param width block width * \param height block height * \param pbBorderAvail availabilities of block border pixels */ Void TEncSampleAdaptiveOffset::calcSaoStatsBlock( Pel* pRecStart, Pel* pOrgStart, Int stride, Int64** ppStats, Int64** ppCount, UInt width, UInt height, Bool* pbBorderAvail) { Int64 *stats, *count; Int classIdx, posShift, startX, endX, startY, endY, signLeft,signRight,signDown,signDown1; Pel *pOrg, *pRec; UInt edgeType; Int x, y; #if SAO_UNIT_INTERLEAVING //--------- Band offset-----------// stats = ppStats[SAO_BO]; count = ppCount[SAO_BO]; pOrg = pOrgStart; pRec = pRecStart; for (y=0; y< height; y++) { for (x=0; x< width; x++) { classIdx = m_lumaTableBo[pRec[x]]; if (classIdx) { stats[classIdx] += (pOrg[x] - pRec[x]); count[classIdx] ++; } } pOrg += stride; pRec += stride; } #else //--------- Band offset 0-----------// stats = ppStats[SAO_BO_0]; count = ppCount[SAO_BO_0]; pOrg = pOrgStart; pRec = pRecStart; for (y=0; y< height; y++) { for (x=0; x< width; x++) { classIdx = m_ppLumaTableBo0[pRec[x]]; if (classIdx) { stats[classIdx] += (pOrg[x] - pRec[x]); count[classIdx] ++; } } pOrg += stride; pRec += stride; } //--------- Band offset 1-----------// stats = ppStats[SAO_BO_1]; count = ppCount[SAO_BO_1]; pOrg = pOrgStart; pRec = pRecStart; for (y=0; y< height; y++) { for (x=0; x< width; x++) { classIdx = m_ppLumaTableBo1[pRec[x]]; if (classIdx) { stats[classIdx] += (pOrg[x] - pRec[x]); count[classIdx] ++; } } pOrg += stride; pRec += stride; } #endif //---------- Edge offset 0--------------// stats = ppStats[SAO_EO_0]; count = ppCount[SAO_EO_0]; pOrg = pOrgStart; pRec = pRecStart; startX = (pbBorderAvail[SGU_L]) ? 0 : 1; endX = (pbBorderAvail[SGU_R]) ? width : (width -1); for (y=0; y< height; y++) { signLeft = xSign(pRec[startX] - pRec[startX-1]); for (x=startX; x< endX; x++) { signRight = xSign(pRec[x] - pRec[x+1]); edgeType = signRight + signLeft + 2; signLeft = -signRight; stats[m_auiEoTable[edgeType]] += (pOrg[x] - pRec[x]); count[m_auiEoTable[edgeType]] ++; } pRec += stride; pOrg += stride; } //---------- Edge offset 1--------------// stats = ppStats[SAO_EO_1]; count = ppCount[SAO_EO_1]; pOrg = pOrgStart; pRec = pRecStart; startY = (pbBorderAvail[SGU_T]) ? 0 : 1; endY = (pbBorderAvail[SGU_B]) ? height : height-1; if (!pbBorderAvail[SGU_T]) { pRec += stride; pOrg += stride; } for (x=0; x< width; x++) { m_iUpBuff1[x] = xSign(pRec[x] - pRec[x-stride]); } for (y=startY; ygetCStride()):(m_pcPic->getStride()); Pel* pPicOrg = getPicYuvAddr (m_pcPic->getPicYuvOrg(), iYCbCr); Pel* pPicRec = getPicYuvAddr(m_pcYuvTmp, iYCbCr); std::vector& vFilterBlocks = *(m_pcPic->getCU(iAddr)->getNDBFilterBlocks()); //variables UInt xPos, yPos, width, height; Bool* pbBorderAvail; UInt posOffset; for(Int i=0; i< vFilterBlocks.size(); i++) { xPos = vFilterBlocks[i].posX >> isChroma; yPos = vFilterBlocks[i].posY >> isChroma; width = vFilterBlocks[i].width >> isChroma; height = vFilterBlocks[i].height >> isChroma; pbBorderAvail = vFilterBlocks[i].isBorderAvailable; posOffset = (yPos* stride) + xPos; #if HHI_INTERVIEW_SKIP if( !m_pcPic->getCU(iAddr)->getRenderable(0 )) { calcSaoStatsBlock(pPicRec+ posOffset, pPicOrg+ posOffset, stride, ppStats, ppCount,width, height, pbBorderAvail); } #else calcSaoStatsBlock(pPicRec+ posOffset, pPicOrg+ posOffset, stride, ppStats, ppCount,width, height, pbBorderAvail); #endif } } } /** Calculate SAO statistics for current LCU without non-crossing slice * \param iAddr, iPartIdx, iYCbCr */ Void TEncSampleAdaptiveOffset::calcSaoStatsCuOrg(Int iAddr, Int iPartIdx, Int iYCbCr) { Int x,y; TComDataCU *pTmpCu = m_pcPic->getCU(iAddr); TComSPS *pTmpSPS = m_pcPic->getSlice(0)->getSPS(); Pel* pOrg; Pel* pRec; Int iStride; Int iLcuWidth = pTmpSPS->getMaxCUHeight(); Int iLcuHeight = pTmpSPS->getMaxCUWidth(); UInt uiLPelX = pTmpCu->getCUPelX(); UInt uiTPelY = pTmpCu->getCUPelY(); UInt uiRPelX; UInt uiBPelY; Int64* iStats; Int64* iCount; Int iClassIdx; Int iPicWidthTmp; Int iPicHeightTmp; Int iStartX; Int iStartY; Int iEndX; Int iEndY; Int iIsChroma = (iYCbCr!=0)? 1:0; #if SAO_UNIT_INTERLEAVING Int numSkipLine = iIsChroma? 2:4; if (m_saoInterleavingFlag == 0) { numSkipLine = 0; } #endif iPicWidthTmp = m_iPicWidth >> iIsChroma; iPicHeightTmp = m_iPicHeight >> iIsChroma; iLcuWidth = iLcuWidth >> iIsChroma; iLcuHeight = iLcuHeight >> iIsChroma; uiLPelX = uiLPelX >> iIsChroma; uiTPelY = uiTPelY >> iIsChroma; uiRPelX = uiLPelX + iLcuWidth ; uiBPelY = uiTPelY + iLcuHeight ; uiRPelX = uiRPelX > iPicWidthTmp ? iPicWidthTmp : uiRPelX; uiBPelY = uiBPelY > iPicHeightTmp ? iPicHeightTmp : uiBPelY; iLcuWidth = uiRPelX - uiLPelX; iLcuHeight = uiBPelY - uiTPelY; iStride = (iYCbCr == 0)? m_pcPic->getStride(): m_pcPic->getCStride(); //if(iSaoType == BO_0 || iSaoType == BO_1) #if HHI_INTERVIEW_SKIP if( !m_pcPic->getCU(iAddr)->getRenderable(0) ) #endif { #if SAO_UNIT_INTERLEAVING iStats = m_iOffsetOrg[iPartIdx][SAO_BO]; iCount = m_iCount [iPartIdx][SAO_BO]; #else iStats = m_iOffsetOrg[iPartIdx][SAO_BO_0]; iCount = m_iCount [iPartIdx][SAO_BO_0]; #endif pOrg = getPicYuvAddr(m_pcPic->getPicYuvOrg(), iYCbCr, iAddr); pRec = getPicYuvAddr(m_pcPic->getPicYuvRec(), iYCbCr, iAddr); #if SAO_UNIT_INTERLEAVING iEndY = (uiBPelY == iPicHeightTmp) ? iLcuHeight : iLcuHeight-numSkipLine; for (y=0; ygetPicYuvOrg(), iYCbCr, iAddr); pRec = getPicYuvAddr(m_pcPic->getPicYuvRec(), iYCbCr, iAddr); for (y=0; ygetCU(iAddr)->getRenderable(0) ) #endif { //if (iSaoType == EO_0) { iStats = m_iOffsetOrg[iPartIdx][SAO_EO_0]; iCount = m_iCount [iPartIdx][SAO_EO_0]; pOrg = getPicYuvAddr(m_pcPic->getPicYuvOrg(), iYCbCr, iAddr); pRec = getPicYuvAddr(m_pcPic->getPicYuvRec(), iYCbCr, iAddr); iStartX = (uiLPelX == 0) ? 1 : 0; iEndX = (uiRPelX == iPicWidthTmp) ? iLcuWidth-1 : iLcuWidth; #if SAO_UNIT_INTERLEAVING for (y=0; ygetPicYuvOrg(), iYCbCr, iAddr); pRec = getPicYuvAddr(m_pcPic->getPicYuvRec(), iYCbCr, iAddr); iStartY = (uiTPelY == 0) ? 1 : 0; #if SAO_UNIT_INTERLEAVING iEndY = (uiBPelY == iPicHeightTmp) ? iLcuHeight-1 : iLcuHeight-numSkipLine; #else iEndY = (uiBPelY == iPicHeightTmp) ? iLcuHeight-1 : iLcuHeight; #endif if (uiTPelY == 0) { pOrg += iStride; pRec += iStride; } for (x=0; x< iLcuWidth; x++) { m_iUpBuff1[x] = xSign(pRec[x] - pRec[x-iStride]); } for (y=iStartY; ygetPicYuvOrg(), iYCbCr, iAddr); pRec = getPicYuvAddr(m_pcPic->getPicYuvRec(), iYCbCr, iAddr); iStartX = (uiLPelX == 0) ? 1 : 0; iEndX = (uiRPelX == iPicWidthTmp) ? iLcuWidth-1 : iLcuWidth; iStartY = (uiTPelY == 0) ? 1 : 0; #if SAO_UNIT_INTERLEAVING iEndY = (uiBPelY == iPicHeightTmp) ? iLcuHeight-1 : iLcuHeight-numSkipLine; #else iEndY = (uiBPelY == iPicHeightTmp) ? iLcuHeight-1 : iLcuHeight; #endif if (uiTPelY == 0) { pOrg += iStride; pRec += iStride; } for (x=iStartX; xgetPicYuvOrg(), iYCbCr, iAddr); pRec = getPicYuvAddr(m_pcPic->getPicYuvRec(), iYCbCr, iAddr); iStartX = (uiLPelX == 0) ? 1 : 0; iEndX = (uiRPelX == iPicWidthTmp) ? iLcuWidth-1 : iLcuWidth; iStartY = (uiTPelY == 0) ? 1 : 0; #if SAO_UNIT_INTERLEAVING iEndY = (uiBPelY == iPicHeightTmp) ? iLcuHeight-1 : iLcuHeight-numSkipLine; #else iEndY = (uiBPelY == iPicHeightTmp) ? iLcuHeight-1 : iLcuHeight; #endif if (iStartY == 1) { pOrg += iStride; pRec += iStride; } for (x=iStartX-1; xgetFrameWidthInCU(); Int iDownPartIdx; Int iPartStart; Int iPartEnd; SAOQTPart* pOnePart; if (m_uiMaxSplitLevel == 0) { iPartIdx = 0; pOnePart = &(psQTPart[iPartIdx]); for (LcuIdxY = pOnePart->StartCUY; LcuIdxY<= pOnePart->EndCUY; LcuIdxY++) { for (LcuIdxX = pOnePart->StartCUX; LcuIdxX<= pOnePart->EndCUX; LcuIdxX++) { iAddr = LcuIdxY*iFrameWidthInCU + LcuIdxX; calcSaoStatsCu(iAddr, iPartIdx, iYCbCr); } } } else { for(iPartIdx=m_aiNumCulPartsLevel[m_uiMaxSplitLevel-1]; iPartIdxStartCUY; LcuIdxY<= pOnePart->EndCUY; LcuIdxY++) { for (LcuIdxX = pOnePart->StartCUX; LcuIdxX<= pOnePart->EndCUX; LcuIdxX++) { iAddr = LcuIdxY*iFrameWidthInCU + LcuIdxX; calcSaoStatsCu(iAddr, iPartIdx, iYCbCr); } } } for (iLevelIdx = m_uiMaxSplitLevel-1; iLevelIdx>=0; iLevelIdx-- ) { iPartStart = (iLevelIdx > 0) ? m_aiNumCulPartsLevel[iLevelIdx-1] : 0; iPartEnd = m_aiNumCulPartsLevel[iLevelIdx]; for(iPartIdx = iPartStart; iPartIdx < iPartEnd; iPartIdx++) { pOnePart = &(psQTPart[iPartIdx]); for (i=0; i< NUM_DOWN_PART; i++) { iDownPartIdx = pOnePart->DownPartsIdx[i]; for (iTypeIdx=0; iTypeIdxgetSlice(0)->getSliceType(); m_iPicNalReferenceIdc = (m_pcPic->getSlice(0)->isReferenced() ? 1 :0); #if SAO_CHROMA_LAMBDA m_dLambdaLuma = dLambdaLuma; m_dLambdaChroma = dLambdaChroma; #else m_dLambdaLuma = dLambda; m_dLambdaChroma = dLambda; #endif if(m_bUseNIF) { m_pcPic->getPicYuvRec()->copyToPic(m_pcYuvTmp); } #if FULL_NBIT m_uiSaoBitIncrease = g_uiBitDepth + (g_uiBitDepth-8) - min((Int)(g_uiBitDepth + (g_uiBitDepth-8)), 10); #else m_uiSaoBitIncrease = g_uiBitDepth + g_uiBitIncrement - min((Int)(g_uiBitDepth + g_uiBitIncrement), 10); #endif const Int iOffsetBitRange8Bit = 4; Int iOffsetBitDepth = g_uiBitDepth + g_uiBitIncrement - m_uiSaoBitIncrease; Int iOffsetBitRange = iOffsetBitRange8Bit + (iOffsetBitDepth - 8); m_iOffsetTh = 1 << (iOffsetBitRange - 1); resetSAOParam(pcSaoParam); resetStats(); Int iY = 0; Double dCostFinal = 0; #if !SAO_UNIT_INTERLEAVING Int iCb = 1; Int iCr = 2; Double dCostFinalCb = 0; Double dCostFinalCr = 0; #endif #if SAO_UNIT_INTERLEAVING if ( m_saoInterleavingFlag) { rdoSaoUnitAll(pcSaoParam, dLambdaLuma, dLambdaChroma); } else { pcSaoParam->bSaoFlag[0] = 1; pcSaoParam->bSaoFlag[1] = 0; pcSaoParam->bSaoFlag[2] = 0; for (Int compIdx=0;compIdx<3;compIdx++) { if (pcSaoParam->bSaoFlag[iY]) { dCostFinal = 0; Double lambdaRdo = (compIdx==0 ? dLambdaLuma: dLambdaChroma); resetStats(); getSaoStats(pcSaoParam->psSaoPart[compIdx], compIdx); runQuadTreeDecision(pcSaoParam->psSaoPart[compIdx], 0, dCostFinal, m_uiMaxSplitLevel, lambdaRdo); pcSaoParam->bSaoFlag[compIdx] = dCostFinal < 0 ? 1:0; if(pcSaoParam->bSaoFlag[compIdx]) { convertQT2SaoUnit(pcSaoParam, 0, compIdx); assignSaoUnitSyntax(pcSaoParam->saoLcuParam[compIdx], pcSaoParam->psSaoPart[compIdx], pcSaoParam->oneUnitFlag[compIdx], compIdx); } } } } for (Int compIdx=0;compIdx<3;compIdx++) { if (pcSaoParam->bSaoFlag[compIdx]) { processSaoUnitAll( pcSaoParam->saoLcuParam[compIdx], pcSaoParam->oneUnitFlag[compIdx], compIdx); } } #else getSaoStats(pcSaoParam->psSaoPart[iY], iY); runQuadTreeDecision(pcSaoParam->psSaoPart[iY], 0, dCostFinal, m_uiMaxSplitLevel, m_dLambdaLuma); pcSaoParam->bSaoFlag[iY] = dCostFinal < m_iDistOrg[0] ? 1:0; if(pcSaoParam->bSaoFlag[iY]) { processSaoQuadTree(pcSaoParam->psSaoPart[iY], 0, 0); resetStats(); getSaoStats(pcSaoParam->psSaoPart[iCb], iCb); runQuadTreeDecision(pcSaoParam->psSaoPart[iCb], 0, dCostFinalCb, m_uiMaxSplitLevel, m_dLambdaChroma); pcSaoParam->bSaoFlag[iCb] = dCostFinalCb < 0 ? 1:0; if (pcSaoParam->bSaoFlag[iCb]) { processSaoQuadTree(pcSaoParam->psSaoPart[iCb], 0, iCb); } resetStats(); getSaoStats(pcSaoParam->psSaoPart[iCr], iCr); runQuadTreeDecision(pcSaoParam->psSaoPart[iCr], 0, dCostFinalCr, m_uiMaxSplitLevel, m_dLambdaChroma); pcSaoParam->bSaoFlag[iCr] = dCostFinalCr < 0 ? 1:0; if (pcSaoParam->bSaoFlag[iCr]) { processSaoQuadTree(pcSaoParam->psSaoPart[iCr], 0, iCr); } } #endif } #if SAO_UNIT_INTERLEAVING /** Check merge SAO unit * \param saoUnitCurr current SAO unit * \param saoUnitCheck SAO unit tobe check * \param dir direction */ Void TEncSampleAdaptiveOffset::checkMerge(SaoLcuParam * saoUnitCurr, SaoLcuParam * saoUnitCheck, Int dir) { Int i ; Int countDiff = 0; if (saoUnitCurr->partIdx != saoUnitCheck->partIdx) { if (saoUnitCurr->typeIdx !=-1) { if (saoUnitCurr->typeIdx == saoUnitCheck->typeIdx) { for (i=0;ilength;i++) { countDiff += (saoUnitCurr->offset[i] != saoUnitCheck->offset[i]); } countDiff += (saoUnitCurr->bandPosition != saoUnitCheck->bandPosition); if (countDiff ==0) { saoUnitCurr->partIdx = saoUnitCheck->partIdx; if (dir == 1) { saoUnitCurr->mergeUpFlag = 1; saoUnitCurr->mergeLeftFlag = 0; } else { saoUnitCurr->mergeUpFlag = 0; saoUnitCurr->mergeLeftFlag = 1; } } } } else { if (saoUnitCurr->typeIdx == saoUnitCheck->typeIdx) { saoUnitCurr->partIdx = saoUnitCheck->partIdx; if (dir == 1) { saoUnitCurr->mergeUpFlag = 1; saoUnitCurr->mergeLeftFlag = 0; } else { saoUnitCurr->mergeUpFlag = 0; saoUnitCurr->mergeLeftFlag = 1; } } } } } /** Assign SAO unit syntax from picture-based algorithm * \param saoLcuParam SAO LCU parameters * \param saoPart SAO part * \param oneUnitFlag SAO one unit flag * \param iYCbCr color component Index */ Void TEncSampleAdaptiveOffset::assignSaoUnitSyntax(SaoLcuParam* saoLcuParam, SAOQTPart* saoPart, Bool &oneUnitFlag, Int yCbCr) { if (saoPart->bSplit == 0) { oneUnitFlag = 1; } else { Int i,j, addr, addrUp, addrLeft, idx, idxUp, idxLeft, idxCount; Int run; Int runPartBeginAddr=0; Int runPart; Int runPartPrevious; oneUnitFlag = 0; idxCount = -1; saoLcuParam[0].mergeUpFlag = 0; saoLcuParam[0].mergeLeftFlag = 0; for (j=0;j=0) { saoLcuParam[addr].runDiff = saoLcuParam[addr].run - saoLcuParam[addrUp].run; } else { saoLcuParam[addr].runDiff = saoLcuParam[addr].run ; } } } } } /** rate distortion optimization of all SAO units * \param saoParam SAO parameters * \param lambda * \param lambdaChroma */ Void TEncSampleAdaptiveOffset::rdoSaoUnitAll(SAOParam *saoParam, Double lambda, Double lambdaChroma) { Int idxY; Int idxX; Int frameHeightInCU = saoParam->numCuInHeight; Int frameWidthInCU = saoParam->numCuInWidth; Int j, k; Int addr = 0; Int addrUp = -1; Int addrLeft = -1; Int compIdx = 0; Double lambdaComp; saoParam->bSaoFlag[0] = true; saoParam->bSaoFlag[1] = true; saoParam->bSaoFlag[2] = true; saoParam->oneUnitFlag[0] = false; saoParam->oneUnitFlag[1] = false; saoParam->oneUnitFlag[2] = false; for (idxY = 0; idxY< frameHeightInCU; idxY++) { for (idxX = 0; idxX< frameWidthInCU; idxX++) { addr = idxX + frameWidthInCU*idxY; addrUp = addr < frameWidthInCU ? -1:idxX + frameWidthInCU*(idxY-1); addrLeft = idxX == 0 ? -1:idxX-1 + frameWidthInCU*idxY; // reset stats Y, Cb, Cr for ( compIdx=0;compIdx<3;compIdx++) { for ( j=0;jsaoLcuParam[compIdx][addr].typeIdx = -1; saoParam->saoLcuParam[compIdx][addr].mergeUpFlag = 0; saoParam->saoLcuParam[compIdx][addr].run = 0; saoParam->saoLcuParam[compIdx][addr].runDiff = 0; saoParam->saoLcuParam[compIdx][addr].mergeLeftFlag = 0; saoParam->saoLcuParam[compIdx][addr].bandPosition = 0; lambdaComp = compIdx==0 ? lambda : lambdaChroma; calcSaoStatsCu(addr, compIdx, compIdx); rdoSaoUnit (saoParam, addr, addrUp, addrLeft, compIdx, lambdaComp); #if !REMOVE_SAO_LCU_ENC_CONSTRAINTS_3 if (compIdx!=0) { if ( saoParam->saoLcuParam[compIdx][0].typeIdx == -1 ) { saoParam->bSaoFlag[compIdx] = false; } } #endif } } } } /** rate distortion optimization of SAO unit * \param saoParam SAO parameters * \param addr address * \param addrUp above address * \param addrLeft left address * \param yCbCr color component index * \param lambda */ Void TEncSampleAdaptiveOffset::rdoSaoUnit(SAOParam *saoParam, Int addr, Int addrUp, Int addrLeft, Int yCbCr, Double lambda) { Int typeIdx; Int64 estDist; Int64 offsetOrg; Int64 offset; Int64 count; Int classIdx; Int shift = g_uiBitIncrement << 1; // Double dAreaWeight = 0; Double complexityCost = 0; SaoLcuParam* saoLcuParam = NULL; SaoLcuParam* saoLcuParamNeighbor = NULL; Int merge_iOffset [33]; Int64 merge_iDist; Int merge_iRate; Double merge_dCost; Int offsetTh = m_iOffsetTh; saoLcuParam = &(saoParam->saoLcuParam[yCbCr][addr]); saoLcuParam->mergeUpFlag = 0; saoLcuParam->mergeLeftFlag = 0; saoLcuParam->run = 0; saoLcuParam->runDiff= 0; m_iTypePartBest[yCbCr] = -1; m_dCostPartBest[yCbCr] = 0; m_iDistOrg[yCbCr] = 0; Double bestRDCostTableBo = MAX_DOUBLE; Int bestClassTableBo = 0; Int currentDistortionTableBo[MAX_NUM_SAO_CLASS]; Double currentRdCostTableBo[MAX_NUM_SAO_CLASS]; Int bestClassTableBoMerge = 0; #if HHI_INTERVIEW_SKIP Bool bRenderable = m_pcPic->getCU(addr)->getRenderable(0) ; #endif for (typeIdx=-1; typeIdxresetEntropy(); m_pcEntropyCoder->resetBits(); if (m_saoInterleavingFlag) { #if !REMOVE_SAO_LCU_ENC_CONSTRAINTS_1 if(yCbCr>0 && typeIdx>3 ) { continue; } #endif #if !REMOVE_SAO_LCU_ENC_CONSTRAINTS_2 if (yCbCr>0 ) { offsetTh = 2<m_pcEntropyCoderIf->codeSaoTypeIdx(typeIdx+1); if (typeIdx>=0) { for(classIdx=1; classIdx < ( (typeIdx < SAO_BO) ? m_iNumClass[typeIdx]+1 : SAO_MAX_BO_CLASSES+1); classIdx++) { if( typeIdx == SAO_BO) { currentDistortionTableBo[classIdx-1] = 0; currentRdCostTableBo[classIdx-1] = lambda; } #if HHI_INTERVIEW_SKIP if(m_iCount [yCbCr][typeIdx][classIdx] && !bRenderable) #else if(m_iCount [yCbCr][typeIdx][classIdx]) #endif { m_iOffset[yCbCr][typeIdx][classIdx] = (Int64) xRoundIbdi((Double)(m_iOffsetOrg[yCbCr][typeIdx][classIdx]<0 && classIdx>=3) { m_iOffset[yCbCr][typeIdx][classIdx] = 0; } } { //Clean up, best_q_offset. Int64 iIterOffset, iTempOffset; Int64 iTempDist, iTempRate; Double dTempCost, dTempMinCost; UInt uiLength, uiTemp; iIterOffset = m_iOffset[yCbCr][typeIdx][classIdx]; m_iOffset[yCbCr][typeIdx][classIdx] = 0; dTempMinCost = lambda; // Assuming sending quantized value 0 results in zero offset and sending the value zero needs 1 bit. entropy coder can be used to measure the exact rate here. while (iIterOffset != 0) { // Calculate the bits required for signalling the offset uiLength = 1; uiTemp = (UInt)((iIterOffset <= 0) ? ( (-iIterOffset<<1) + 1 ) : (iIterOffset<<1)); while( 1 != uiTemp ) { uiTemp >>= 1; uiLength += 2; } iTempRate = (uiLength >> 1) + ((uiLength+1) >> 1); // Do the dequntization before distorion calculation iTempOffset = iIterOffset << m_uiSaoBitIncrease; iTempDist = (( m_iCount [yCbCr][typeIdx][classIdx]*iTempOffset*iTempOffset-m_iOffsetOrg[yCbCr][typeIdx][classIdx]*iTempOffset*2 ) >> shift); dTempCost = ((Double)iTempDist + lambda * (Double) iTempRate); if(dTempCost < dTempMinCost) { dTempMinCost = dTempCost; m_iOffset[yCbCr][typeIdx][classIdx] = iIterOffset; if(typeIdx == SAO_BO) { currentDistortionTableBo[classIdx-1] = (Int) iTempDist; currentRdCostTableBo[classIdx-1] = dTempCost; } } iIterOffset = (iIterOffset > 0) ? (iIterOffset-1):(iIterOffset+1); } } } else { m_iOffsetOrg[yCbCr][typeIdx][classIdx] = 0; m_iOffset[yCbCr][typeIdx][classIdx] = 0; } if( typeIdx != SAO_BO ) { count = m_iCount [yCbCr][typeIdx][classIdx]; offset = m_iOffset[yCbCr][typeIdx][classIdx] << m_uiSaoBitIncrease; offsetOrg = m_iOffsetOrg[yCbCr][typeIdx][classIdx]; #if HHI_INTERVIEW_SKIP if (!bRenderable) { estDist += (( count*offset*offset-offsetOrg*offset*2 ) >> shift); } #else estDist += (( count*offset*offset-offsetOrg*offset*2 ) >> shift); #endif if (typeIdx < 4) { if (classIdx<3) { m_pcEntropyCoder->m_pcEntropyCoderIf->codeSaoUvlc((Int)m_iOffset[yCbCr][typeIdx][classIdx]); } else { m_pcEntropyCoder->m_pcEntropyCoderIf->codeSaoUvlc((Int)-m_iOffset[yCbCr][typeIdx][classIdx]); } } else { m_pcEntropyCoder->m_pcEntropyCoderIf->codeSaoSvlc((Int)m_iOffset[yCbCr][typeIdx][classIdx]); } } } if( typeIdx == SAO_BO ) { // Estimate Best Position Double currentRDCost = 0.0; for(Int i=0; i< SAO_MAX_BO_CLASSES -SAO_BO_LEN +1; i++) { currentRDCost = 0.0; for(UInt uj = i; uj < i+SAO_BO_LEN; uj++) { currentRDCost += currentRdCostTableBo[uj]; } if( currentRDCost < bestRDCostTableBo) { bestRDCostTableBo = currentRDCost; bestClassTableBo = i; } } // Re code all Offsets // Code Center m_pcEntropyCoder->m_pcEntropyCoderIf->codeSaoUflc( (UInt) (bestClassTableBo) ); for(classIdx = bestClassTableBo; classIdx < bestClassTableBo+SAO_BO_LEN; classIdx++) { m_pcEntropyCoder->m_pcEntropyCoderIf->codeSaoSvlc((Int)m_iOffset[yCbCr][typeIdx][classIdx+1]); #if HHI_INTERVIEW_SKIP if (!bRenderable) { estDist += currentDistortionTableBo[classIdx]; } #else estDist += currentDistortionTableBo[classIdx]; #endif } } m_iDist[yCbCr][typeIdx] = estDist; m_iRate[yCbCr][typeIdx] = m_pcEntropyCoder->getNumberOfWrittenBits(); m_dCost[yCbCr][typeIdx] = (Double)((Double)m_iDist[yCbCr][typeIdx] + lambda * (Double) m_iRate[yCbCr][typeIdx]); if(m_dCost[yCbCr][typeIdx] < m_dCostPartBest[yCbCr]) { m_iDistOrg [yCbCr] = (Int64)complexityCost; m_dCostPartBest[yCbCr] = m_dCost[yCbCr][typeIdx]; m_iTypePartBest[yCbCr] = typeIdx; } } else { if(m_iDistOrg[yCbCr] < m_dCostPartBest[yCbCr]) { m_dCostPartBest[yCbCr] = (Double) m_iDistOrg[yCbCr] + m_pcEntropyCoder->getNumberOfWrittenBits()*lambda ; m_iTypePartBest[yCbCr] = -1; } } } // merge left or merge up for (Int idxNeighbor=0;idxNeighbor<2;idxNeighbor++) { saoLcuParamNeighbor = NULL; if (addrLeft>=0 && idxNeighbor ==0) { saoLcuParamNeighbor = &(saoParam->saoLcuParam[yCbCr][addrLeft]); } else if (addrUp>=0 && idxNeighbor ==1) { saoLcuParamNeighbor = &(saoParam->saoLcuParam[yCbCr][addrUp]); } if (saoLcuParamNeighbor!=NULL) { if (saoLcuParamNeighbor->typeIdx>=0) //new { m_pcEntropyCoder->resetEntropy(); m_pcEntropyCoder->resetBits(); estDist = 0; typeIdx = saoLcuParamNeighbor->typeIdx; m_pcEntropyCoder->m_pcEntropyCoderIf->codeSaoFlag(1); if (saoLcuParamNeighbor->typeIdx == SAO_BO) { for(classIdx = saoLcuParamNeighbor->bandPosition+1; classIdx < saoLcuParamNeighbor->bandPosition+SAO_BO_LEN+1; classIdx++) { merge_iOffset[classIdx] = saoLcuParamNeighbor->offset[classIdx-1-saoLcuParamNeighbor->bandPosition]; count = m_iCount [yCbCr][typeIdx][classIdx]; offset = merge_iOffset[classIdx]; offsetOrg = m_iOffsetOrg[yCbCr][typeIdx][classIdx]; #if HHI_INTERVIEW_SKIP if (!bRenderable) { estDist += (( count*offset*offset-offsetOrg*offset*2 ) >> shift); } #else estDist += (( count*offset*offset-offsetOrg*offset*2 ) >> shift); #endif } } else { for(classIdx=1; classIdx < m_iNumClass[typeIdx]+1; classIdx++) { merge_iOffset[classIdx] = saoLcuParamNeighbor->offset[classIdx-1]; count = m_iCount [yCbCr][typeIdx][classIdx]; offset = merge_iOffset[classIdx]; offsetOrg = m_iOffsetOrg[yCbCr][typeIdx][classIdx]; #if HHI_INTERVIEW_SKIP if (!bRenderable) { estDist += (( count*offset*offset-offsetOrg*offset*2 ) >> shift); } #else estDist += (( count*offset*offset-offsetOrg*offset*2 ) >> shift); #endif } } merge_iDist = estDist; merge_iRate = m_pcEntropyCoder->getNumberOfWrittenBits(); merge_dCost = (Double)((Double)merge_iDist + m_dLambdaLuma * (Double) merge_iRate) ; if(merge_dCost < m_dCostPartBest[yCbCr]) { m_iDistOrg [yCbCr] = (Int64)complexityCost; m_dCostPartBest[yCbCr] = merge_dCost; m_iTypePartBest[yCbCr] = typeIdx; if (typeIdx == SAO_BO) { bestClassTableBoMerge = saoLcuParamNeighbor->bandPosition; for(classIdx = saoLcuParamNeighbor->bandPosition+1; classIdx < saoLcuParamNeighbor->bandPosition+SAO_BO_LEN+1; classIdx++) { m_iOffset[yCbCr][typeIdx][classIdx] = merge_iOffset[classIdx]; } } else { for(classIdx=1; classIdx < m_iNumClass[typeIdx]+1; classIdx++) { m_iOffset[yCbCr][typeIdx][classIdx] = merge_iOffset[classIdx]; } } saoLcuParam->mergeUpFlag = idxNeighbor; saoLcuParam->mergeLeftFlag = !idxNeighbor; } } } } saoLcuParam->typeIdx = m_iTypePartBest[yCbCr]; if (saoLcuParam->typeIdx != -1) { saoLcuParam->length = m_iNumClass[saoLcuParam->typeIdx]; Int minIndex = 0; if( saoLcuParam->typeIdx == SAO_BO ) { if ((saoLcuParam->mergeUpFlag )||(saoLcuParam->mergeLeftFlag)) { saoLcuParam->bandPosition = bestClassTableBoMerge; } else { saoLcuParam->bandPosition = bestClassTableBo; } minIndex = saoLcuParam->bandPosition; } for (Int i=0; i< saoLcuParam->length ; i++) { saoLcuParam->offset[i] = (Int) m_iOffset[yCbCr][saoLcuParam->typeIdx][minIndex+i+1]; } } else { saoLcuParam->length = 0; } if (addrUp>=0) { if (saoLcuParam->typeIdx == -1 && saoParam->saoLcuParam[yCbCr][addrUp].typeIdx == -1) { saoLcuParam->mergeUpFlag = 1; saoLcuParam->mergeLeftFlag = 0; } } if (addrLeft>=0) { if (saoLcuParam->typeIdx == -1 && saoParam->saoLcuParam[yCbCr][addrLeft].typeIdx == -1) { saoLcuParam->mergeUpFlag = 0; saoLcuParam->mergeLeftFlag = 1; } } } #endif //! \}