[313] | 1 | /* The copyright in this software is being made available under the BSD |
---|
| 2 | * License, included below. This software may be subject to other third party |
---|
| 3 | * and contributor rights, including patent rights, and no such rights are |
---|
[1029] | 4 | * granted under this license. |
---|
[313] | 5 | * |
---|
[1259] | 6 | * Copyright (c) 2010-2015, ITU/ISO/IEC |
---|
[313] | 7 | * All rights reserved. |
---|
| 8 | * |
---|
| 9 | * Redistribution and use in source and binary forms, with or without |
---|
| 10 | * modification, are permitted provided that the following conditions are met: |
---|
| 11 | * |
---|
| 12 | * * Redistributions of source code must retain the above copyright notice, |
---|
| 13 | * this list of conditions and the following disclaimer. |
---|
| 14 | * * Redistributions in binary form must reproduce the above copyright notice, |
---|
| 15 | * this list of conditions and the following disclaimer in the documentation |
---|
| 16 | * and/or other materials provided with the distribution. |
---|
| 17 | * * Neither the name of the ITU/ISO/IEC nor the names of its contributors may |
---|
| 18 | * be used to endorse or promote products derived from this software without |
---|
| 19 | * specific prior written permission. |
---|
| 20 | * |
---|
| 21 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
---|
| 22 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
---|
| 23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
---|
| 24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS |
---|
| 25 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
---|
| 26 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
---|
| 27 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
---|
| 28 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
---|
| 29 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
---|
| 30 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
---|
| 31 | * THE POSSIBILITY OF SUCH DAMAGE. |
---|
| 32 | */ |
---|
| 33 | |
---|
| 34 | /** \file TDecSlice.cpp |
---|
| 35 | \brief slice decoder class |
---|
| 36 | */ |
---|
| 37 | |
---|
| 38 | #include "TDecSlice.h" |
---|
| 39 | |
---|
| 40 | //! \ingroup TLibDecoder |
---|
| 41 | //! \{ |
---|
| 42 | |
---|
| 43 | ////////////////////////////////////////////////////////////////////// |
---|
| 44 | // Construction/Destruction |
---|
| 45 | ////////////////////////////////////////////////////////////////////// |
---|
| 46 | |
---|
| 47 | TDecSlice::TDecSlice() |
---|
| 48 | { |
---|
| 49 | } |
---|
| 50 | |
---|
| 51 | TDecSlice::~TDecSlice() |
---|
| 52 | { |
---|
| 53 | } |
---|
| 54 | |
---|
| 55 | Void TDecSlice::create() |
---|
| 56 | { |
---|
| 57 | } |
---|
| 58 | |
---|
| 59 | Void TDecSlice::destroy() |
---|
| 60 | { |
---|
| 61 | } |
---|
| 62 | |
---|
| 63 | Void TDecSlice::init(TDecEntropy* pcEntropyDecoder, TDecCu* pcCuDecoder) |
---|
| 64 | { |
---|
| 65 | m_pcEntropyDecoder = pcEntropyDecoder; |
---|
| 66 | m_pcCuDecoder = pcCuDecoder; |
---|
| 67 | } |
---|
| 68 | |
---|
[1029] | 69 | Void TDecSlice::decompressSlice(TComInputBitstream** ppcSubstreams, TComPic* pcPic, TDecSbac* pcSbacDecoder) |
---|
[313] | 70 | { |
---|
[1029] | 71 | TComSlice* pcSlice = pcPic->getSlice(pcPic->getCurrSliceIdx()); |
---|
[313] | 72 | |
---|
[1029] | 73 | const Int startCtuTsAddr = pcSlice->getSliceSegmentCurStartCtuTsAddr(); |
---|
| 74 | const Int startCtuRsAddr = pcPic->getPicSym()->getCtuTsToRsAddrMap(startCtuTsAddr); |
---|
| 75 | const UInt numCtusInFrame = pcPic->getNumberOfCtusInFrame(); |
---|
| 76 | |
---|
| 77 | const UInt frameWidthInCtus = pcPic->getPicSym()->getFrameWidthInCtus(); |
---|
| 78 | const Bool depSliceSegmentsEnabled = pcSlice->getPPS()->getDependentSliceSegmentsEnabledFlag(); |
---|
| 79 | const Bool wavefrontsEnabled = pcSlice->getPPS()->getEntropyCodingSyncEnabledFlag(); |
---|
| 80 | |
---|
| 81 | m_pcEntropyDecoder->setEntropyDecoder ( pcSbacDecoder ); |
---|
| 82 | m_pcEntropyDecoder->setBitstream ( ppcSubstreams[0] ); |
---|
| 83 | m_pcEntropyDecoder->resetEntropy (pcSlice); |
---|
| 84 | |
---|
| 85 | // decoder doesn't need prediction & residual frame buffer |
---|
| 86 | pcPic->setPicYuvPred( 0 ); |
---|
| 87 | pcPic->setPicYuvResi( 0 ); |
---|
| 88 | |
---|
[313] | 89 | #if ENC_DEC_TRACE |
---|
| 90 | g_bJustDoIt = g_bEncDecTraceEnable; |
---|
| 91 | #endif |
---|
| 92 | DTRACE_CABAC_VL( g_nSymbolCounter++ ); |
---|
| 93 | DTRACE_CABAC_T( "\tPOC: " ); |
---|
[1029] | 94 | DTRACE_CABAC_V( pcPic->getPOC() ); |
---|
[313] | 95 | DTRACE_CABAC_T( "\n" ); |
---|
| 96 | |
---|
| 97 | #if ENC_DEC_TRACE |
---|
| 98 | g_bJustDoIt = g_bEncDecTraceDisable; |
---|
| 99 | #endif |
---|
| 100 | |
---|
[1029] | 101 | // The first CTU of the slice is the first coded substream, but the global substream number, as calculated by getSubstreamForCtuAddr may be higher. |
---|
| 102 | // This calculates the common offset for all substreams in this slice. |
---|
| 103 | const UInt subStreamOffset=pcPic->getSubstreamForCtuAddr(startCtuRsAddr, true, pcSlice); |
---|
[313] | 104 | |
---|
| 105 | |
---|
[1029] | 106 | if (depSliceSegmentsEnabled) |
---|
[313] | 107 | { |
---|
[1029] | 108 | // modify initial contexts with previous slice segment if this is a dependent slice. |
---|
| 109 | const UInt startTileIdx=pcPic->getPicSym()->getTileIdxMap(startCtuRsAddr); |
---|
| 110 | const TComTile *pCurrentTile=pcPic->getPicSym()->getTComTile(startTileIdx); |
---|
| 111 | const UInt firstCtuRsAddrOfTile = pCurrentTile->getFirstCtuRsAddr(); |
---|
[313] | 112 | |
---|
[1029] | 113 | if( pcSlice->getDependentSliceSegmentFlag() && startCtuRsAddr != firstCtuRsAddrOfTile) |
---|
[313] | 114 | { |
---|
[1029] | 115 | if ( pCurrentTile->getTileWidthInCtus() >= 2 || !wavefrontsEnabled) |
---|
[313] | 116 | { |
---|
[1029] | 117 | pcSbacDecoder->loadContexts(&m_lastSliceSegmentEndContextState); |
---|
[313] | 118 | } |
---|
| 119 | } |
---|
| 120 | } |
---|
[1029] | 121 | |
---|
| 122 | // for every CTU in the slice segment... |
---|
| 123 | |
---|
| 124 | Bool isLastCtuOfSliceSegment = false; |
---|
| 125 | for( UInt ctuTsAddr = startCtuTsAddr; !isLastCtuOfSliceSegment && ctuTsAddr < numCtusInFrame; ctuTsAddr++) |
---|
[313] | 126 | { |
---|
[1029] | 127 | const UInt ctuRsAddr = pcPic->getPicSym()->getCtuTsToRsAddrMap(ctuTsAddr); |
---|
| 128 | const TComTile ¤tTile = *(pcPic->getPicSym()->getTComTile(pcPic->getPicSym()->getTileIdxMap(ctuRsAddr))); |
---|
| 129 | const UInt firstCtuRsAddrOfTile = currentTile.getFirstCtuRsAddr(); |
---|
| 130 | const UInt tileXPosInCtus = firstCtuRsAddrOfTile % frameWidthInCtus; |
---|
| 131 | const UInt tileYPosInCtus = firstCtuRsAddrOfTile / frameWidthInCtus; |
---|
| 132 | const UInt ctuXPosInCtus = ctuRsAddr % frameWidthInCtus; |
---|
| 133 | const UInt ctuYPosInCtus = ctuRsAddr / frameWidthInCtus; |
---|
| 134 | const UInt uiSubStrm=pcPic->getSubstreamForCtuAddr(ctuRsAddr, true, pcSlice)-subStreamOffset; |
---|
| 135 | TComDataCU* pCtu = pcPic->getCtu( ctuRsAddr ); |
---|
| 136 | pCtu->initCtu( pcPic, ctuRsAddr ); |
---|
| 137 | |
---|
| 138 | m_pcEntropyDecoder->setBitstream( ppcSubstreams[uiSubStrm] ); |
---|
| 139 | |
---|
| 140 | // set up CABAC contexts' state for this CTU |
---|
| 141 | if (ctuRsAddr == firstCtuRsAddrOfTile) |
---|
[313] | 142 | { |
---|
[1029] | 143 | if (ctuTsAddr != startCtuTsAddr) // if it is the first CTU, then the entropy coder has already been reset |
---|
[313] | 144 | { |
---|
[1029] | 145 | m_pcEntropyDecoder->resetEntropy(pcSlice); |
---|
[313] | 146 | } |
---|
| 147 | } |
---|
[1029] | 148 | else if (ctuXPosInCtus == tileXPosInCtus && wavefrontsEnabled) |
---|
[313] | 149 | { |
---|
[1029] | 150 | // Synchronize cabac probabilities with upper-right CTU if it's available and at the start of a line. |
---|
| 151 | if (ctuTsAddr != startCtuTsAddr) // if it is the first CTU, then the entropy coder has already been reset |
---|
[313] | 152 | { |
---|
[1029] | 153 | m_pcEntropyDecoder->resetEntropy(pcSlice); |
---|
[313] | 154 | } |
---|
[1029] | 155 | TComDataCU *pCtuUp = pCtu->getCtuAbove(); |
---|
| 156 | if ( pCtuUp && ((ctuRsAddr%frameWidthInCtus+1) < frameWidthInCtus) ) |
---|
[313] | 157 | { |
---|
[1029] | 158 | TComDataCU *pCtuTR = pcPic->getCtu( ctuRsAddr - frameWidthInCtus + 1 ); |
---|
| 159 | if ( pCtu->CUIsFromSameSliceAndTile(pCtuTR) ) |
---|
[313] | 160 | { |
---|
[1029] | 161 | // Top-right is available, so use it. |
---|
| 162 | pcSbacDecoder->loadContexts( &m_entropyCodingSyncContextState ); |
---|
[313] | 163 | } |
---|
| 164 | } |
---|
| 165 | } |
---|
| 166 | |
---|
| 167 | #if ENC_DEC_TRACE |
---|
| 168 | g_bJustDoIt = g_bEncDecTraceEnable; |
---|
| 169 | #endif |
---|
[540] | 170 | |
---|
| 171 | if ( pcSlice->getSPS()->getUseSAO() ) |
---|
| 172 | { |
---|
[1029] | 173 | SAOBlkParam& saoblkParam = (pcPic->getPicSym()->getSAOBlkParam())[ctuRsAddr]; |
---|
| 174 | Bool bIsSAOSliceEnabled = false; |
---|
| 175 | Bool sliceEnabled[MAX_NUM_COMPONENT]; |
---|
| 176 | for(Int comp=0; comp < MAX_NUM_COMPONENT; comp++) |
---|
[540] | 177 | { |
---|
[1029] | 178 | ComponentID compId=ComponentID(comp); |
---|
| 179 | sliceEnabled[compId] = pcSlice->getSaoEnabledFlag(toChannelType(compId)) && (comp < pcPic->getNumberValidComponents()); |
---|
[1246] | 180 | if (sliceEnabled[compId]) |
---|
| 181 | { |
---|
| 182 | bIsSAOSliceEnabled=true; |
---|
| 183 | } |
---|
[1029] | 184 | saoblkParam[compId].modeIdc = SAO_MODE_OFF; |
---|
| 185 | } |
---|
| 186 | if (bIsSAOSliceEnabled) |
---|
| 187 | { |
---|
[540] | 188 | Bool leftMergeAvail = false; |
---|
| 189 | Bool aboveMergeAvail= false; |
---|
| 190 | |
---|
| 191 | //merge left condition |
---|
[1029] | 192 | Int rx = (ctuRsAddr % frameWidthInCtus); |
---|
[540] | 193 | if(rx > 0) |
---|
| 194 | { |
---|
[1029] | 195 | leftMergeAvail = pcPic->getSAOMergeAvailability(ctuRsAddr, ctuRsAddr-1); |
---|
[540] | 196 | } |
---|
| 197 | //merge up condition |
---|
[1029] | 198 | Int ry = (ctuRsAddr / frameWidthInCtus); |
---|
[540] | 199 | if(ry > 0) |
---|
| 200 | { |
---|
[1029] | 201 | aboveMergeAvail = pcPic->getSAOMergeAvailability(ctuRsAddr, ctuRsAddr-frameWidthInCtus); |
---|
[540] | 202 | } |
---|
[1287] | 203 | pcSbacDecoder->parseSAOBlkParam( saoblkParam, sliceEnabled, leftMergeAvail, aboveMergeAvail, pcSlice->getSPS()->getBitDepths()); |
---|
[540] | 204 | } |
---|
| 205 | } |
---|
| 206 | |
---|
[1029] | 207 | m_pcCuDecoder->decodeCtu ( pCtu, isLastCtuOfSliceSegment ); |
---|
| 208 | m_pcCuDecoder->decompressCtu ( pCtu ); |
---|
| 209 | |
---|
[313] | 210 | #if ENC_DEC_TRACE |
---|
| 211 | g_bJustDoIt = g_bEncDecTraceDisable; |
---|
| 212 | #endif |
---|
| 213 | |
---|
[1029] | 214 | //Store probabilities of second CTU in line into buffer |
---|
| 215 | if ( ctuXPosInCtus == tileXPosInCtus+1 && wavefrontsEnabled) |
---|
[313] | 216 | { |
---|
[1029] | 217 | m_entropyCodingSyncContextState.loadContexts( pcSbacDecoder ); |
---|
| 218 | } |
---|
| 219 | |
---|
[1245] | 220 | if (isLastCtuOfSliceSegment) |
---|
[1029] | 221 | { |
---|
[1245] | 222 | #if DECODER_CHECK_SUBSTREAM_AND_SLICE_TRAILING_BYTES |
---|
| 223 | pcSbacDecoder->parseRemainingBytes(false); |
---|
| 224 | #endif |
---|
| 225 | if(!pcSlice->getDependentSliceSegmentFlag()) |
---|
| 226 | { |
---|
| 227 | pcSlice->setSliceCurEndCtuTsAddr( ctuTsAddr+1 ); |
---|
| 228 | } |
---|
| 229 | pcSlice->setSliceSegmentCurEndCtuTsAddr( ctuTsAddr+1 ); |
---|
| 230 | } |
---|
| 231 | else if ( ctuXPosInCtus + 1 == tileXPosInCtus + currentTile.getTileWidthInCtus() && |
---|
| 232 | ( ctuYPosInCtus + 1 == tileYPosInCtus + currentTile.getTileHeightInCtus() || wavefrontsEnabled) |
---|
| 233 | ) |
---|
| 234 | { |
---|
| 235 | // The sub-stream/stream should be terminated after this CTU. |
---|
| 236 | // (end of slice-segment, end of tile, end of wavefront-CTU-row) |
---|
[313] | 237 | UInt binVal; |
---|
| 238 | pcSbacDecoder->parseTerminatingBit( binVal ); |
---|
| 239 | assert( binVal ); |
---|
[1029] | 240 | #if DECODER_CHECK_SUBSTREAM_AND_SLICE_TRAILING_BYTES |
---|
[1245] | 241 | pcSbacDecoder->parseRemainingBytes(true); |
---|
[1029] | 242 | #endif |
---|
[1245] | 243 | } |
---|
[313] | 244 | |
---|
| 245 | } |
---|
[1029] | 246 | |
---|
| 247 | assert(isLastCtuOfSliceSegment == true); |
---|
| 248 | |
---|
| 249 | |
---|
| 250 | if( depSliceSegmentsEnabled ) |
---|
| 251 | { |
---|
| 252 | m_lastSliceSegmentEndContextState.loadContexts( pcSbacDecoder );//ctx end of dep.slice |
---|
| 253 | } |
---|
| 254 | |
---|
[313] | 255 | } |
---|
| 256 | |
---|
[1246] | 257 | //! \} |
---|