Home
last modified time | relevance | path

Searched refs:DecodeParser (Results 1 – 8 of 8) sorted by relevance

/third_party/openh264/codec/api/svc/
Dcodec_api.h429 virtual DECODING_STATE EXTAPI DecodeParser (const unsigned char* pSrc,
521 DECODING_STATE (*DecodeParser) (ISVCDecoder*, const unsigned char* pSrc,
/third_party/openh264/test/api/
Ddecode_api_test.cpp918 rv = decoder_->DecodeParser (info.sLayerInfo[0].pBsBuf, iLen, &BsInfo_); in TEST_F()
921 rv = decoder_->DecodeParser (NULL, 0, &BsInfo_); in TEST_F()
988 rv = decoder_->DecodeParser (info.sLayerInfo[0].pBsBuf + iTotalSliceSize, iLen, &BsInfo_); in TEST_F()
991 rv = decoder_->DecodeParser (NULL, 0, &BsInfo_); in TEST_F()
995 rv = decoder_->DecodeParser (info.sLayerInfo[0].pBsBuf, iLen, &BsInfo_); in TEST_F()
998 rv = decoder_->DecodeParser (NULL, 0, &BsInfo_); in TEST_F()
1043 rv = decoder_->DecodeParser (info.sLayerInfo[0].pBsBuf, iLen, &BsInfo_); in TEST_F()
1046 rv = decoder_->DecodeParser (NULL, 0, &BsInfo_); in TEST_F()
1255 rv = decoder_->DecodeParser (ucBuf_, iDecAuSize, &BsInfo_); in TEST_F()
1256 rv = decoder_->DecodeParser (NULL, 0, &BsInfo_); //reconstruction in TEST_F()
Dc_interface_test.c31 CHECK (7, p, DecodeParser); in CheckDecoderInterface()
Dcpp_interface_test.cpp100 virtual DECODING_STATE EXTAPI DecodeParser (const unsigned char* pSrc, in DecodeParser() function
/third_party/openh264/codec/decoder/plus/inc/
DwelsDecoderExt.h97 virtual DECODING_STATE EXTAPI DecodeParser (const unsigned char* kpSrc,
/third_party/openh264/test/decoder/
DDecUT_ParseSyntax.cpp349 iRet |= m_pDec->DecodeParser (pBuf + iBufPos, iSliceSize, &m_sParserBsInfo); in ParseBs()
350 iRet |= m_pDec->DecodeParser (NULL, 0, &m_sParserBsInfo); in ParseBs()
DDecUT_DecExt.cpp291 iRet = (int32_t) m_pDec->DecodeParser (m_szBuffer, m_iBufLength, &m_sParserBsInfo); in TestParseOnlyAPI()
324 iRet = (int32_t) m_pDec->DecodeParser (m_szBuffer, m_iBufLength, &m_sParserBsInfo); in TestParseOnlyAPI()
/third_party/openh264/codec/decoder/plus/src/
DwelsDecoderExt.cpp1214 DECODING_STATE CWelsDecoder::DecodeParser (const unsigned char* kpSrc, const int kiSrcLen, SParserB… in DecodeParser() function in WelsDec::CWelsDecoder