Changeset 1207 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibCommon
- Timestamp:
- 8 Jul 2015, 21:16:48 (10 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibCommon
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/TComSlice.cpp
r1203 r1207 126 126 , m_bDiscardableFlag ( false ) 127 127 , m_bCrossLayerBLAFlag ( false ) 128 #if POC_RESET_IDC_SIGNALLING129 128 , m_pocResetIdc ( 0 ) 130 129 , m_pocResetPeriodId ( 0 ) … … 135 134 , m_pocMsbValPresentFlag ( false ) 136 135 , m_pocMsbValNeeded ( false ) 137 #endif138 136 #if POC_RESET_IDC_DECODER || POC_RESET_IDC_ENCODER 139 137 , m_picOrderCntLsb (0) … … 221 219 m_cabacInitFlag = false; 222 220 m_enableTMVPFlag = true; 223 #if POC_RESET_IDC_SIGNALLING224 221 m_pocResetIdc = 0; 225 222 m_pocResetPeriodId = 0; … … 229 226 m_pocMsbValRequiredFlag = false; 230 227 m_pocMsbValPresentFlag = false; 231 #endif232 228 #if POC_RESET_IDC_DECODER || POC_RESET_IDC_ENCODER 233 229 m_picOrderCntLsb = 0; -
branches/SHM-dev/source/Lib/TLibCommon/TComSlice.h
r1204 r1207 2003 2003 Bool m_bDiscardableFlag; 2004 2004 Bool m_bCrossLayerBLAFlag; 2005 #if POC_RESET_IDC_SIGNALLING2006 2005 Int m_pocResetIdc; 2007 2006 Int m_pocResetPeriodId; … … 2013 2012 Bool m_pocMsbValNeeded; 2014 2013 Int m_pocResetDeltaPoc; 2015 #endif2016 2014 #if POC_RESET_IDC_ENCODER 2017 2015 Int m_pocValueBeforeReset; … … 2350 2348 2351 2349 Void setILRPic(TComPic **pcIlpPic); 2352 #if POC_RESET_IDC_SIGNALLING 2350 2353 2351 Int getPocResetIdc () { return m_pocResetIdc; } 2354 2352 Void setPocResetIdc (Int b) { m_pocResetIdc = b; } … … 2369 2367 Bool getPocMsbValRequiredFlag () { return m_pocMsbValRequiredFlag; } 2370 2368 Void setPocMsbValRequiredFlag (Bool x) { m_pocMsbValRequiredFlag = x; } 2371 #endif2372 2369 2373 2370 Bool getBlaPicFlag (); -
branches/SHM-dev/source/Lib/TLibCommon/TypeDef.h
r1206 r1207 69 69 #define POC_RESET_IDC 1 ///< JCTVC-P0041: Include poc_reset_idc and related derivation 70 70 #if POC_RESET_IDC 71 #define POC_RESET_IDC_SIGNALLING 1 ///< JCTVC-P0041: Include signalling for poc_reset related syntax elements72 71 #define POC_RESET_IDC_ENCODER 1 ///< JCTVC-P0041: Include support of enabling POC reset at the encoder 73 72 #define POC_RESET_IDC_DECODER 1 ///< JCTVC-P0041: Include support of enabling POC reset at the decoder 74 73 #endif 75 #define POC_RESET_INFO_INFERENCE 1 ///< JCTVC-Q0146: Infer the value of poc_reset_info_present_flag when not present76 74 #define SCALINGLIST_INFERRING 1 ///< JCTVC-N0371: inter-layer scaling list 77 75
Note: See TracChangeset for help on using the changeset viewer.