Changeset 549 in SHVCSoftware for branches/SHM-5.0-dev/source/Lib/TLibEncoder
- Timestamp:
- 21 Jan 2014, 03:57:34 (12 years ago)
- Location:
- branches/SHM-5.0-dev/source/Lib/TLibEncoder
- Files:
-
- 2 edited
-
TEncGOP.cpp (modified) (1 diff)
-
TEncTop.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-5.0-dev/source/Lib/TLibEncoder/TEncGOP.cpp
r540 r549 3108 3108 3109 3109 #if SVC_EXTENSION 3110 #if ADAPTIVE_QP_SELECTION 3111 printf("POC %4d LId: %1d TId: %1d ( %c-SLICE , nQP %d QP %d ) %10d bits",3110 #if ADAPTIVE_QP_SELECTION 3111 printf("POC %4d LId: %1d TId: %1d ( %c-SLICE %s, nQP %d QP %d ) %10d bits", 3112 3112 pcSlice->getPOC(), 3113 3113 pcSlice->getLayerId(), 3114 3114 pcSlice->getTLayer(), 3115 3115 c, 3116 NaluToStr( pcSlice->getNalUnitType() ).data(), 3116 3117 pcSlice->getSliceQpBase(), 3117 3118 pcSlice->getSliceQp(), 3118 3119 uibits ); 3119 3120 #else 3120 printf("POC %4d LId: %1d TId: %1d ( %c-SLICE , QP %d ) %10d bits",3121 printf("POC %4d LId: %1d TId: %1d ( %c-SLICE %s, QP %d ) %10d bits", 3121 3122 pcSlice->getPOC()-pcSlice->getLastIDR(), 3122 3123 pcSlice->getLayerId(), 3123 3124 pcSlice->getTLayer(), 3124 3125 c, 3126 NaluToStr( pcSlice->getNalUnitType() ).data(). 3125 3127 pcSlice->getSliceQp(), 3126 3128 uibits ); -
branches/SHM-5.0-dev/source/Lib/TLibEncoder/TEncTop.cpp
r540 r549 1632 1632 if (m_cIlpPic[0] == NULL) 1633 1633 { 1634 for (Int j=0; j < MAX_LAYERS /*MAX_NUM_REF*/; j++) // consider to set to NumDirectRefLayers[LayerIdInVps[nuh_layer_id]]1634 for (Int j=0; j < m_numLayer; j++) // consider to set to NumDirectRefLayers[LayerIdInVps[nuh_layer_id]] 1635 1635 { 1636 1636 m_cIlpPic[j] = new TComPic; … … 1699 1699 if (m_cIlpPic[0] == NULL) 1700 1700 { 1701 for (Int j=0; j < MAX_LAYERS /*MAX_NUM_REF*/; j++) // consider to set to NumDirectRefLayers[LayerIdInVps[nuh_layer_id]]1701 for (Int j=0; j < m_numDirectRefLayers; j++) 1702 1702 { 1703 1703 m_cIlpPic[j] = new TComPic;
Note: See TracChangeset for help on using the changeset viewer.