Searched refs:u32codeword (Results 1 – 1 of 1) sorted by relevance
| /utopia/UTPA2-700.0.x/modules/vdec_lite/drv/hvd_lite/ |
| H A D | HVD_EX_Common.c | 429 MS_U32 u32codeword = 0; in _HVD_EX_DemuxTS_ReadSyntaxElement_FLC() local 430 … u16readbitLen = _HVD_EX_DemuxTS_GetBits(buffer, *u16bitLen, &u32codeword, bufferLen, u16ReadBits); in _HVD_EX_DemuxTS_ReadSyntaxElement_FLC() 431 HVD_EX_MSG_DBG("BitLen=%d, Readbits=%d, Codeword=%d.\n",*u16bitLen,u16readbitLen,u32codeword); in _HVD_EX_DemuxTS_ReadSyntaxElement_FLC() 437 return u32codeword; in _HVD_EX_DemuxTS_ReadSyntaxElement_FLC() 493 MS_U32 u32codeword = 0; in _HVD_EX_DemuxTS_ReadSyntaxElement_VLC() local 494 u16readbitLen = _HVD_EX_DemuxTS_GetVLCSymbol(buffer, *u16bitLen, &u32codeword, bufferLen); in _HVD_EX_DemuxTS_ReadSyntaxElement_VLC() 495 u32codeword = (1 << (u16readbitLen >> 1)) + u32codeword - 1; in _HVD_EX_DemuxTS_ReadSyntaxElement_VLC() 496 HVD_EX_MSG_DBG("BitLen=%d, Readbits=%d, Codeword=%d.\n",*u16bitLen,u16readbitLen,u32codeword); in _HVD_EX_DemuxTS_ReadSyntaxElement_VLC() 500 MS_U32 u32codewordtmp = u32codeword; in _HVD_EX_DemuxTS_ReadSyntaxElement_VLC() 501 u32codeword = (u32codewordtmp + 1) >> 1; in _HVD_EX_DemuxTS_ReadSyntaxElement_VLC() [all …]
|