move spatial picture related variable to CWelsPreProcess

This commit is contained in:
volvet
2014-02-17 11:35:52 +08:00
parent 488482811c
commit 475309307c
4 changed files with 50 additions and 48 deletions

View File

@@ -151,6 +151,11 @@ class CWelsPreProcess {
sWelsEncCtx* m_pEncCtx;
bool m_bInitDone;
bool m_bOfficialBranch;
/* For Downsampling & VAA I420 based source pictures */
SPicture* m_pSpatialPic[MAX_DEPENDENCY_LAYER][MAX_TEMPORAL_LEVEL + 1 +
LONG_TERM_REF_NUM]; // need memory requirement with total number of (log2(uiGopSize)+1+1+long_term_ref_num)
uint8_t m_uiSpatialLayersInTemporal[MAX_DEPENDENCY_LAYER];
uint8_t m_uiSpatialPicNum[MAX_DEPENDENCY_LAYER];
};
}