Changeset 1563 in SHVCSoftware for branches/SHM-dev/source/App
- Timestamp:
- 20 Jun 2016, 17:31:56 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r1562 r1563 3188 3188 Bool& m_CUTransquantBypassFlagForce = m_apcLayerCfg[layerIdx]->m_CUTransquantBypassFlagForce; 3189 3189 #endif 3190 3191 #if U0132_TARGET_BITS_SATURATION 3192 Int& m_RCTargetBitrate = m_apcLayerCfg[layerIdx]->m_RCTargetBitrate; 3193 #endif 3190 3194 #else 3191 3195 Void TAppEncCfg::xCheckParameter() … … 4060 4064 xConfirmPara( m_RCCpbSaturationEnabled != 0, "Target bits saturation cannot be processed without Rate control" ); 4061 4065 } 4066 if (m_vuiParametersPresentFlag) 4067 { 4068 xConfirmPara(m_RCTargetBitrate == 0, "A target bit rate is required to be set for VUI/HRD parameters."); 4069 if (m_RCCpbSize == 0) 4070 { 4071 printf ("Warning: CPB size is set equal to zero. Adjusting value to be equal to TargetBitrate!\n"); 4072 m_RCCpbSize = m_RCTargetBitrate; 4073 } 4074 } 4062 4075 #endif 4063 4076
Note: See TracChangeset for help on using the changeset viewer.