Add Transform 8x8 support
Add Intra 8x8 support Add no_deblocking support inside T8x8 Add CABAC parse support Add static data sheet for dequant Fix bugs and clean/astyle the code Remove build warnings Modify the UT cases Fix the ParseNalHeader bug
This commit is contained in:
@@ -74,7 +74,7 @@ int32_t InitCabacDecEngineFromBS (PWelsCabacDecEngine pDecEngine, PBitStringAux
|
||||
uint8_t* pCurr;
|
||||
|
||||
pCurr = pBsAux->pCurBuf - iRemainingBytes;
|
||||
if(pCurr >= (pBsAux->pEndBuf - 1)) {
|
||||
if (pCurr >= (pBsAux->pEndBuf - 1)) {
|
||||
return ERR_INFO_INVALID_ACCESS;
|
||||
}
|
||||
pDecEngine->uiOffset = ((pCurr[0] << 16) | (pCurr[1] << 8) | pCurr[2]);
|
||||
|
||||
Reference in New Issue
Block a user