Changeset 658 in SHVCSoftware for branches/SHM-6-dev/source/Lib
- Timestamp:
- 9 Apr 2014, 08:55:53 (12 years ago)
- Location:
- branches/SHM-6-dev/source/Lib
- Files:
-
- 2 edited
-
TLibCommon/TComPicYuv.cpp (modified) (1 diff)
-
TLibDecoder/TDecCu.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-6-dev/source/Lib/TLibCommon/TComPicYuv.cpp
r595 r658 174 174 Int numCuInHeight = m_iPicHeight / m_iCuHeight + (m_iPicHeight % m_iCuHeight != 0); 175 175 176 #if LAYER_CTB 177 m_iLumaMarginX = uiMaxCUWidth + 16; // for 16-byte alignment 178 m_iLumaMarginY = uiMaxCUHeight + 16; // margin for 8-tap filter and infinite padding 179 #else 176 180 m_iLumaMarginX = g_uiMaxCUWidth + 16; // for 16-byte alignment 177 181 m_iLumaMarginY = g_uiMaxCUHeight + 16; // margin for 8-tap filter and infinite padding 182 #endif 178 183 179 184 m_apiPicBufY = (Pel*)xMalloc( Pel, ( m_iPicWidth + (m_iLumaMarginX <<1)) * ( m_iPicHeight + (m_iLumaMarginY <<1))); -
branches/SHM-6-dev/source/Lib/TLibDecoder/TDecCu.cpp
r652 r658 73 73 m_ppcCU [ui]->setLayerId(layerId); 74 74 } 75 76 #if LAYER_CTB 77 memcpy(g_auiLayerZscanToRaster[m_layerId], g_auiZscanToRaster, sizeof( g_auiZscanToRaster ) ); 78 memcpy(g_auiLayerRasterToZscan[m_layerId], g_auiRasterToZscan, sizeof( g_auiRasterToZscan ) ); 79 memcpy(g_auiLayerRasterToPelX[m_layerId], g_auiRasterToPelX, sizeof( g_auiRasterToPelX ) ); 80 memcpy(g_auiLayerRasterToPelY[m_layerId], g_auiRasterToPelY, sizeof( g_auiRasterToPelY ) ); 81 #endif 75 82 } 76 83 #else
Note: See TracChangeset for help on using the changeset viewer.