Merge pull request #187 from licaiguo/fix-coverage-scan

fix issues found by coverage scan -- review request #58
This commit is contained in:
volvet 2014-01-22 00:07:02 -08:00
commit c4f0159620
2 changed files with 2 additions and 3 deletions

View File

@ -768,7 +768,6 @@ int32_t ParseSliceHeaderSyntaxs (PWelsDecoderContext pCtx, PBitStringAux pBs, co
} else if (uiQualityId > BASE_QUALITY_ID) {
WelsLog (pCtx, WELS_LOG_WARNING, "MGS not supported.\n");
return GENERATE_ERROR_NO (ERR_LEVEL_SLICE_HEADER, ERR_INFO_UNSUPPORTED_MGS);
pSliceHeadExt->uiRefLayerDqId = pNalHeaderExt->uiLayerDqId - 1;
} else {
pSliceHeadExt->uiRefLayerDqId = (uint8_t) - 1;
}
@ -1775,7 +1774,7 @@ int32_t DecodeCurrentAccessUnit (PWelsDecoderContext pCtx, uint8_t** ppDst, int3
}
GetI4LumaIChromaAddrTable (pCtx->iDecBlockOffsetArray, pCtx->pDec->iLinesize[0], pCtx->pDec->iLinesize[1]);
if (pNalCur->sNalHeaderExt.uiLayerDqId > kuiTargetLayerDqId) {
if (pNalCur->sNalHeaderExt.uiLayerDqId > kuiTargetLayerDqId) { // confirmed pNalCur will never be NULL
break; // Per formance it need not to decode the remaining bits any more due to given uiLayerDqId required, 9/2/2009
}

View File

@ -342,7 +342,7 @@ int32_t CWelsCodecTrace::WriteString (int32_t iLevel, const str_t* pStr) {
break;
default:
if (m_fpDebugTrace)
m_fpInfoTrace ("%s", pStr);
m_fpDebugTrace ("%s", pStr);
break;
}
#else