Changeset 1187 in SHVCSoftware
- Timestamp:
- 8 Jul 2015, 03:38:09 (9 years ago)
- Location:
- branches/SHM-dev/source/Lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/TypeDef.h
r1186 r1187 107 107 108 108 #define VIEW_ID_RELATED_SIGNALING 1 ///< Introduce syntax elements view_id and view_id_val 109 #define N0065_LAYER_POC_ALIGNMENT 1110 109 #define AUXILIARY_PICTURES 1 ///< JCTVC-O0041: auxiliary picture layers 111 110 #define R0062_AUX_PSEUDO_MONOCHROME 1 ///> JCVVC-R0063: pseudo monochrome for auxiliary pictures -
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1185 r1187 1277 1277 pcSlice->setRPS(rps); 1278 1278 } 1279 #if N0065_LAYER_POC_ALIGNMENT1279 #if SVC_EXTENSION 1280 1280 #if O0062_POC_LSB_NOT_PRESENT_FLAG 1281 1281 if( ( pcSlice->getLayerId() > 0 && !pcSlice->getVPS()->getPocLsbNotPresentFlag( pcSlice->getVPS()->getLayerIdxInVps(pcSlice->getLayerId())) ) || !pcSlice->getIdrPicFlag() ) … … 1288 1288 { 1289 1289 READ_CODE(sps->getBitsForPOC(), uiCode, "pic_order_cnt_lsb"); 1290 #if SVC_EXTENSION 1290 1291 #if POC_RESET_IDC_DECODER 1291 1292 pcSlice->setPicOrderCntLsb( uiCode ); 1292 1293 #endif 1293 #if SVC_EXTENSION1294 1294 iPOClsb = uiCode; 1295 1295 #else … … 1322 1322 pcSlice->setPOC (iPOCmsb+iPOClsb); 1323 1323 1324 #if N0065_LAYER_POC_ALIGNMENT1324 #if SVC_EXTENSION 1325 1325 } 1326 1326 #if POC_RESET_IDC_DECODER -
branches/SHM-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r1185 r1187 979 979 } 980 980 981 #if N0065_LAYER_POC_ALIGNMENT981 #if SVC_EXTENSION 982 982 #if O0062_POC_LSB_NOT_PRESENT_FLAG 983 983 if( (pcSlice->getLayerId() > 0 && !pcSlice->getVPS()->getPocLsbNotPresentFlag( pcSlice->getVPS()->getLayerIdxInVps(pcSlice->getLayerId())) ) || !pcSlice->getIdrPicFlag()) … … 989 989 #endif 990 990 { 991 #if POC_RESET_IDC_ENCODER991 #if SVC_EXTENSION && POC_RESET_IDC_ENCODER 992 992 Int picOrderCntLSB; 993 993 if( pcSlice->getPocResetIdc() == 2 ) // i.e. the LSB is reset … … 1004 1004 WRITE_CODE( picOrderCntLSB, pcSlice->getSPS()->getBitsForPOC(), "pic_order_cnt_lsb"); 1005 1005 1006 #if N0065_LAYER_POC_ALIGNMENT1006 #if SVC_EXTENSION 1007 1007 } 1008 1008 if( !pcSlice->getIdrPicFlag() )
Note: See TracChangeset for help on using the changeset viewer.