Changeset 30 in 3DVCSoftware


Ignore:
Timestamp:
1 Mar 2012, 07:44:44 (13 years ago)
Author:
poznan-univ
Message:

Updated configuration files and minor decoder bug fix

Location:
branches/0.3-poznan-univ
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/0.3-poznan-univ/CommonTestConditionsCfgs/baseCfg_2view+depth.cfg

    r28 r30  
    9797ALF                       : 1                                      # use adaptive loop filter
    9898ALFEncodePassReduction    : 0                                      # ALF encoding (0:original 16-pass, 1:one-pass, 2:two-pass)
    99 DBMP                      : 1                                      # use depth base motion prediction
     99DBMP                      : 0                                      # use depth base motion prediction
    100100CUSkip                    : 1                                      # encode only disoccluded CUs in dependend views
    101101TDdQP                     : 1                                      # texture TU blocks QP param modification according to depth map's values
  • branches/0.3-poznan-univ/CommonTestConditionsCfgs/baseCfg_3view+depth.cfg

    r28 r30  
    101101ALF                       : 1                                      # use adaptive loop filter
    102102ALFEncodePassReduction    : 0                                      # ALF encoding (0:original 16-pass, 1:one-pass, 2:two-pass)
    103 DBMP                      : 1                                      # use depth base motion prediction
     103DBMP                      : 0                                      # use depth base motion prediction
    104104CUSkip                    : 1                                      # encode only disoccluded CUs in dependend views
    105105TDdQP                     : 1                                      # texture TU blocks QP param modification according to depth map's values
  • branches/0.3-poznan-univ/source/App/TAppDecoder/TAppDecTop.cpp

    r29 r30  
    684684  }
    685685  iNearestViewIdx = 0;
    686   //bRenderFromLeft = iCoddedViewOrderIdx>0?true:false;
     686  //m_cCamParsCollector.getNearestBaseView(iCoddedViewIdx, iNearestViewIdx, iRelDistToLeft, bRenderFromLeft);
     687  //bRenderFromLeft = iCoddedViewIdx>1?true:false;
     688  bRenderFromLeft = iCoddedViewOrderIdx>0?true:false;
    687689  //bRenderFromLeft = iCoddedViewOrderIdx<0?true:false;
    688   //m_cCamParsCollector.getNearestBaseView(iCoddedViewIdx, iNearestViewIdx, iRelDistToLeft, bRenderFromLeft);
    689   bRenderFromLeft = iCoddedViewIdx>1?true:false;
    690690
    691691  m_cAvailabilityRenderer.setShiftLUTs(
  • branches/0.3-poznan-univ/source/App/TAppEncoder/TAppEncTop.cpp

    r29 r30  
    13551355  Char acFilenameBase[1024];
    13561356  ::sprintf( acFilenameBase,  "Synth_%s_%s_V%d.yuv", (bDepth?"Depth":"Tex"),( false ? "Dec" : "Enc" ),iCoddedViewIdx );
    1357   pcPicYuvERView->dump(acFilenameBase, iCurPoc!=0);
     1357  pcPicYuvSynthView->dump(acFilenameBase, iCurPoc!=0);
    13581358  }
    13591359#endif
  • branches/0.3-poznan-univ/source/Lib/TLibCommon/TComDataCU.cpp

    r28 r30  
    43714371    return false;
    43724372  }
     4373//#if POZNAN_ENCODE_ONLY_DISOCCLUDED_CU //Owieczka
     4374//  if (pColCU->isSkipped(uiAbsPartAddr))
     4375//  {
     4376//    return false;
     4377//  }
     4378//#endif
    43734379#if !SONY_COLPIC_AVAILABILITY
    43744380  if( m_pcSlice->getRefPic(eRefPicList, riRefIdx)->getViewIdx() != m_pcSlice->getViewIdx() )
  • branches/0.3-poznan-univ/source/Lib/TLibDecoder/TDecCu.cpp

    r28 r30  
    440440  // Coefficient decoding
    441441  m_pcEntropyDecoder->decodeCoeff( pcCU, uiAbsPartIdx, uiDepth, uiCurrWidth, uiCurrHeight );
    442  
    443442}
    444443
Note: See TracChangeset for help on using the changeset viewer.