Fix the format string in a log message
The compiler warned about unknown conversion type and too many arguments for the format.
This commit is contained in:
parent
758e89208e
commit
a4e1639529
@ -120,7 +120,7 @@ int32_t ParamValidation (SWelsSvcCodingParam* pCfg) {
|
||||
iTotalBitrate += fDlp->iSpatialBitrate;
|
||||
}
|
||||
if(iTotalBitrate > pCfg->iTargetBitrate){
|
||||
WelsLog(NULL, WELS_LOG_ERROR,"Invalid setttings in bitrate. the sum of each layer bitrate(%) is larger than total bitrate setting(%d)\n",
|
||||
WelsLog(NULL, WELS_LOG_ERROR,"Invalid setttings in bitrate. the sum of each layer bitrate(%d) is larger than total bitrate setting(%d)\n",
|
||||
iTotalBitrate,pCfg->iTargetBitrate);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user