Changeset 866 in 3DVCSoftware
- Timestamp:
- 15 Mar 2014, 07:10:57 (11 years ago)
- Location:
- branches/HTM-10.0-dev0/source/Lib
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-10.0-dev0/source/Lib/TLibCommon/TComSlice.cpp
r859 r866 2435 2435 , m_ppsInferScalingListFlag(false) 2436 2436 , m_ppsScalingListRefLayerId(0) 2437 #if H_MV_HLS_7_POC_P0041 2438 , m_pocResetInfoPresentFlag(false) 2439 #endif 2437 2440 #if H_3D 2438 2441 , m_pcDLT(NULL) -
branches/HTM-10.0-dev0/source/Lib/TLibCommon/TComSlice.h
r857 r866 1940 1940 Bool m_ppsExtensionTypeFlag[PS_EX_T_MAX_NUM]; 1941 1941 #endif 1942 #if H_MV_HLS 7_GEN1942 #if H_MV_HLS_7_POC_P0041 1943 1943 Bool m_pocResetInfoPresentFlag; 1944 1944 #endif … … 2090 2090 #endif 2091 2091 2092 #if H_MV_HLS 7_GEN2092 #if H_MV_HLS_7_POC_P0041 2093 2093 Void setPocResetInfoPresentFlag( Bool flag ) { m_pocResetInfoPresentFlag = flag; } 2094 2094 Bool getPocResetInfoPresentFlag( ) { return m_pocResetInfoPresentFlag; } -
branches/HTM-10.0-dev0/source/Lib/TLibCommon/TypeDef.h
r862 r866 337 337 #define H_MV_HLS_7_VPS_P0125_24 1 // (VPS/P0125/VPS extension offset ) #24 Decision: Keep it as a reserved FFFF value. 338 338 #define H_MV_HLS_7_VPS_P0307_23 1 // (VPS/P0307/VPS VUI extension) #23 Decision: Adopt modification in P0307. 339 #define H_MV_HLS_7_POC_P0041 1 // Syntax related to POC reset 339 340 // #define H_MV_HLS_7_POC_P0041_3 0 // (POC/P0041/POC reset) #3 It was remarked that we should require each non-IRAP picture that has discardable_flag equal to 1 to have NUT value indicating that it is a sub-layer non-reference picture. This was agreed. Decision: Adopt (with constraint for discardable_flag as described above) 340 341 // #define H_MV_HLS_7_POC_P0041_FIXES 0 // (POC/P0041/Fixes) For each non-IRAP picture that has discardable_flag equal to 1 to have NUT value indicating that it is a sub-layer non-reference picture. -
branches/HTM-10.0-dev0/source/Lib/TLibDecoder/TDecCAVLC.cpp
r858 r866 383 383 if( pcPPS->getPpsExtensionTypeFlag( PPS_EX_T_MV ) ) 384 384 { 385 #if H_MV_HLS 7_GEN385 #if H_MV_HLS_7_POC_P0041 386 386 READ_FLAG( uiCode, "poc_reset_info_present_flag" ); pcPPS->setPocResetInfoPresentFlag( uiCode == 1 ); 387 387 #endif -
branches/HTM-10.0-dev0/source/Lib/TLibEncoder/TEncCavlc.cpp
r858 r866 297 297 if( pcPPS->getPpsExtensionTypeFlag( PPS_EX_T_MV ) ) 298 298 { 299 #if H_MV_HLS 7_GEN299 #if H_MV_HLS_7_POC_P0041 300 300 WRITE_FLAG( pcPPS->getPocResetInfoPresentFlag( ) ? 1 : 0 , "poc_reset_info_present_flag" ); 301 301 #endif
Note: See TracChangeset for help on using the changeset viewer.