Ignore:
Timestamp:
31 May 2013, 09:48:43 (11 years ago)
Author:
seregin
Message:

use refLayerIdc for getting reference layer encoder and decoder

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-2.1-dev/source/Lib/TLibEncoder/TEncTop.cpp

    r245 r250  
    508508      {
    509509#if VPS_EXTN_DIRECT_REF_LAYERS
    510         TEncTop *pcEncTopBase = (TEncTop *)getRefLayerEnc( m_layerId );
     510        TEncTop *pcEncTopBase = (TEncTop *)getRefLayerEnc( m_layerId - 1 );
    511511#else
    512512        TEncTop *pcEncTopBase = (TEncTop *)getLayerEnc( m_layerId-1 );
     
    539539      {
    540540#if VPS_EXTN_DIRECT_REF_LAYERS
    541         TEncTop *pcEncTopBase = (TEncTop *)getRefLayerEnc( m_layerId );
     541        TEncTop *pcEncTopBase = (TEncTop *)getRefLayerEnc( m_layerId - 1 );
    542542#else
    543543        TEncTop *pcEncTopBase = (TEncTop *)getLayerEnc( m_layerId-1 );
     
    11991199#if SVC_EXTENSION
    12001200#if VPS_EXTN_DIRECT_REF_LAYERS
    1201 TEncTop* TEncTop::getRefLayerEnc( UInt layerId )
     1201TEncTop* TEncTop::getRefLayerEnc( UInt refLayerIdc )
    12021202{
    12031203  if( m_ppcTEncTop[m_layerId]->getNumDirectRefLayers() <= 0 )
     
    12131213  assert( m_ppcTEncTop[m_layerId]->getNumDirectRefLayers() == 1 );
    12141214
    1215   return (TEncTop *)getLayerEnc( getVPS()->getRefLayerId( m_layerId, 0 ) );
     1215  return (TEncTop *)getLayerEnc( getVPS()->getRefLayerId( m_layerId, refLayerIdc ) );
    12161216}
    12171217#endif
Note: See TracChangeset for help on using the changeset viewer.