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

Function WelsInitDecoder

codec/decoder/core/src/decoder.cpp:690–697  ·  view source on GitHub ↗

! ************************************************************************************* * \brief Initialize Wels decoder parameters and memory * * \param pCtx input context to be initialized at first stage * * \return 0 - successed * \return 1 - failed * * \note N/A ************************************************************************************* */

Source from the content-addressed store, hash-verified

688 *************************************************************************************
689 */
690int32_t WelsInitDecoder (PWelsDecoderContext pCtx, SLogContext* pLogCtx) {
691 if (pCtx == NULL) {
692 return ERR_INFO_INVALID_PTR;
693 }
694
695 // open decoder
696 return WelsOpenDecoder (pCtx, pLogCtx);
697}
698
699/*!
700 *************************************************************************************

Callers 2

InitDecoderFunction · 0.85
InitDecoderCtxMethod · 0.85

Calls 1

WelsOpenDecoderFunction · 0.85

Tested by

no test coverage detected