Changeset 730 in SHVCSoftware


Ignore:
Timestamp:
23 Apr 2014, 23:16:15 (11 years ago)
Author:
seregin
Message:

fix typos

Location:
branches/SHM-6-dev/source/Lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-6-dev/source/Lib/TLibCommon/TComSlice.cpp

    r726 r730  
    811811    {
    812812      // number of ILRPs included into the reference picture list with the list modification
    813       Int inlucdeNumILRP = min(m_aiNumRefIdx[REF_PIC_LIST_0]-numberOfPocBeforeCurr, m_activeNumILRRefIdx);
    814 
    815       for(Int i = inlucdeNumILRP; i > 0; i-- )
     813      Int includeNumILRP = min(m_aiNumRefIdx[REF_PIC_LIST_0]-numberOfPocBeforeCurr, m_activeNumILRRefIdx);
     814
     815      for(Int i = includeNumILRP; i > 0; i-- )
    816816      {
    817817#if RPL_INIT_N0316_N0082
     
    825825          for (Int j = numberOfPocBeforeCurr; j < (m_aiNumRefIdx[REF_PIC_LIST_0] - i); j++)
    826826          {
    827             assert( j + inlucdeNumILRP < numberOfRpsCurrTempList );
    828             refPicListModification->setRefPicSetIdxL0(j, j + inlucdeNumILRP);
     827            assert( j + includeNumILRP < numberOfRpsCurrTempList );
     828            refPicListModification->setRefPicSetIdxL0(j, j + includeNumILRP);
    829829          }
    830830        }
     
    859859    else
    860860    {
    861       Int inlucdeNumILRP = min(m_aiNumRefIdx[REF_PIC_LIST_1], m_activeNumILRRefIdx);
    862 
    863       for(Int i = inlucdeNumILRP; i > 0; i-- )
     861      Int includeNumILRP = min(m_aiNumRefIdx[REF_PIC_LIST_1], m_activeNumILRRefIdx);
     862
     863      for(Int i = includeNumILRP; i > 0; i-- )
    864864      {
    865865        refPicListModification->setRefPicSetIdxL1(m_aiNumRefIdx[REF_PIC_LIST_1] - i, numberOfRpsCurrTempList - i);
  • branches/SHM-6-dev/source/Lib/TLibEncoder/TEncCu.cpp

    r726 r730  
    696696#if (ENCODER_FAST_MODE)
    697697        if( rpcBestCU->getSlice()->getSliceType() == I_SLICE ||
    698           rpcBestCU->getPredictionMode(0) == SIZE_NONE ||  // if there is no valid inter prediction
     698          rpcBestCU->getPredictionMode(0) == MODE_NONE ||  // if there is no valid inter prediction
    699699          !testInter ||
    700700          rpcBestCU->getCbf( 0, TEXT_LUMA     ) != 0   ||
Note: See TracChangeset for help on using the changeset viewer.