Ignore:
Timestamp:
18 Jun 2013, 23:24:53 (11 years ago)
Author:
tech
Message:
  • changed IV-MERGE HLS to match Test Model 4 spec
  • incorporated iv-refpic list to TComSlice
  • removed TComDepthMapGenerator
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-DEV-0.3-dev2/source/App/TAppDecoder/TAppDecTop.cpp

    r478 r479  
    641641    m_tDecTop[ decIdx ] =  new TDecTop;
    642642    m_tDecTop[ decIdx ]->create();
    643 #if H_3D_IV_MERGE
    644     m_tDecTop[ decIdx ]->init(this );
    645 #else
    646643    m_tDecTop[ decIdx ]->init( );
    647 #endif
    648644    m_tDecTop[ decIdx ]->setLayerId( layerId );
    649645    m_tDecTop[ decIdx ]->setDecodedPictureHashSEIEnabled(m_decodedPictureHashSEIEnabled);
     
    682678}
    683679#endif
    684 #if H_3D_IV_MERGE
    685 // GT: This function is not necessary anymore m_ivPicLists should be used instead
    686 TComPic* TAppDecTop::xGetPicFromView( Int viewIdx, Int poc, Bool isDepth )
    687 {
    688   assert( ( viewIdx >= 0 ) );
    689 
    690   TComList<TComPic*>* apcListPic = m_tDecTop[ (isDepth ? 1 : 0) + viewIdx * 2 ]->getListPic();
    691 
    692   TComPic* pcPic = NULL;
    693   for( TComList<TComPic*>::iterator it=apcListPic->begin(); it!=apcListPic->end(); it++ )
    694   {
    695     if( (*it)->getPOC() == poc )
    696     {
    697       pcPic = *it;
    698       break;
    699     }
    700   }
    701   return pcPic;
    702 }
    703 #endif
    704680//! \}
Note: See TracChangeset for help on using the changeset viewer.