Simplify the use of return values from Wels*Snprintf
Also similarly simplify the use of the return value from WelsStrftime and GetCodeName/GetLibName/GetVerNum.
This commit is contained in:
@@ -110,20 +110,16 @@ CWelsDecoder::CWelsDecoder (void)
|
||||
iCurUsed = WelsSnprintf (chFileName, iBufLeft, "bs_0x%p_", (void*)this);
|
||||
iCurUsedSize = WelsSnprintf (chFileNameSize, iBufLeftSize, "size_0x%p_", (void*)this);
|
||||
|
||||
if (iCurUsed > 0) {
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
}
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
if (iBufLeft > 0) {
|
||||
iCurUsed = WelsStrftime (&chFileName[iBufUsed], iBufLeft, "%y%m%d%H%M%S", &sCurTime);
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
}
|
||||
|
||||
if (iCurUsedSize > 0) {
|
||||
iBufUsedSize += iCurUsedSize;
|
||||
iBufLeftSize -= iCurUsedSize;
|
||||
}
|
||||
iBufUsedSize += iCurUsedSize;
|
||||
iBufLeftSize -= iCurUsedSize;
|
||||
if (iBufLeftSize > 0) {
|
||||
iCurUsedSize = WelsStrftime (&chFileNameSize[iBufUsedSize], iBufLeftSize, "%y%m%d%H%M%S", &sCurTime);
|
||||
iBufUsedSize += iCurUsedSize;
|
||||
@@ -132,19 +128,15 @@ CWelsDecoder::CWelsDecoder (void)
|
||||
|
||||
if (iBufLeft > 0) {
|
||||
iCurUsed = WelsSnprintf (&chFileName[iBufUsed], iBufLeft, ".%03.3u.264", WelsGetMillisecond (&sCurTime));
|
||||
if (iCurUsed > 0) {
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
}
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
}
|
||||
|
||||
if (iBufLeftSize > 0) {
|
||||
iCurUsedSize = WelsSnprintf (&chFileNameSize[iBufUsedSize], iBufLeftSize, ".%03.3u.len",
|
||||
WelsGetMillisecond (&sCurTime));
|
||||
if (iCurUsedSize > 0) {
|
||||
iBufUsedSize += iCurUsedSize;
|
||||
iBufLeftSize -= iCurUsedSize;
|
||||
}
|
||||
iBufUsedSize += iCurUsedSize;
|
||||
iBufLeftSize -= iCurUsedSize;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -144,26 +144,20 @@ void WelsLogDefault (void* pCtx, const int32_t kiLevel, const char* kpFmtStr, va
|
||||
|
||||
WelsGetTimeOfDay(&tTime);
|
||||
iCurUsed = WelsSnprintf (&pBuf[iBufUsed], iBufLeft, "[0x%p @ ", pEncCtx); // confirmed_safe_unsafe_usage
|
||||
if (iCurUsed >= 0) {
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
}
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
|
||||
if (iBufLeft > 0) {
|
||||
iCurUsed = GetCodeName (&pBuf[iBufUsed], iBufLeft);
|
||||
if (iCurUsed > 0) {
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
}
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
pBuf[iBufUsed] = ' ';
|
||||
++ iBufUsed;
|
||||
-- iBufLeft;
|
||||
|
||||
iCurUsed = GetLibName (&pBuf[iBufUsed], iBufLeft);
|
||||
if (iCurUsed > 0) {
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
}
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
pBuf[iBufUsed] = ' ';
|
||||
++ iBufUsed;
|
||||
-- iBufLeft;
|
||||
@@ -172,10 +166,8 @@ void WelsLogDefault (void* pCtx, const int32_t kiLevel, const char* kpFmtStr, va
|
||||
++ iBufUsed;
|
||||
-- iBufLeft;
|
||||
iCurUsed = GetVerNum (&pBuf[iBufUsed], iBufLeft);
|
||||
if (iCurUsed > 0) {
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
}
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
pBuf[iBufUsed] = ' ';
|
||||
++ iBufUsed;
|
||||
-- iBufLeft;
|
||||
@@ -183,20 +175,16 @@ void WelsLogDefault (void* pCtx, const int32_t kiLevel, const char* kpFmtStr, va
|
||||
|
||||
if (iBufLeft > 0) {
|
||||
iCurUsed = WelsStrftime (&pBuf[iBufUsed], iBufLeft, "%y-%m-%d %H:%M:%S", &tTime);
|
||||
if (iCurUsed > 0) {
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
}
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
|
||||
if (iBufLeft > 0) {
|
||||
iCurUsed = WelsSnprintf (&pBuf[iBufUsed], iBufLeft, ".%3.3u]: ", tTime.millitm); // confirmed_safe_unsafe_usage
|
||||
if (iCurUsed >= 0) {
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
}
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
@@ -209,18 +197,14 @@ void WelsLogDefault (void* pCtx, const int32_t kiLevel, const char* kpFmtStr, va
|
||||
pStr = GetLogTag (kiLevel, &i_shift);
|
||||
if (NULL != pStr) {
|
||||
iCurUsed = WelsSnprintf (&pBuf[iBufUsed], iBufLeft, "%s ", pStr);
|
||||
if (iCurUsed >= 0) {
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
}
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
}
|
||||
}
|
||||
if (iBufLeft > 0) {
|
||||
iCurUsed = WelsVsnprintf (&pBuf[iBufUsed], iBufLeft, kpFmtStr, argv); // confirmed_safe_unsafe_usage
|
||||
if (iCurUsed > 0) {
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
}
|
||||
iBufUsed += iCurUsed;
|
||||
iBufLeft -= iCurUsed;
|
||||
}
|
||||
#ifdef ENABLE_TRACE_FILE
|
||||
if (NULL != pEncCtx && NULL != pEncCtx->pFileLog) {
|
||||
|
||||
@@ -90,20 +90,16 @@ CWelsH264SVCEncoder::CWelsH264SVCEncoder()
|
||||
iCurUsedSize = WelsSnprintf (strLenFileName, iBufferLeftSize, "enc_size_0x%p_", (void*)this);
|
||||
|
||||
|
||||
if (iCurUsed > 0) {
|
||||
iBufferUsed += iCurUsed;
|
||||
iBufferLeft -= iCurUsed;
|
||||
}
|
||||
iBufferUsed += iCurUsed;
|
||||
iBufferLeft -= iCurUsed;
|
||||
if (iBufferLeft > 0) {
|
||||
iCurUsed = WelsStrftime (&strStreamFileName[iBufferUsed], iBufferLeft, "%y%m%d%H%M%S", &tTime);
|
||||
iBufferUsed += iCurUsed;
|
||||
iBufferLeft -= iCurUsed;
|
||||
}
|
||||
|
||||
if (iCurUsedSize > 0) {
|
||||
iBufferUsedSize += iCurUsedSize;
|
||||
iBufferLeftSize -= iCurUsedSize;
|
||||
}
|
||||
iBufferUsedSize += iCurUsedSize;
|
||||
iBufferLeftSize -= iCurUsedSize;
|
||||
if (iBufferLeftSize > 0) {
|
||||
iCurUsedSize = WelsStrftime (&strLenFileName[iBufferUsedSize], iBufferLeftSize, "%y%m%d%H%M%S", &tTime);
|
||||
iBufferUsedSize += iCurUsedSize;
|
||||
@@ -113,19 +109,15 @@ CWelsH264SVCEncoder::CWelsH264SVCEncoder()
|
||||
if (iBufferLeft > 0) {
|
||||
iCurUsed = WelsSnprintf (&strStreamFileName[iBufferUsed], iBufferLeft, ".%03.3u.264",
|
||||
WelsGetMillisecond(&tTime));
|
||||
if (iCurUsed > 0) {
|
||||
iBufferUsed += iCurUsed;
|
||||
iBufferLeft -= iCurUsed;
|
||||
}
|
||||
iBufferUsed += iCurUsed;
|
||||
iBufferLeft -= iCurUsed;
|
||||
}
|
||||
|
||||
if (iBufferLeftSize > 0) {
|
||||
iCurUsedSize = WelsSnprintf (&strLenFileName[iBufferUsedSize], iBufferLeftSize, ".%03.3u.len",
|
||||
WelsGetMillisecond(&tTime));
|
||||
if (iCurUsedSize > 0) {
|
||||
iBufferUsedSize += iCurUsedSize;
|
||||
iBufferLeftSize -= iCurUsedSize;
|
||||
}
|
||||
iBufferUsedSize += iCurUsedSize;
|
||||
iBufferLeftSize -= iCurUsedSize;
|
||||
}
|
||||
|
||||
m_pFileBs = WelsFopen (strStreamFileName, "wb");
|
||||
|
||||
Reference in New Issue
Block a user