MCPcopy Create free account
hub / github.com/cisco/openh264 / CreateSpecificVpInterface

Function CreateSpecificVpInterface

codec/processing/src/common/WelsFrameWork.cpp:65–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63}
64
65WELSVP_NAMESPACE_BEGIN
66
67///////////////////////////////////////////////////////////////////////
68
69EResult CreateSpecificVpInterface (IWelsVP** ppCtx) {
70 EResult eReturn = RET_FAILED;
71
72 CVpFrameWork* pFr = new CVpFrameWork (1, eReturn);
73 if (pFr) {
74 *ppCtx = (IWelsVP*)pFr;
75 eReturn = RET_SUCCESS;
76 }
77
78 return eReturn;
79}
80
81EResult DestroySpecificVpInterface (IWelsVP* pCtx) {
82 delete pCtx;

Callers 1

WelsCreateVpInterfaceFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected