Changeset 1392 in 3DVCSoftware
- Timestamp:
- 17 Nov 2015, 20:34:03 (9 years ago)
- Location:
- branches/HTM-16.0-dev1/source/Lib
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-16.0-dev1/source/Lib/TLibCommon/TComDataCU.cpp
r1386 r1392 5101 5101 5102 5102 //// ******* Get disparity from left block ******* ///// 5103 #if NH_3D_FIX_TICKET_91 5104 pcTmpCU = getPULeft(uiIdx, uiPartIdxLB); 5105 #else 5106 pcTmpCU = getPULeft(uiIdx, uiPartIdxLB, true, false); 5107 #endif 5103 pcTmpCU = getPULeft(uiIdx, uiPartIdxLB); 5108 5104 bCheckMcpDv = true; 5109 5105 if ( xCheckSpatialNBDV( pcTmpCU, uiIdx, pDInfo, bCheckMcpDv, &cIDVInfo, DVFROM_LEFT -
branches/HTM-16.0-dev1/source/Lib/TLibCommon/TComSlice.cpp
r1386 r1392 1923 1923 for ( Int i = 0; i < MAX_VPS_OUTPUTLAYER_SETS; i++) 1924 1924 { 1925 #if !NH_3D_FIX_TICKET_1071926 m_layerSetIdxForOlsMinus1[i] = -1;1927 #endif1928 1925 for ( Int j = 0; j < MAX_VPS_NUH_LAYER_ID_PLUS1; j++) 1929 1926 { -
branches/HTM-16.0-dev1/source/Lib/TLibCommon/TypeDef.h
r1386 r1392 65 65 #if NH_MV 66 66 // Recent bug fixes 67 #define NH_3D_FIX_TICKET_1 07 1 // Clean up.68 #define NH_3D_FIX_ TICKET_91 1 // NBDV availability in case of tiles.67 #define NH_3D_FIX_TICKET_114 1 //Mismatch between text and software on DPB size syntax 68 #define NH_3D_FIX_LEAK 1 69 69 // Things that needs to be fixed also in the Specification ... 70 70 #define NH_MV_FIX_NO_REF_PICS_CHECK 1 // !!SPEC!! -
branches/HTM-16.0-dev1/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1386 r1392 2135 2135 for( Int j = 0; j <= vps->getMaxSubLayersInLayerSetMinus1( currLsIdx ); j++ ) 2136 2136 { 2137 #if NH_3D_FIX_TICKET_114 2138 if( j > 0 && dpbSize.getSubLayerFlagInfoPresentFlag( i ) ) 2139 #else 2137 2140 if( j > 0 && dpbSize.getSubLayerDpbInfoPresentFlag( i, j ) ) 2141 #endif 2138 2142 { 2139 2143 READ_FLAG( uiCode, "sub_layer_dpb_info_present_flag" ); dpbSize.setSubLayerDpbInfoPresentFlag( i, j, uiCode == 1 ); -
branches/HTM-16.0-dev1/source/Lib/TLibEncoder/TEncCavlc.cpp
r1386 r1392 1428 1428 for( Int j = 0; j <= vps->getMaxSubLayersInLayerSetMinus1( currLsIdx ); j++ ) 1429 1429 { 1430 #if NH_3D_FIX_TICKET_114 1431 if( j > 0 && dpbSize->getSubLayerFlagInfoPresentFlag( i ) ) 1432 #else 1430 1433 if( j > 0 && dpbSize->getSubLayerDpbInfoPresentFlag( i, j ) ) 1434 #endif 1431 1435 { 1432 1436 WRITE_FLAG( dpbSize->getSubLayerDpbInfoPresentFlag( i, j ) ? 1 : 0 , "sub_layer_dpb_info_present_flag" ); -
branches/HTM-16.0-dev1/source/Lib/TLibEncoder/TEncTop.cpp
r1386 r1392 91 91 TEncTop::~TEncTop() 92 92 { 93 #if NH_3D_FIX_LEAK 94 #if NH_3D_IC 95 if ( m_aICEnableCandidate != NULL ) 96 { 97 delete[] m_aICEnableCandidate; 98 } 99 100 if ( m_aICEnableNum != NULL ) 101 { 102 delete[] m_aICEnableNum; 103 } 104 #endif 105 106 #endif 93 107 #if ENC_DEC_TRACE 94 108 if (g_hTrace != stdout) -
branches/HTM-16.0-dev1/source/Lib/TLibRenderer/TRenModSetupStrParser.h
r1386 r1392 40 40 #include "../TAppCommon/TAppComCamPara.h" 41 41 #if NH_3D_VSO 42 43 44 45 42 #include <list> 46 43 #include <vector> … … 54 51 #include <cstdio> 55 52 #include <cstring> 56 57 53 58 54 using namespace std;
Note: See TracChangeset for help on using the changeset viewer.