Changeset 806 in SHVCSoftware for branches/SHM-6-dev/source/Lib/TLibEncoder


Ignore:
Timestamp:
20 Jun 2014, 21:17:30 (11 years ago)
Author:
seregin
Message:

code formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-6-dev/source/Lib/TLibEncoder/TEncGOP.cpp

    r804 r806  
    610610  TComOutputBitstream* pcSubstreamsOut = NULL;
    611611#if Q0108_TSA_STSA
    612   Int b_TSTA_flag = 0;
     612  Int flagTSTA = 0;
    613613#endif
    614614
     
    15591559      }
    15601560    }
    1561 #if    Q0108_TSA_STSA
     1561#if Q0108_TSA_STSA
    15621562    else if( ( pcSlice->getTLayer() == 0 && pcSlice->getLayerId() > 0)    // only for enhancement layer and with temporal layer 0
    15631563       && !( pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_RADL_N     
     
    15721572    {
    15731573        Bool isSTSA=true;
    1574         for(Int ii=iGOPid+1;(ii<m_pcCfg->getGOPSize() && isSTSA==true);ii++)
     1574        for(Int ii=iGOPid+1; ii < m_pcCfg->getGOPSize() && isSTSA; ii++)
    15751575        {
    15761576          Int lTid= m_pcCfg->getGOPEntry(ii).m_temporalId;
     
    15781578          {
    15791579            TComReferencePictureSet* nRPS = pcSlice->getSPS()->getRPSList()->getReferencePictureSet(ii);
    1580             for(Int jj=0;jj<nRPS->getNumberOfPictures();jj++)
     1580            for(Int jj=0; jj<nRPS->getNumberOfPictures(); jj++)
    15811581            {
    15821582              if(nRPS->getUsed(jj))
     
    15841584                Int tPoc=m_pcCfg->getGOPEntry(ii).m_POC+nRPS->getDeltaPOC(jj);
    15851585                Int kk=0;
    1586                 for(kk=0;kk<m_pcCfg->getGOPSize();kk++)
     1586                for(kk=0; kk<m_pcCfg->getGOPSize(); kk++)
    15871587                {
    15881588                  if(m_pcCfg->getGOPEntry(kk).m_POC==tPoc)
     1589                  {
    15891590                    break;
     1591                  }
    15901592                }
    15911593                Int tTid=m_pcCfg->getGOPEntry(kk).m_temporalId;
    15921594                if(tTid >= pcSlice->getTLayer())
    15931595                {
    1594                   isSTSA=false;
     1596                  isSTSA = false;
    15951597                  break;
    15961598                }
     
    16611663          {
    16621664            pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_STSA_N);
    1663             b_TSTA_flag = 1;
     1665            flagTSTA = 1;
    16641666          }
    16651667          else
    16661668          {
    16671669            pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_STSA_R);
    1668             b_TSTA_flag = 1;
     1670            flagTSTA = 1;
    16691671          }
    16701672#endif
     
    16841686    {
    16851687#if POC_RESET_FLAG || POC_RESET_IDC_ENCODER
    1686       if ( pocCurr > 0          && pcSlice->isRADL() && pcPic->getSlice(0)->getBaseColPic(pcPic->getSlice(0)->getInterLayerPredLayerIdc(0))->getSlice(0)->isRASL())
     1688      if ( pocCurr > 0 && pcSlice->isRADL() && pcPic->getSlice(0)->getBaseColPic(pcPic->getSlice(0)->getInterLayerPredLayerIdc(0))->getSlice(0)->isRASL())
    16871689#else
    16881690      if (pcSlice->getPOC()>0  && pcSlice->isRADL() && pcPic->getSlice(0)->getBaseColPic(pcPic->getSlice(0)->getInterLayerPredLayerIdc(0))->getSlice(0)->isRASL())
     
    16921694        pcSlice->setInterLayerPredEnabledFlag(0);
    16931695      }
    1694 #if   Q0108_TSA_STSA
    1695      if( (pcSlice->getNalUnitType() >= NAL_UNIT_CODED_SLICE_BLA_W_LP && pcSlice->getNalUnitType() <= NAL_UNIT_CODED_SLICE_CRA ) || b_TSTA_flag == 1)
     1696#if Q0108_TSA_STSA
     1697     if( ( pcSlice->getNalUnitType() >= NAL_UNIT_CODED_SLICE_BLA_W_LP && pcSlice->getNalUnitType() <= NAL_UNIT_CODED_SLICE_CRA ) || flagTSTA == 1 )
    16961698#else
    16971699     if( pcSlice->getNalUnitType() >= NAL_UNIT_CODED_SLICE_BLA_W_LP && pcSlice->getNalUnitType() <= NAL_UNIT_CODED_SLICE_CRA )
Note: See TracChangeset for help on using the changeset viewer.