Changeset 57 in 3DVCSoftware for trunk/source/Lib
- Timestamp:
- 14 May 2012, 12:44:40 (13 years ago)
- Location:
- trunk/source/Lib/TLibDecoder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/Lib/TLibDecoder/TDecTop.cpp
r56 r57 265 265 m_bFirstSliceInPicture = true; 266 266 m_bFirstSliceInSequence = true; 267 m_pcCamParsCollector = 0; 267 268 } 268 269 … … 1038 1039 // Decode a picture 1039 1040 m_cGopDecoder.decompressGop(nalu.m_Bitstream, pcPic, false); 1041 1042 if( m_pcCamParsCollector ) 1043 { 1044 m_pcCamParsCollector->setSlice( pcSlice ); 1045 } 1040 1046 1041 1047 m_bFirstSliceInPicture = false; -
trunk/source/Lib/TLibDecoder/TDecTop.h
r56 r57 74 74 Void uninit (); 75 75 Void setSlice ( TComSlice* pcSlice ); 76 77 Bool isInitialized() const { return m_bInitialized; } 76 78 77 79 private: … … 150 152 Bool m_isDepth; 151 153 TAppDecTop* m_tAppDecTop; 154 CamParsCollector* m_pcCamParsCollector; 152 155 NalUnitType m_nalUnitTypeBaseView; 153 156 … … 185 188 TComDepthMapGenerator* getDepthMapGenerator () { return &m_cDepthMapGenerator; } 186 189 #endif 190 191 Void setCamParsCollector( CamParsCollector* pcCamParsCollector ) { m_pcCamParsCollector = pcCamParsCollector; } 187 192 188 193 TComList<TComPic*>* getListPic() { return &m_cListPic; }
Note: See TracChangeset for help on using the changeset viewer.