Changeset 762 in 3DVCSoftware for branches/HTM-9.2-dev0
- Timestamp:
- 7 Jan 2014, 05:53:19 (11 years ago)
- Location:
- branches/HTM-9.2-dev0/source/Lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-9.2-dev0/source/Lib/TLibCommon/TypeDef.h
r758 r762 69 69 /////////////////////////////////// MAJOR DEFINES /////////////////////////////////// 70 70 ///////////////////////////////////////////////////////////////////////////////////////// 71 71 72 #if H_MV 72 73 #define H_MV_ENC_DEC_TRAC 1 //< CU/PU level tracking … … 313 314 314 315 #if H_3D 316 #define PPS_FIX_DEPTH 1 315 317 316 318 #define FIX_MISSING_MACRO_R690 1 // Missing macro in integration to revision 690 -
branches/HTM-9.2-dev0/source/Lib/TLibEncoder/TEncCavlc.cpp
r758 r762 176 176 WRITE_FLAG( pcPPS->getSignHideFlag(), "sign_data_hiding_flag" ); 177 177 WRITE_FLAG( pcPPS->getCabacInitPresentFlag() ? 1 : 0, "cabac_init_present_flag" ); 178 #if PPS_FIX_DEPTH 179 if( pcPPS->getSPS()->getVPS()->getDepthId(pcPPS->getSPS()->getLayerId()) ) 180 { 181 WRITE_UVLC( pcPPS->getNumRefIdxL0DefaultActive(), "num_ref_idx_l0_default_active_minus1"); 182 WRITE_UVLC( pcPPS->getNumRefIdxL1DefaultActive(), "num_ref_idx_l1_default_active_minus1"); 183 } 184 else 185 { 186 #endif 178 187 WRITE_UVLC( pcPPS->getNumRefIdxL0DefaultActive()-1, "num_ref_idx_l0_default_active_minus1"); 179 188 WRITE_UVLC( pcPPS->getNumRefIdxL1DefaultActive()-1, "num_ref_idx_l1_default_active_minus1"); 180 189 #if PPS_FIX_DEPTH 190 } 191 #endif 181 192 WRITE_SVLC( pcPPS->getPicInitQPMinus26(), "init_qp_minus26"); 182 193 WRITE_FLAG( pcPPS->getConstrainedIntraPred() ? 1 : 0, "constrained_intra_pred_flag" ); … … 252 263 #if H_MV 253 264 } 265 #endif 266 #if PPS_FIX_DEPTH 267 if( pcPPS->getSPS()->getVPS()->getDepthId(pcPPS->getSPS()->getLayerId()) ) 268 { 269 WRITE_FLAG( 1, "lists_modification_present_flag" ); 270 } 271 else 254 272 #endif 255 273 WRITE_FLAG( pcPPS->getListsModificationPresentFlag(), "lists_modification_present_flag"); … … 1739 1757 WRITE_FLAG( 0, "no_output_of_prior_pics_flag" ); 1740 1758 } 1759 #if PPS_FIX_DEPTH 1760 if( pcSlice->getIsDepth() ) 1761 { 1762 WRITE_UVLC( 1, "slice_pic_parameter_set_id" ); 1763 } 1764 else 1765 #endif 1741 1766 WRITE_UVLC( pcSlice->getPPS()->getPPSId(), "slice_pic_parameter_set_id" ); 1742 1767 pcSlice->setDependentSliceSegmentFlag(!pcSlice->isNextSlice()); … … 1983 2008 { 1984 2009 Bool overrideFlag = (pcSlice->getNumRefIdx( REF_PIC_LIST_0 )!=pcSlice->getPPS()->getNumRefIdxL0DefaultActive()||(pcSlice->isInterB()&&pcSlice->getNumRefIdx( REF_PIC_LIST_1 )!=pcSlice->getPPS()->getNumRefIdxL1DefaultActive())); 2010 #if PPS_FIX_DEPTH 2011 overrideFlag |= (pcSlice->getIsDepth() && !pcSlice->getViewIndex()); 2012 #endif 1985 2013 WRITE_FLAG( overrideFlag ? 1 : 0, "num_ref_idx_active_override_flag"); 1986 2014 if (overrideFlag) … … 2002 2030 pcSlice->setNumRefIdx(REF_PIC_LIST_1, 0); 2003 2031 } 2004 2032 #if PPS_FIX_DEPTH 2033 if( (pcSlice->getPPS()->getListsModificationPresentFlag() || (pcSlice->getIsDepth() && !pcSlice->getViewIndex())) && pcSlice->getNumRpsCurrTempList() > 1) 2034 #else 2005 2035 if( pcSlice->getPPS()->getListsModificationPresentFlag() && pcSlice->getNumRpsCurrTempList() > 1) 2036 #endif 2006 2037 { 2007 2038 TComRefPicListModification* refPicListModification = pcSlice->getRefPicListModification(); -
branches/HTM-9.2-dev0/source/Lib/TLibEncoder/TEncGOP.cpp
r738 r762 1319 1319 nalu = NALUnit(NAL_UNIT_PPS); 1320 1320 #endif 1321 #if PPS_FIX_DEPTH 1322 if(!pcSlice->getIsDepth() || !pcSlice->getViewIndex() ) 1323 { 1324 #endif 1321 1325 m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream); 1322 1326 m_pcEntropyCoder->encodePPS(pcSlice->getPPS()); … … 1326 1330 actualTotalBits += UInt(accessUnit.back()->m_nalUnitData.str().size()) * 8; 1327 1331 #endif 1328 1332 #if PPS_FIX_DEPTH 1333 } 1334 #endif 1329 1335 xCreateLeadingSEIMessages(accessUnit, pcSlice->getSPS()); 1330 1336
Note: See TracChangeset for help on using the changeset viewer.