Changeset 54 in SHVCSoftware for branches/HM-10.0-dev-SHM/source/Lib/TLibCommon/TComPicYuv.cpp
- Timestamp:
- 2 Mar 2013, 09:25:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HM-10.0-dev-SHM/source/Lib/TLibCommon/TComPicYuv.cpp
r51 r54 60 60 m_piPicOrgU = NULL; 61 61 m_piPicOrgV = NULL; 62 63 62 m_bIsBorderExtended = false; 64 63 } … … 67 66 { 68 67 } 69 68 #if SVC_UPSAMPLING 69 Void TComPicYuv::create( Int iPicWidth, Int iPicHeight, UInt uiMaxCUWidth, UInt uiMaxCUHeight, UInt uiMaxCUDepth, TComSPS* pcSps ) 70 #else 70 71 Void TComPicYuv::create( Int iPicWidth, Int iPicHeight, UInt uiMaxCUWidth, UInt uiMaxCUHeight, UInt uiMaxCUDepth ) 72 #endif 71 73 { 72 74 m_iPicWidth = iPicWidth; 73 75 m_iPicHeight = iPicHeight; 74 76 77 #if SVC_UPSAMPLING 78 if(pcSps != NULL) 79 { 80 m_conformanceWindow = pcSps->getConformanceWindow(); 81 } 82 #endif 83 75 84 // --> After config finished! 76 85 m_iCuWidth = uiMaxCUWidth;
Note: See TracChangeset for help on using the changeset viewer.