| 35 | /////////////////////////////////////////////////////////////////////// |
| 36 | |
| 37 | WELSVP_NAMESPACE_BEGIN |
| 38 | |
| 39 | EResult Init (void* pCtx, int32_t iType, void* pCfg) { |
| 40 | return pCtx ? WelsStaticCast (IWelsVP*, pCtx)->Init (iType, pCfg) : RET_INVALIDPARAM; |
| 41 | } |
| 42 | EResult Uninit (void* pCtx, int32_t iType) { |
| 43 | return pCtx ? WelsStaticCast (IWelsVP*, pCtx)->Uninit (iType) : RET_INVALIDPARAM; |
| 44 | } |