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

Method WelsPreprocessCreate

codec/encoder/core/src/wels_preprocess.cpp:123–136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

121}
122
123int32_t CWelsPreProcess::WelsPreprocessCreate() {
124 if (m_pInterfaceVp == NULL) {
125 WelsCreateVpInterface ((void**) &m_pInterfaceVp, WELSVP_INTERFACE_VERION);
126 if (!m_pInterfaceVp)
127 goto exit;
128 } else
129 goto exit;
130
131 return 0;
132
133exit:
134 WelsPreprocessDestroy();
135 return 1;
136}
137
138int32_t CWelsPreProcess::WelsPreprocessDestroy() {
139 WelsDestroyVpInterface (m_pInterfaceVp, WELSVP_INTERFACE_VERION);

Callers

nothing calls this directly

Calls 1

WelsCreateVpInterfaceFunction · 0.85

Tested by

no test coverage detected