Changeset 1063 in SHVCSoftware for branches/SHM-dev/source
- Timestamp:
- 4 Mar 2015, 22:53:14 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibEncoder/TEncGOP.cpp
r1059 r1063 3784 3784 //===== add PSNR ===== 3785 3785 #if SVC_EXTENSION 3786 m_gcAnalyzeAll[ m_layerId].addResult (dPSNR, (Double)uibits, MSEyuvframe);3786 m_gcAnalyzeAll[pcPic->getSlice(0)->getVPS()->getLayerIdxInVps(m_layerId)].addResult (dPSNR, (Double)uibits, MSEyuvframe); 3787 3787 TComSlice* pcSlice = pcPic->getSlice(0); 3788 3788 if (pcSlice->isIntra()) 3789 3789 { 3790 m_gcAnalyzeI[ m_layerId].addResult (dPSNR, (Double)uibits, MSEyuvframe);3790 m_gcAnalyzeI[pcPic->getSlice(0)->getVPS()->getLayerIdxInVps(m_layerId)].addResult (dPSNR, (Double)uibits, MSEyuvframe); 3791 3791 } 3792 3792 if (pcSlice->isInterP()) 3793 3793 { 3794 m_gcAnalyzeP[ m_layerId].addResult (dPSNR, (Double)uibits, MSEyuvframe);3794 m_gcAnalyzeP[pcPic->getSlice(0)->getVPS()->getLayerIdxInVps(m_layerId)].addResult (dPSNR, (Double)uibits, MSEyuvframe); 3795 3795 } 3796 3796 if (pcSlice->isInterB()) 3797 3797 { 3798 m_gcAnalyzeB[ m_layerId].addResult (dPSNR, (Double)uibits, MSEyuvframe);3798 m_gcAnalyzeB[pcPic->getSlice(0)->getVPS()->getLayerIdxInVps(m_layerId)].addResult (dPSNR, (Double)uibits, MSEyuvframe); 3799 3799 } 3800 3800 #else
Note: See TracChangeset for help on using the changeset viewer.