Changeset 1311 in 3DVCSoftware for branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder
- Timestamp:
- 11 Aug 2015, 17:07:56 (10 years ago)
- Location:
- branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1306 r1311 2898 2898 { 2899 2899 Int voiInVps = vps->getVoiInVps( pcSlice->getViewIndex() ); 2900 #if NH_3D_FIX_TICKET_101 2901 if( vps->getCpInSliceSegmentHeaderFlag( voiInVps ) ) 2902 #else 2900 2903 if( vps->getCpInSliceSegmentHeaderFlag( voiInVps ) && !pcSlice->getIsDepth() ) 2904 #endif 2901 2905 { 2902 2906 for( Int m = 0; m < vps->getNumCp( voiInVps ); m++ ) -
branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/TDecTop.cpp
r1305 r1311 220 220 } 221 221 222 Void 223 CamParsCollector::setSlice( TComSlice* pcSlice ) 222 Void CamParsCollector::setSlice( const TComSlice* pcSlice ) 224 223 { 225 224 if( pcSlice == 0 ) … … 292 291 293 292 293 #if !NH_3D_FIX_TICKET_101 294 294 #if NH_3D_IV_MERGE 295 295 Void … … 301 301 } 302 302 } 303 #endif 303 304 #endif 304 305 … … 1258 1259 } 1259 1260 1261 #if !NH_3D_FIX_TICKET_101 1260 1262 #if NH_3D_IV_MERGE 1261 1263 #if H_3D_FCO … … 1267 1269 m_pcCamParsCollector->copyCamParamForSlice( pcSlice ); 1268 1270 } 1271 #endif 1269 1272 #endif 1270 1273 // Decode a picture -
branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/TDecTop.h
r1305 r1311 76 76 77 77 Void uninit (); 78 Void setSlice (TComSlice* pcSlice );78 Void setSlice ( const TComSlice* pcSlice ); 79 79 80 80 Bool isInitialized() const { return m_bInitialized; } 81 81 Int**** getBaseViewShiftLUTI() { return m_aiBaseViewShiftLUT; } 82 82 83 #if !NH_3D_FIX_TICKET_101 83 84 #if NH_3D_IV_MERGE 84 85 Void copyCamParamForSlice( TComSlice* pcSlice ); 85 86 #endif 86 87 #endif 87 88 88 89 private:
Note: See TracChangeset for help on using the changeset viewer.