Home
last modified time | relevance | path

Searched refs:BsWriteUE (Results 1 – 6 of 6) sorted by relevance

/third_party/openh264/codec/encoder/core/src/
Dau_set.cpp240 BsWriteUE (pLocalBitStringAux, 0); //max_bytes_per_pic_denom in WelsWriteVUI()
241 BsWriteUE (pLocalBitStringAux, 0); //max_bits_per_mb_denom in WelsWriteVUI()
242 BsWriteUE (pLocalBitStringAux, 16); //log2_max_mv_length_horizontal in WelsWriteVUI()
243 BsWriteUE (pLocalBitStringAux, 16); //log2_max_mv_length_vertical in WelsWriteVUI()
245 BsWriteUE (pLocalBitStringAux, 0); //max_num_reorder_frames in WelsWriteVUI()
246 BsWriteUE (pLocalBitStringAux, pSps->iNumRefFrames); //max_dec_frame_buffering in WelsWriteVUI()
284BsWriteUE (pLocalBitStringAux, pSps->uiSpsId + pSpsIdDelta[pSps->uiSpsId]); // seq_paramete… in WelsWriteSpsSyntax()
290 BsWriteUE (pLocalBitStringAux, 1); //uiChromaFormatIdc, now should be 1 in WelsWriteSpsSyntax()
291 BsWriteUE (pLocalBitStringAux, 0); //uiBitDepthLuma in WelsWriteSpsSyntax()
292 BsWriteUE (pLocalBitStringAux, 0); //uiBitDepthChroma in WelsWriteSpsSyntax()
[all …]
Dsvc_set_mb_syn_cavlc.cpp90 BsWriteUE (pBs, iMbOffset + 0); in WelsSpatialWriteMbPred()
108 BsWriteUE (pBs, g_kiMapModeIntraChroma[pMbCache->uiChmaI8x8Mode]); in WelsSpatialWriteMbPred()
114BsWriteUE (pBs, 1 + iMbOffset + g_kiMapModeI16x16[pMbCache->uiLumaI16x16Mode] + (iCbpChroma << 2) + in WelsSpatialWriteMbPred()
118 BsWriteUE (pBs, g_kiMapModeIntraChroma[pMbCache->uiChmaI8x8Mode]); in WelsSpatialWriteMbPred()
123 BsWriteUE (pBs, 0); //uiMbType in WelsSpatialWriteMbPred()
136 BsWriteUE (pBs, 1); //uiMbType in WelsSpatialWriteMbPred()
153 BsWriteUE (pBs, 2); //uiMbType in WelsSpatialWriteMbPred()
184 BsWriteUE (pBs, 4); in WelsSpatialWriteSubMbPred()
187 BsWriteUE (pBs, 3); in WelsSpatialWriteSubMbPred()
195 BsWriteUE (pBs, 0); in WelsSpatialWriteSubMbPred()
[all …]
Dsvc_encode_slice.cpp226 BsWriteUE (pBs, uiReorderingOfPicNumsIdc); in WriteReferenceReorder()
228 BsWriteUE (pBs, pRefOrdering->SReorderingSyntax[n].uiAbsDiffPicNumMinus1); in WriteReferenceReorder()
230 BsWriteUE (pBs, pRefOrdering->SReorderingSyntax[n].iLongTermPicNum); in WriteReferenceReorder()
255 BsWriteUE (pBs, iMmcoType); in WriteRefPicMarking()
257 BsWriteUE (pBs, sRefMarking->SMmcoRef[n].iDiffOfPicNum - 1); in WriteRefPicMarking()
260 BsWriteUE (pBs, sRefMarking->SMmcoRef[n].iLongTermPicNum); in WriteRefPicMarking()
263 BsWriteUE (pBs, sRefMarking->SMmcoRef[n].iLongTermFrameIdx); in WriteRefPicMarking()
266 BsWriteUE (pBs, sRefMarking->SMmcoRef[n].iMaxLongTermFrameIdx + 1); in WriteRefPicMarking()
282 BsWriteUE (pBs, pSliceHeader->iFirstMbInSlice); in WelsSliceHeaderWrite()
283 BsWriteUE (pBs, pSliceHeader->eSliceType); /* same type things */ in WelsSliceHeaderWrite()
[all …]
/third_party/openh264/codec/common/inc/
Dgolomb_common.h114 static inline int32_t BsWriteUE (PBitStringAux pBitString, const uint32_t kuiValue) { in BsWriteUE() function
146 BsWriteUE (pBitString, iTmpValue); in BsWriteSE()
149 BsWriteUE (pBitString, iTmpValue); in BsWriteSE()
/third_party/openh264/codec/decoder/core/src/
Dau_parser.cpp1203 BsWriteUE (&sSubsetSpsBs, pSps->iSpsId); //sps_id in ParseSps()
1204 BsWriteUE (&sSubsetSpsBs, pSps->uiLog2MaxFrameNum - 4); //log2_max_frame_num_minus4 in ParseSps()
1205 BsWriteUE (&sSubsetSpsBs, pSps->uiPocType); //pic_order_cnt_type in ParseSps()
1207 BsWriteUE (&sSubsetSpsBs, pSps->iLog2MaxPocLsb - 4); //log2_max_pic_order_cnt_lsb_minus4 in ParseSps()
1212BsWriteUE (&sSubsetSpsBs, pSps->iNumRefFramesInPocCycle); //num_ref_frames_in_pic_order_cnt_cycle in ParseSps()
1217 BsWriteUE (&sSubsetSpsBs, pSps->iNumRefFrames); //max_num_ref_frames in ParseSps()
1219 BsWriteUE (&sSubsetSpsBs, pSps->iMbWidth - 1); //pic_width_in_mbs_minus1 in ParseSps()
1220 BsWriteUE (&sSubsetSpsBs, pSps->iMbHeight - 1); //pic_height_in_map_units_minus1 in ParseSps()
1228 BsWriteUE (&sSubsetSpsBs, pSps->sFrameCrop.iLeftOffset); //frame_crop_left_offset in ParseSps()
1229 BsWriteUE (&sSubsetSpsBs, pSps->sFrameCrop.iRightOffset); //frame_crop_right_offset in ParseSps()
[all …]
/third_party/openh264/codec/encoder/core/inc/
Dsvc_enc_golomb.h104 BsWriteUE (pBs, kuiValue); in BsWriteTE()