Changeset 756 in SHVCSoftware for branches/SHM-6-dev/source/Lib
- Timestamp:
- 29 Apr 2014, 23:55:59 (11 years ago)
- Location:
- branches/SHM-6-dev/source/Lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-6-dev/source/Lib/TLibCommon/TypeDef.h
r755 r756 197 197 #define EARLY_REF_PIC_MARKING 0 ///< Valencia meeting - remove early marking of inter-layer reference pictures 198 198 ///< Decoded picture marking of sub-layer non-reference pictures 199 #define N0120_MAX_TID_REF_CFG 1 ///< set max_tid_il_ref_pics_plus1 and max_tid_ref_present_flag in the config. file (configuration setting)200 199 #define O0225_MAX_TID_FOR_REF_LAYERS 1 201 200 #define O0225_TID_BASED_IL_RPS_DERIV 1 -
branches/SHM-6-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r755 r756 1220 1220 #else 1221 1221 READ_CODE( 3, uiCode, "max_tid_il_ref_pics_plus1[i]" ); vps->setMaxTidIlRefPicsPlus1(i, uiCode); 1222 #if N0120_MAX_TID_REF_CFG1223 1222 assert( uiCode <= vps->getMaxTLayers()); 1224 #else1225 assert( uiCode <= vps->getMaxTLayers()+ 1 );1226 #endif1227 1223 #endif 1228 1224 } -
branches/SHM-6-dev/source/Lib/TLibEncoder/TEncCfg.h
r694 r756 348 348 Bool m_motionPredEnabledFlag[MAX_VPS_LAYER_ID_PLUS1]; 349 349 #endif 350 #if N0120_MAX_TID_REF_CFG351 350 Int m_maxTidIlRefPicsPlus1; 352 #endif353 351 #if AUXILIARY_PICTURES 354 352 ChromaFormat m_chromaFormatIDC; … … 877 875 Void setMotionPredEnabledFlag (Int i,Bool flag) { m_motionPredEnabledFlag[i] = flag; } 878 876 #endif 879 #if N0120_MAX_TID_REF_CFG880 877 Int getMaxTidIlRefPicsPlus1 () { return m_maxTidIlRefPicsPlus1; } 881 878 Void setMaxTidIlRefPicsPlus1 (Int num) { m_maxTidIlRefPicsPlus1 = num; } 882 #endif883 879 #if LAYERS_NOT_PRESENT_SEI 884 880 Void setLayersNotPresentSEIEnabled(Int b) { m_layersNotPresentSEIEnabled = b; }
Note: See TracChangeset for help on using the changeset viewer.