Changeset 55 in SHVCSoftware for trunk/source/Lib/TLibDecoder/TDecTop.h
- Timestamp:
- 4 Mar 2013, 22:43:28 (12 years ago)
- Location:
- trunk/source
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source
- Property svn:mergeinfo changed
/branches/SHM-1.1-dev/source (added) merged: 38-49,52-53
- Property svn:mergeinfo changed
-
trunk/source/Lib/TLibDecoder/TDecTop.h
r28 r55 127 127 TDecTop** m_ppcTDecTop; 128 128 #if AVC_BASE 129 FILE*m_pBLReconFile;129 fstream* m_pBLReconFile; 130 130 Int m_iBLSourceWidth; 131 131 Int m_iBLSourceHeight; 132 132 #endif 133 133 #endif 134 #if AVC_SYNTAX || SYNTAX_OUTPUT 135 fstream* m_pBLSyntaxFile; 136 #endif 134 137 #if REF_IDX_FRAMEWORK 135 138 TComPic* m_cIlpPic[MAX_NUM_REF]; ///< Inter layer Prediction picture = upsampled picture … … 165 168 TDecTop* getLayerDec(UInt layer) { return m_ppcTDecTop[layer]; } 166 169 #if AVC_BASE 167 Void setBLReconFile( FILE* pFile ) { m_pBLReconFile = pFile; }168 FILE*getBLReconFile() { return m_pBLReconFile; }170 Void setBLReconFile( fstream* pFile ) { m_pBLReconFile = pFile; } 171 fstream* getBLReconFile() { return m_pBLReconFile; } 169 172 Void setBLsize( Int iWidth, Int iHeight ) { m_iBLSourceWidth = iWidth; m_iBLSourceHeight = iHeight; } 170 173 Int getBLWidth() { return m_iBLSourceWidth; } 171 174 Int getBLHeight() { return m_iBLSourceHeight; } 172 175 #endif 176 #endif 177 #if AVC_SYNTAX || SYNTAX_OUTPUT 178 Void setBLSyntaxFile( fstream* pFile ) { m_pBLSyntaxFile = pFile; } 179 fstream* getBLSyntaxFile() { return m_pBLSyntaxFile; } 173 180 #endif 174 181 #if REF_IDX_FRAMEWORK
Note: See TracChangeset for help on using the changeset viewer.