Changeset 440 in SHVCSoftware for branches


Ignore:
Timestamp:
17 Oct 2013, 21:22:34 (11 years ago)
Author:
seregin
Message:

set IRAP alignment flag to false for AVC BL

Location:
branches/SHM-3.1-dev/source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-3.1-dev/source/App/TAppDecoder/TAppDecTop.cpp

    r436 r440  
    264264  // delete buffers
    265265#if AVC_BASE
     266  UInt layerIdmin = m_acTDecTop[0].getBLReconFile()->is_open() ? 1 : 0;
     267
    266268  if( streamYUV.is_open() )
    267269  {
     
    274276  }
    275277#endif
    276   pcBLPic.destroy();
    277 
    278   UInt layerIdmin = m_acTDecTop[0].getBLReconFile()->is_open() ? 1 : 0;
     278  pcBLPic.destroy(); 
    279279
    280280  for(UInt layer = layerIdmin; layer <= m_tgtLayerId; layer++)
  • branches/SHM-3.1-dev/source/App/TAppEncoder/TAppEncTop.cpp

    r438 r440  
    10911091        }
    10921092      }
    1093     }   
     1093    }
     1094
     1095    if( vps->getAvcBaseLayerFlag() )
     1096    {
     1097      vps->setCrossLayerIrapAlignFlag(false);
     1098    }
    10941099#endif
    10951100#if M0040_ADAPTIVE_RESOLUTION_CHANGE
  • branches/SHM-3.1-dev/source/Lib/TLibCommon/TComSlice.cpp

    r431 r440  
    278278  }
    279279#if POC_RESET_FLAG
    280     assert( pcPic->getSlice(0)->isReferenced() );
     280  assert( pcPic->getSlice(0)->isReferenced() );
    281281#endif
    282282  return  pcPic;
  • branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecTop.cpp

    r434 r440  
    11591159        const Window &scalEL = pcSlice->getSPS()->getScaledRefLayerWindow(refLayerIdc);
    11601160
    1161 
    11621161        Int widthBL   = pcSlice->getBaseColPic(refLayerIdc)->getPicYuvRec()->getWidth();
    11631162        Int heightBL  = pcSlice->getBaseColPic(refLayerIdc)->getPicYuvRec()->getHeight();
Note: See TracChangeset for help on using the changeset viewer.