diff --git a/source/Lib/CommonLib/ContextModelling.cpp b/source/Lib/CommonLib/ContextModelling.cpp index 124c8141af24980b1bc5e481e8202f95ddea0f94..d96918acc4d041103796214cdff550ff7a83c7df 100644 --- a/source/Lib/CommonLib/ContextModelling.cpp +++ b/source/Lib/CommonLib/ContextModelling.cpp @@ -81,13 +81,9 @@ CoeffCodingContext::CoeffCodingContext(const TransformUnit& tu, ComponentID comp #endif #if JVET_M0102_INTRA_SUBPARTITIONS , m_scan (g_scanOrder [m_chType][SCAN_GROUPED_4x4][m_scanType][gp_sizeIdxInfo->idxFrom(m_width )][gp_sizeIdxInfo->idxFrom(m_height )]) - , m_scanPosX (g_scanOrderPosXY[m_chType][SCAN_GROUPED_4x4][m_scanType][gp_sizeIdxInfo->idxFrom(m_width )][gp_sizeIdxInfo->idxFrom(m_height )][0]) - , m_scanPosY (g_scanOrderPosXY[m_chType][SCAN_GROUPED_4x4][m_scanType][gp_sizeIdxInfo->idxFrom(m_width )][gp_sizeIdxInfo->idxFrom(m_height )][1]) , m_scanCG (g_scanOrder [m_chType][SCAN_UNGROUPED ][m_scanType][gp_sizeIdxInfo->idxFrom(m_widthInGroups)][gp_sizeIdxInfo->idxFrom(m_heightInGroups)]) #else , m_scan (g_scanOrder [SCAN_GROUPED_4x4][m_scanType][gp_sizeIdxInfo->idxFrom(m_width )][gp_sizeIdxInfo->idxFrom(m_height )]) - , m_scanPosX (g_scanOrderPosXY[SCAN_GROUPED_4x4][m_scanType][gp_sizeIdxInfo->idxFrom(m_width )][gp_sizeIdxInfo->idxFrom(m_height )][0]) - , m_scanPosY (g_scanOrderPosXY[SCAN_GROUPED_4x4][m_scanType][gp_sizeIdxInfo->idxFrom(m_width )][gp_sizeIdxInfo->idxFrom(m_height )][1]) , m_scanCG (g_scanOrder[SCAN_UNGROUPED ][m_scanType][gp_sizeIdxInfo->idxFrom(m_widthInGroups)][gp_sizeIdxInfo->idxFrom(m_heightInGroups)]) #endif , m_CtxSetLastX (Ctx::LastX[m_chType]) @@ -159,7 +155,7 @@ CoeffCodingContext::CoeffCodingContext(const TransformUnit& tu, ComponentID comp void CoeffCodingContext::initSubblock( int SubsetId, bool sigGroupFlag ) { m_subSetId = SubsetId; - m_subSetPos = m_scanCG[ m_subSetId ]; + m_subSetPos = m_scanCG[m_subSetId].idx; m_subSetPosY = m_subSetPos / m_widthInGroups; m_subSetPosX = m_subSetPos - ( m_subSetPosY * m_widthInGroups ); m_minSubPos = m_subSetId << m_log2CGSize; diff --git a/source/Lib/CommonLib/ContextModelling.h b/source/Lib/CommonLib/ContextModelling.h index ad04968c430c57583f3f84fe6617df6b4427b8ab..5e6b2db73a4ee36c8b5738c6055c26ca065df37d 100644 --- a/source/Lib/CommonLib/ContextModelling.h +++ b/source/Lib/CommonLib/ContextModelling.h @@ -86,7 +86,7 @@ public: int maxSubPos () const { return m_maxSubPos; } bool isLast () const { return ( ( m_scanPosLast >> m_log2CGSize ) == m_subSetId ); } bool isNotFirst () const { return ( m_subSetId != 0 ); } - bool isSigGroup ( int scanPosCG ) const { return m_sigCoeffGroupFlag[ m_scanCG[ scanPosCG ] ]; } + bool isSigGroup(int scanPosCG) const { return m_sigCoeffGroupFlag[m_scanCG[scanPosCG].idx]; } bool isSigGroup () const { return m_sigCoeffGroupFlag[ m_subSetPos ]; } #if HEVC_USE_SIGN_HIDING bool signHiding () const { return m_signHiding; } @@ -94,9 +94,9 @@ public: int posLast ) const { return ( m_signHiding && ( posLast - posFirst >= SBH_THRESHOLD ) ); } #endif CoeffScanType scanType () const { return m_scanType; } - unsigned blockPos ( int scanPos ) const { return m_scan[ scanPos ]; } - unsigned posX ( int scanPos ) const { return m_scanPosX[ scanPos ]; } - unsigned posY ( int scanPos ) const { return m_scanPosY[ scanPos ]; } + unsigned blockPos(int scanPos) const { return m_scan[scanPos].idx; } + unsigned posX(int scanPos) const { return m_scan[scanPos].x; } + unsigned posY(int scanPos) const { return m_scan[scanPos].y; } unsigned maxLastPosX () const { return m_maxLastPosX; } unsigned maxLastPosY () const { return m_maxLastPosY; } unsigned lastXCtxId ( unsigned posLastX ) const { return m_CtxSetLastX( m_lastOffsetX + ( posLastX >> m_lastShiftX ) ); } @@ -105,8 +105,8 @@ public: unsigned sigCtxIdAbs( int scanPos, const TCoeff* coeff, const int state ) { - const uint32_t posY = m_scanPosY[ scanPos ]; - const uint32_t posX = m_scanPosX[ scanPos ]; + const uint32_t posY = m_scan[scanPos].y; + const uint32_t posX = m_scan[scanPos].x; const TCoeff* pData = coeff + posX + posY * m_width; const int diag = posX + posY; int numPos = 0; @@ -164,8 +164,8 @@ public: unsigned templateAbsSum( int scanPos, const TCoeff* coeff ) { - const uint32_t posY = m_scanPosY[scanPos]; - const uint32_t posX = m_scanPosX[scanPos]; + const uint32_t posY = m_scan[scanPos].y; + const uint32_t posX = m_scan[scanPos].x; const TCoeff* pData = coeff + posX + posY * m_width; int sum = 0; if (posX < m_width - 1) @@ -217,10 +217,8 @@ private: const bool m_extendedPrecision; const int m_maxLog2TrDynamicRange; CoeffScanType m_scanType; - const unsigned* m_scan; - const unsigned* m_scanPosX; - const unsigned* m_scanPosY; - const unsigned* m_scanCG; + const ScanElement * m_scan; + const ScanElement * m_scanCG; const CtxSet m_CtxSetLastX; const CtxSet m_CtxSetLastY; const unsigned m_maxLastPosX; diff --git a/source/Lib/CommonLib/DepQuant.cpp b/source/Lib/CommonLib/DepQuant.cpp index 3cb029cc85825ceb38e0249e35a827debf0373e7..e8501224c775cbf02c8cf5507015a49c09ecedac 100644 --- a/source/Lib/CommonLib/DepQuant.cpp +++ b/source/Lib/CommonLib/DepQuant.cpp @@ -115,10 +115,8 @@ namespace DQIntern unsigned m_widthInSbb; unsigned m_heightInSbb; CoeffScanType m_scanType; - const unsigned* m_scanSbbId2SbbPos; - const unsigned* m_scanId2BlkPos; - const unsigned* m_scanId2PosX; - const unsigned* m_scanId2PosY; + const ScanElement *m_scanSbbId2SbbPos; + const ScanElement *m_scanId2BlkPos; const NbInfoSbb* m_scanId2NbInfoSbb; const NbInfoOut* m_scanId2NbInfoOut; ScanInfo* m_scanInfo; @@ -204,15 +202,11 @@ namespace DQIntern const SizeType blkWidthIdx = gp_sizeIdxInfo->idxFrom( blockWidth ); const SizeType blkHeightIdx = gp_sizeIdxInfo->idxFrom( blockHeight ); #if JVET_M0102_INTRA_SUBPARTITIONS - const uint32_t* scanId2RP = g_scanOrder [ch][SCAN_GROUPED_4x4][scanType][blkWidthIdx][blkHeightIdx]; - const uint32_t* scanId2X = g_scanOrderPosXY[ch][SCAN_GROUPED_4x4][scanType][blkWidthIdx][blkHeightIdx][0]; - const uint32_t* scanId2Y = g_scanOrderPosXY[ch][SCAN_GROUPED_4x4][scanType][blkWidthIdx][blkHeightIdx][1]; + const ScanElement * scanId2RP = g_scanOrder[ch][SCAN_GROUPED_4x4][scanType][blkWidthIdx][blkHeightIdx]; NbInfoSbb*& sId2NbSbb = m_scanId2NbInfoSbbArray[hd][vd][ch]; NbInfoOut*& sId2NbOut = m_scanId2NbInfoOutArray[hd][vd][ch]; #else - const uint32_t* scanId2RP = g_scanOrder [SCAN_GROUPED_4x4][scanType][blkWidthIdx][blkHeightIdx]; - const uint32_t* scanId2X = g_scanOrderPosXY[SCAN_GROUPED_4x4][scanType][blkWidthIdx][blkHeightIdx][0]; - const uint32_t* scanId2Y = g_scanOrderPosXY[SCAN_GROUPED_4x4][scanType][blkWidthIdx][blkHeightIdx][1]; + const ScanElement * scanId2RP = g_scanOrder[SCAN_GROUPED_4x4][scanType][blkWidthIdx][blkHeightIdx]; NbInfoSbb*& sId2NbSbb = m_scanId2NbInfoSbbArray[hd][vd]; NbInfoOut*& sId2NbOut = m_scanId2NbInfoOutArray[hd][vd]; #endif @@ -231,14 +225,14 @@ namespace DQIntern for( uint32_t scanId = 0; scanId < totalValues; scanId++ ) { - raster2id[ scanId2RP[ scanId ] ] = scanId; + raster2id[scanId2RP[scanId].idx] = scanId; } for( unsigned scanId = 0; scanId < totalValues; scanId++ ) { - const int posX = scanId2X [ scanId ]; - const int posY = scanId2Y [ scanId ]; - const int rpos = scanId2RP[ scanId ]; + const int posX = scanId2RP[scanId].x; + const int posY = scanId2RP[scanId].y; + const int rpos = scanId2RP[scanId].idx; { //===== inside subband neighbours ===== NbInfoSbb& nbSbb = sId2NbSbb[ scanId ]; @@ -454,8 +448,6 @@ namespace DQIntern #if JVET_M0102_INTRA_SUBPARTITIONS m_scanSbbId2SbbPos = g_scanOrder [ chType ][ SCAN_UNGROUPED ][ m_scanType ][ hsbb ][ vsbb ]; m_scanId2BlkPos = g_scanOrder [ chType ][ SCAN_GROUPED_4x4 ][ m_scanType ][ hsId ][ vsId ]; - m_scanId2PosX = g_scanOrderPosXY[ chType ][ SCAN_GROUPED_4x4 ][ m_scanType ][ hsId ][ vsId ][ 0 ]; - m_scanId2PosY = g_scanOrderPosXY[ chType ][ SCAN_GROUPED_4x4 ][ m_scanType ][ hsId ][ vsId ][ 1 ]; int log2W = g_aucLog2[ m_width ]; int log2H = g_aucLog2[ m_height ]; m_scanId2NbInfoSbb = rom.getNbInfoSbb( log2W, log2H, chType ); @@ -463,8 +455,6 @@ namespace DQIntern #else m_scanSbbId2SbbPos = g_scanOrder [ SCAN_UNGROUPED ][ m_scanType ][ hsbb ][ vsbb ]; m_scanId2BlkPos = g_scanOrder [ SCAN_GROUPED_4x4 ][ m_scanType ][ hsId ][ vsId ]; - m_scanId2PosX = g_scanOrderPosXY[ SCAN_GROUPED_4x4 ][ m_scanType ][ hsId ][ vsId ][ 0 ]; - m_scanId2PosY = g_scanOrderPosXY[ SCAN_GROUPED_4x4 ][ m_scanType ][ hsId ][ vsId ][ 1 ]; int log2W = g_aucLog2[ m_width ]; int log2H = g_aucLog2[ m_height ]; m_scanId2NbInfoSbb = rom.getNbInfoSbb( log2W, log2H ); @@ -483,8 +473,8 @@ namespace DQIntern scanInfo.sbbSize = m_sbbSize; scanInfo.numSbb = m_numSbb; scanInfo.scanIdx = scanIdx; - scanInfo.rasterPos = m_scanId2BlkPos[ scanIdx ]; - scanInfo.sbbPos = m_scanSbbId2SbbPos[ scanIdx >> m_log2SbbSize ]; + scanInfo.rasterPos = m_scanId2BlkPos[scanIdx].idx; + scanInfo.sbbPos = m_scanSbbId2SbbPos[scanIdx >> m_log2SbbSize].idx; scanInfo.insidePos = scanIdx & m_sbbMask; scanInfo.eosbb = ( scanInfo.insidePos == 0 ); scanInfo.spt = SCAN_ISCSBB; @@ -493,13 +483,13 @@ namespace DQIntern else if( scanInfo.eosbb && scanIdx > 0 && scanIdx < m_numCoeff - m_sbbSize ) scanInfo.spt = SCAN_EOCSBB; #if JVET_M0297_32PT_MTS_ZERO_OUT - scanInfo.posX = m_scanId2PosX[ scanIdx ]; - scanInfo.posY = m_scanId2PosY[ scanIdx ]; + scanInfo.posX = m_scanId2BlkPos[scanIdx].x; + scanInfo.posY = m_scanId2BlkPos[scanIdx].y; #endif if( scanIdx ) { const int nextScanIdx = scanIdx - 1; - const int diag = m_scanId2PosX[ nextScanIdx ] + m_scanId2PosY[ nextScanIdx ]; + const int diag = m_scanId2BlkPos[nextScanIdx].x + m_scanId2BlkPos[nextScanIdx].y; if( m_chType == CHANNEL_TYPE_LUMA ) { scanInfo.sigCtxOffsetNext = ( diag < 2 ? 12 : diag < 5 ? 6 : 0 ); @@ -514,7 +504,7 @@ namespace DQIntern scanInfo.nextNbInfoSbb = m_scanId2NbInfoSbb[ nextScanIdx ]; if( scanInfo.eosbb ) { - const int nextSbbPos = m_scanSbbId2SbbPos[ nextScanIdx >> m_log2SbbSize ]; + const int nextSbbPos = m_scanSbbId2SbbPos[nextScanIdx >> m_log2SbbSize].idx; const int nextSbbPosY = nextSbbPos / m_widthInSbb; const int nextSbbPosX = nextSbbPos - nextSbbPosY * m_widthInSbb; scanInfo.nextSbbRight = ( nextSbbPosX < m_widthInSbb - 1 ? nextSbbPos + 1 : 0 ); @@ -540,7 +530,7 @@ namespace DQIntern inline const CoeffFracBits *gtxFracBits(unsigned stateId) const { return m_gtxFracBits; } inline int32_t lastOffset(unsigned scanIdx) const { - return m_lastBitsX[m_scanId2PosX[scanIdx]] + m_lastBitsY[m_scanId2PosY[scanIdx]]; + return m_lastBitsX[m_scanId2Pos[scanIdx].x] + m_lastBitsY[m_scanId2Pos[scanIdx].y]; } private: @@ -557,8 +547,7 @@ namespace DQIntern static const unsigned sm_maxNumGtxCtx = 21; private: - const unsigned* m_scanId2PosX; - const unsigned* m_scanId2PosY; + const ScanElement * m_scanId2Pos; int32_t m_lastBitsX [ MAX_TU_SIZE ]; int32_t m_lastBitsY [ MAX_TU_SIZE ]; BinFracBits m_sigSbbFracBits [ sm_maxNumSigSbbCtx ]; @@ -568,8 +557,7 @@ namespace DQIntern void RateEstimator::initCtx( const TUParameters& tuPars, const TransformUnit& tu, const ComponentID compID, const FracBitsAccess& fracBitsAccess ) { - m_scanId2PosX = tuPars.m_scanId2PosX; - m_scanId2PosY = tuPars.m_scanId2PosY; + m_scanId2Pos = tuPars.m_scanId2BlkPos; xSetSigSbbFracBits ( fracBitsAccess, tuPars.m_chType ); xSetSigFlagBits ( fracBitsAccess, tuPars.m_chType ); xSetGtxFlagBits ( fracBitsAccess, tuPars.m_chType ); @@ -868,9 +856,9 @@ namespace DQIntern const CoeffScanType scanType = SCAN_DIAG; #endif #if JVET_M0102_INTRA_SUBPARTITIONS - const unsigned* scan = g_scanOrder[ toChannelType(compID) ][ SCAN_GROUPED_4x4 ][ scanType ][ hsId ][ vsId ]; + const ScanElement *scan = g_scanOrder[toChannelType(compID)][SCAN_GROUPED_4x4][scanType][hsId][vsId]; #else - const unsigned* scan = g_scanOrder[ SCAN_GROUPED_4x4 ][ scanType ][ hsId ][ vsId ]; + const ScanElement * scan = g_scanOrder[SCAN_GROUPED_4x4][scanType][hsId][vsId]; #endif const TCoeff* qCoeff = tu.getCoeffs( compID ).buf; TCoeff* tCoeff = recCoeff.buf; @@ -880,7 +868,7 @@ namespace DQIntern int lastScanIdx = -1; for( int scanIdx = numCoeff - 1; scanIdx >= 0; scanIdx-- ) { - if( qCoeff[ scan[ scanIdx ] ] ) + if (qCoeff[scan[scanIdx].idx]) { lastScanIdx = scanIdx; break; @@ -930,7 +918,7 @@ namespace DQIntern //----- dequant coefficients ----- for( int state = 0, scanIdx = lastScanIdx; scanIdx >= 0; scanIdx-- ) { - const unsigned rasterPos = scan [ scanIdx ]; + const unsigned rasterPos = scan[scanIdx].idx; const TCoeff& level = qCoeff[ rasterPos ]; if( level ) { @@ -1677,7 +1665,7 @@ namespace DQIntern const TCoeff thres = m_quant.getLastThreshold(); for( ; firstTestPos >= 0; firstTestPos-- ) { - if( abs( tCoeff[ tuPars.m_scanId2BlkPos[firstTestPos] ] ) > thres ) + if (abs(tCoeff[tuPars.m_scanId2BlkPos[firstTestPos].idx]) > thres) { break; } @@ -1740,7 +1728,7 @@ namespace DQIntern for( ; decision.prevId >= 0; scanIdx++ ) { decision = m_trellis[ scanIdx ][ decision.prevId ]; - int32_t blkpos = tuPars.m_scanId2BlkPos[ scanIdx ]; + int32_t blkpos = tuPars.m_scanId2BlkPos[scanIdx].idx; qCoeff[ blkpos ] = ( tCoeff[ blkpos ] < 0 ? -decision.absLevel : decision.absLevel ); absSum += decision.absLevel; } diff --git a/source/Lib/CommonLib/Rom.cpp b/source/Lib/CommonLib/Rom.cpp index 7e845a9930f7eee835e89b85e6d7cd67871fa998..d2e45089664850f87bf095c792926f52eb326c4b 100644 --- a/source/Lib/CommonLib/Rom.cpp +++ b/source/Lib/CommonLib/Rom.cpp @@ -416,17 +416,24 @@ void initROM() for (uint32_t scanTypeIndex = 0; scanTypeIndex < SCAN_NUMBER_OF_TYPES; scanTypeIndex++) { const CoeffScanType scanType = CoeffScanType(scanTypeIndex); + ScanElement * scan = nullptr; + + if (blockWidthIdx < sizeInfo.numWidths() && blockHeightIdx < sizeInfo.numHeights()) + { + scan = new ScanElement[totalValues]; + } #if JVET_M0102_INTRA_SUBPARTITIONS - g_scanOrder [ch][SCAN_UNGROUPED][scanType][blockWidthIdx][blockHeightIdx] = new uint32_t[totalValues]; - g_scanOrderPosXY[ch][SCAN_UNGROUPED][scanType][blockWidthIdx][blockHeightIdx][0] = new uint32_t[totalValues]; - g_scanOrderPosXY[ch][SCAN_UNGROUPED][scanType][blockWidthIdx][blockHeightIdx][1] = new uint32_t[totalValues]; + g_scanOrder[ch][SCAN_UNGROUPED][scanType][blockWidthIdx][blockHeightIdx] = scan; #else - g_scanOrder [SCAN_UNGROUPED][scanType][blockWidthIdx][blockHeightIdx] = new uint32_t[totalValues]; - g_scanOrderPosXY[SCAN_UNGROUPED][scanType][blockWidthIdx][blockHeightIdx][0] = new uint32_t[totalValues]; - g_scanOrderPosXY[SCAN_UNGROUPED][scanType][blockWidthIdx][blockHeightIdx][1] = new uint32_t[totalValues]; + g_scanOrder[SCAN_UNGROUPED][scanType][blockWidthIdx][blockHeightIdx] = scan; #endif + if (scan == nullptr) + { + continue; + } + ScanGenerator fullBlockScan(blockWidth, blockHeight, blockWidth, scanType); for (uint32_t scanPosition = 0; scanPosition < totalValues; scanPosition++) @@ -434,35 +441,11 @@ void initROM() const int rasterPos = fullBlockScan.GetNextIndex( 0, 0 ); const int posY = rasterPos / blockWidth; const int posX = rasterPos - ( posY * blockWidth ); -#if JVET_M0102_INTRA_SUBPARTITIONS - g_scanOrder [ch][SCAN_UNGROUPED][scanType][blockWidthIdx][blockHeightIdx] [scanPosition] = rasterPos; - g_scanOrderPosXY[ch][SCAN_UNGROUPED][scanType][blockWidthIdx][blockHeightIdx][0][scanPosition] = posX; - g_scanOrderPosXY[ch][SCAN_UNGROUPED][scanType][blockWidthIdx][blockHeightIdx][1][scanPosition] = posY; -#else - g_scanOrder [SCAN_UNGROUPED][scanType][blockWidthIdx][blockHeightIdx] [scanPosition] = rasterPos; - g_scanOrderPosXY[SCAN_UNGROUPED][scanType][blockWidthIdx][blockHeightIdx][0][scanPosition] = posX; - g_scanOrderPosXY[SCAN_UNGROUPED][scanType][blockWidthIdx][blockHeightIdx][1][scanPosition] = posY; -#endif - } - } - if( blockWidthIdx >= sizeInfo.numWidths() || blockHeightIdx >= sizeInfo.numHeights() ) - { - // size indizes greater than numIdxs are sizes than are only used when grouping - they will never come up as a block size - thus they can be skipped at this point - for( uint32_t scanTypeIndex = 0; scanTypeIndex < SCAN_NUMBER_OF_TYPES; scanTypeIndex++ ) - { -#if JVET_M0102_INTRA_SUBPARTITIONS - g_scanOrder [ch][SCAN_GROUPED_4x4][scanTypeIndex][blockWidthIdx][blockHeightIdx] = nullptr; - g_scanOrderPosXY[ch][SCAN_GROUPED_4x4][scanTypeIndex][blockWidthIdx][blockHeightIdx][0] = nullptr; - g_scanOrderPosXY[ch][SCAN_GROUPED_4x4][scanTypeIndex][blockWidthIdx][blockHeightIdx][1] = nullptr; -#else - g_scanOrder [SCAN_GROUPED_4x4][scanTypeIndex][blockWidthIdx][blockHeightIdx] = nullptr; - g_scanOrderPosXY[SCAN_GROUPED_4x4][scanTypeIndex][blockWidthIdx][blockHeightIdx][0] = nullptr; - g_scanOrderPosXY[SCAN_GROUPED_4x4][scanTypeIndex][blockWidthIdx][blockHeightIdx][1] = nullptr; -#endif + scan[scanPosition].idx = rasterPos; + scan[scanPosition].x = posX; + scan[scanPosition].y = posY; } - - continue; } //-------------------------------------------------------------------------------------------------- @@ -494,37 +477,24 @@ void initROM() { const CoeffScanType scanType = CoeffScanType(scanTypeIndex); + ScanElement *scan = new ScanElement[totalValues]; + #if JVET_M0102_INTRA_SUBPARTITIONS - g_scanOrder [ch][SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx] = new uint32_t[totalValues]; - g_scanOrderPosXY[ch][SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx][0] = new uint32_t[totalValues]; - g_scanOrderPosXY[ch][SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx][1] = new uint32_t[totalValues]; + g_scanOrder[ch][SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx] = scan; #else - g_scanOrder [SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx] = new uint32_t[totalValues]; - g_scanOrderPosXY[SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx][0] = new uint32_t[totalValues]; - g_scanOrderPosXY[SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx][1] = new uint32_t[totalValues]; + g_scanOrder[SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx] = scan; #endif + #if JVET_M0257 -#if JVET_M0102_INTRA_SUBPARTITIONS - if ( blockWidth > JVET_C0024_ZERO_OUT_TH || blockHeight > JVET_C0024_ZERO_OUT_TH ) - { - for (uint32_t i = 0; i < totalValues; i++) - { - g_scanOrder [ch][SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx][i] = totalValues - 1; - g_scanOrderPosXY[ch][SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx][0][i] = blockWidth - 1; - g_scanOrderPosXY[ch][SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx][1][i] = blockHeight - 1; - } - } -#else if ( blockWidth > JVET_C0024_ZERO_OUT_TH || blockHeight > JVET_C0024_ZERO_OUT_TH ) { for (uint32_t i = 0; i < totalValues; i++) { - g_scanOrder[SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx][i] = totalValues - 1; - g_scanOrderPosXY[SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx][0][i] = blockWidth - 1; - g_scanOrderPosXY[SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx][1][i] = blockHeight - 1; + scan[i].idx = totalValues - 1; + scan[i].x = blockWidth - 1; + scan[i].y = blockHeight - 1; } } -#endif #endif ScanGenerator fullBlockScan(widthInGroups, heightInGroups, groupWidth, scanType); @@ -545,15 +515,9 @@ void initROM() const int posY = rasterPos / blockWidth; const int posX = rasterPos - ( posY * blockWidth ); -#if JVET_M0102_INTRA_SUBPARTITIONS - g_scanOrder [ch][SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx] [groupOffsetScan + scanPosition] = rasterPos; - g_scanOrderPosXY[ch][SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx][0][groupOffsetScan + scanPosition] = posX; - g_scanOrderPosXY[ch][SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx][1][groupOffsetScan + scanPosition] = posY; -#else - g_scanOrder [SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx] [groupOffsetScan + scanPosition] = rasterPos; - g_scanOrderPosXY[SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx][0][groupOffsetScan + scanPosition] = posX; - g_scanOrderPosXY[SCAN_GROUPED_4x4][scanType][blockWidthIdx][blockHeightIdx][1][groupOffsetScan + scanPosition] = posY; -#endif + scan[groupOffsetScan + scanPosition].idx = rasterPos; + scan[groupOffsetScan + scanPosition].x = posX; + scan[groupOffsetScan + scanPosition].y = posY; } fullBlockScan.GetNextIndex(0, 0); @@ -608,12 +572,6 @@ void destroyROM() { delete[] g_scanOrder[ch][groupTypeIndex][scanOrderIndex][blockWidthIdx][blockHeightIdx]; g_scanOrder[ch][groupTypeIndex][scanOrderIndex][blockWidthIdx][blockHeightIdx] = nullptr; - - delete[] g_scanOrderPosXY[ch][groupTypeIndex][scanOrderIndex][blockWidthIdx][blockHeightIdx][0]; - g_scanOrderPosXY[ch][groupTypeIndex][scanOrderIndex][blockWidthIdx][blockHeightIdx][0] = nullptr; - - delete[] g_scanOrderPosXY[ch][groupTypeIndex][scanOrderIndex][blockWidthIdx][blockHeightIdx][1]; - g_scanOrderPosXY[ch][groupTypeIndex][scanOrderIndex][blockWidthIdx][blockHeightIdx][1] = nullptr; } } } @@ -630,13 +588,6 @@ void destroyROM() { delete[] g_scanOrder[groupTypeIndex][scanOrderIndex][blockWidthIdx][blockHeightIdx]; g_scanOrder[groupTypeIndex][scanOrderIndex][blockWidthIdx][blockHeightIdx] = nullptr; - - delete[] g_scanOrderPosXY[groupTypeIndex][scanOrderIndex][blockWidthIdx][blockHeightIdx][0]; - g_scanOrderPosXY[groupTypeIndex][scanOrderIndex][blockWidthIdx][blockHeightIdx][0] = nullptr; - - delete[] g_scanOrderPosXY[groupTypeIndex][scanOrderIndex][blockWidthIdx][blockHeightIdx][1]; - g_scanOrderPosXY[groupTypeIndex][scanOrderIndex][blockWidthIdx][blockHeightIdx][1] = nullptr; - } } } @@ -772,11 +723,9 @@ UnitScale g_miScaling( MIN_CU_LOG2, MIN_CU_LOG2 ); // scanning order table #if JVET_M0102_INTRA_SUBPARTITIONS -uint32_t* g_scanOrder [2][SCAN_NUMBER_OF_GROUP_TYPES][SCAN_NUMBER_OF_TYPES][MAX_CU_SIZE / 2 + 1][MAX_CU_SIZE / 2 + 1]; -uint32_t* g_scanOrderPosXY[2][SCAN_NUMBER_OF_GROUP_TYPES][SCAN_NUMBER_OF_TYPES][MAX_CU_SIZE / 2 + 1][MAX_CU_SIZE / 2 + 1][2]; +ScanElement *g_scanOrder[2][SCAN_NUMBER_OF_GROUP_TYPES][SCAN_NUMBER_OF_TYPES][MAX_CU_SIZE / 2 + 1][MAX_CU_SIZE / 2 + 1]; #else -uint32_t* g_scanOrder [SCAN_NUMBER_OF_GROUP_TYPES][SCAN_NUMBER_OF_TYPES][MAX_CU_SIZE / 2 + 1][MAX_CU_SIZE / 2 + 1]; -uint32_t* g_scanOrderPosXY[SCAN_NUMBER_OF_GROUP_TYPES][SCAN_NUMBER_OF_TYPES][MAX_CU_SIZE / 2 + 1][MAX_CU_SIZE / 2 + 1][2]; +ScanElement *g_scanOrder[SCAN_NUMBER_OF_GROUP_TYPES][SCAN_NUMBER_OF_TYPES][MAX_CU_SIZE / 2 + 1][MAX_CU_SIZE / 2 + 1]; #endif const uint32_t g_uiMinInGroup[LAST_SIGNIFICANT_GROUPS] = { 0,1,2,3,4,6,8,12,16,24,32,48,64,96 }; diff --git a/source/Lib/CommonLib/Rom.h b/source/Lib/CommonLib/Rom.h index 8175010390472fa4bf792edbb9db8d60dfe64b4d..1b41b80db55b8c4d96fe09477cc99409bb20df80 100644 --- a/source/Lib/CommonLib/Rom.h +++ b/source/Lib/CommonLib/Rom.h @@ -64,13 +64,20 @@ void generateTrafoBlockSizeScaling( SizeIndexInfo& sizeIdxInfo ); // ==================================================================================================================== // flexible conversion from relative to absolute index +struct ScanElement +{ + uint32_t idx; + uint16_t x; + uint16_t y; +}; + #if JVET_M0102_INTRA_SUBPARTITIONS extern uint32_t g_log2SbbSize [2][MAX_CU_DEPTH+1][MAX_CU_DEPTH+1][2]; -extern uint32_t* g_scanOrder [2][SCAN_NUMBER_OF_GROUP_TYPES][SCAN_NUMBER_OF_TYPES][MAX_CU_SIZE / 2 + 1][MAX_CU_SIZE / 2 + 1]; -extern uint32_t* g_scanOrderPosXY[2][SCAN_NUMBER_OF_GROUP_TYPES][SCAN_NUMBER_OF_TYPES][MAX_CU_SIZE / 2 + 1][MAX_CU_SIZE / 2 + 1][2]; +extern ScanElement + *g_scanOrder[2][SCAN_NUMBER_OF_GROUP_TYPES][SCAN_NUMBER_OF_TYPES][MAX_CU_SIZE / 2 + 1][MAX_CU_SIZE / 2 + 1]; #else -extern uint32_t* g_scanOrder [SCAN_NUMBER_OF_GROUP_TYPES][SCAN_NUMBER_OF_TYPES][MAX_CU_SIZE / 2 + 1][MAX_CU_SIZE / 2 + 1]; -extern uint32_t* g_scanOrderPosXY[SCAN_NUMBER_OF_GROUP_TYPES][SCAN_NUMBER_OF_TYPES][MAX_CU_SIZE / 2 + 1][MAX_CU_SIZE / 2 + 1][2]; +extern ScanElement + *g_scanOrder[SCAN_NUMBER_OF_GROUP_TYPES][SCAN_NUMBER_OF_TYPES][MAX_CU_SIZE / 2 + 1][MAX_CU_SIZE / 2 + 1]; #endif extern const int g_quantScales [SCALING_LIST_REM_NUM]; // Q(QP%6)