Use the actual struct type instead of a void pointer to the decoder Initialize method

This commit is contained in:
Martin Storsjö
2014-02-18 12:59:14 +02:00
parent 658d1e3651
commit 1075338b9b
6 changed files with 7 additions and 7 deletions

View File

@@ -350,7 +350,7 @@ void WelsCloseDecoder (PWelsDecoderContext pCtx) {
/*!
* \brief configure decoder parameters
*/
int32_t DecoderConfigParam (PWelsDecoderContext pCtx, const void* kpParam) {
int32_t DecoderConfigParam (PWelsDecoderContext pCtx, const SDecodingParam* kpParam) {
if (NULL == pCtx || NULL == kpParam)
return 1;