Home
last modified time | relevance | path

Searched refs:iCode (Results 1 – 5 of 5) sorted by relevance

/third_party/openh264/codec/decoder/core/src/
Dparse_mb_syn_cavlc.cpp1078 int32_t iCode; in ParseInterInfo() local
1117 WELS_READ_VERIFY (BsGetSe (pBs, &iCode)); //mvd_l0[ mbPartIdx ][ 0 ][ compIdx ] in ParseInterInfo()
1118 iMv[0] += iCode; in ParseInterInfo()
1119 WELS_READ_VERIFY (BsGetSe (pBs, &iCode)); //mvd_l1[ mbPartIdx ][ 0 ][ compIdx ] in ParseInterInfo()
1120 iMv[1] += iCode; in ParseInterInfo()
1156 WELS_READ_VERIFY (BsGetSe (pBs, &iCode)); //mvd_l0[ mbPartIdx ][ 0 ][ compIdx ] in ParseInterInfo()
1157 iMv[0] += iCode; in ParseInterInfo()
1158 WELS_READ_VERIFY (BsGetSe (pBs, &iCode)); //mvd_l1[ mbPartIdx ][ 0 ][ compIdx ] in ParseInterInfo()
1159 iMv[1] += iCode; in ParseInterInfo()
1198 WELS_READ_VERIFY (BsGetSe (pBs, &iCode)); //mvd_l0[ mbPartIdx ][ 0 ][ compIdx ] in ParseInterInfo()
[all …]
Dau_parser.cpp725 int32_t iCode; in DecodeSpsSvcExt() local
760 WELS_READ_VERIFY (BsGetSe (pBs, &iCode)); //seq_scaled_ref_layer_left_offset in DecodeSpsSvcExt()
761 kpPos->iLeftOffset = iCode; in DecodeSpsSvcExt()
764 WELS_READ_VERIFY (BsGetSe (pBs, &iCode)); //seq_scaled_ref_layer_top_offset in DecodeSpsSvcExt()
765 kpPos->iTopOffset = iCode; in DecodeSpsSvcExt()
768 WELS_READ_VERIFY (BsGetSe (pBs, &iCode)); //seq_scaled_ref_layer_right_offset in DecodeSpsSvcExt()
769 kpPos->iRightOffset = iCode; in DecodeSpsSvcExt()
772 WELS_READ_VERIFY (BsGetSe (pBs, &iCode)); //seq_scaled_ref_layer_bottom_offset in DecodeSpsSvcExt()
773 kpPos->iBottomOffset = iCode; in DecodeSpsSvcExt()
922 int32_t iCode; in ParseSps() local
[all …]
Ddecoder_core.cpp323 int32_t iCode; in ParsePredWeightedTable() local
346 WELS_READ_VERIFY (BsGetSe (pBs, &iCode)); in ParsePredWeightedTable()
347 WELS_CHECK_SE_BOTH_ERROR_NOLOG (iCode, -128, 127, "luma_weight", in ParsePredWeightedTable()
349 pSh->sPredWeightTable.sPredList[iList].iLumaWeight[i] = iCode; in ParsePredWeightedTable()
351 WELS_READ_VERIFY (BsGetSe (pBs, &iCode)); in ParsePredWeightedTable()
352 WELS_CHECK_SE_BOTH_ERROR_NOLOG (iCode, -128, 127, "luma_offset", in ParsePredWeightedTable()
354 pSh->sPredWeightTable.sPredList[iList].iLumaOffset[i] = iCode; in ParsePredWeightedTable()
369 WELS_READ_VERIFY (BsGetSe (pBs, &iCode)); in ParsePredWeightedTable()
370 WELS_CHECK_SE_BOTH_ERROR_NOLOG (iCode, -128, 127, "chroma_weight", in ParsePredWeightedTable()
372 pSh->sPredWeightTable.sPredList[iList].iChromaWeight[i][j] = iCode; in ParsePredWeightedTable()
[all …]
Ddecode_slice.cpp456 int32_t iCode; in ParseIntra4x4Mode() local
462 WELS_READ_VERIFY (ParseIntraPredModeLumaCabac (pCtx, iCode)); in ParseIntra4x4Mode()
463 iPrevIntra4x4PredMode = iCode; in ParseIntra4x4Mode()
505 WELS_READ_VERIFY (ParseIntraPredModeChromaCabac (pCtx, uiNeighAvail, iCode)); in ParseIntra4x4Mode()
506 if (iCode > MAX_PRED_MODE_ID_CHROMA) { in ParseIntra4x4Mode()
509 pCurDqLayer->pChromaPredMode[iMbXy] = iCode; in ParseIntra4x4Mode()
535 int32_t iCode; in ParseIntra8x8Mode() local
545 WELS_READ_VERIFY (ParseIntraPredModeLumaCabac (pCtx, iCode)); in ParseIntra8x8Mode()
546 iPrevIntra4x4PredMode = iCode; in ParseIntra8x8Mode()
589 WELS_READ_VERIFY (ParseIntraPredModeChromaCabac (pCtx, uiNeighAvail, iCode)); in ParseIntra8x8Mode()
[all …]
/third_party/sqlite/src/
Dsqlite3.c84505 SQLITE_PRIVATE void sqlite3ExpirePreparedStatements(sqlite3 *db, int iCode){
84508 p->expired = iCode+1;
122059 static const unsigned char iCode[] = {
122074 u8 prevcode = iCode[zIn[i]&0x7f];
122077 int code = iCode[zIn[i]&0x7f];
191249 unsigned int iCode;
191255 READ_UTF8(z, zTerm, iCode);
191256 assert( (sqlite3FtsUnicodeIsalnum((int)iCode) & 0xFFFFFFFE)==0 );
191257 if( sqlite3FtsUnicodeIsalnum((int)iCode)!=bAlnum
191258 && sqlite3FtsUnicodeIsdiacritic((int)iCode)==0
[all …]