Lines Matching refs:pu32Dst608Len
5114 …CC_Parse_CC_data(MS_U8 u8CCMode,MS_U8 **pSrc, MS_U8 *pDst608, MS_U32 *pu32Dst608Len, MS_U8 *pDst70… in _HVD_CC_Parse_CC_data() argument
5161 if( ( (*pu32Dst608Len) + 16) > MAX_608_CC_LEN) in _HVD_CC_Parse_CC_data()
5163 … HVD_MSG_ERR("u32Dst608Len+16: %ld is larger than MAX_608_CC_LEN !! \n",((*pu32Dst608Len)+16)); in _HVD_CC_Parse_CC_data()
5169 if( ( (*pu32Dst608Len) + 4) > MAX_608_CC_LEN) in _HVD_CC_Parse_CC_data()
5171 … HVD_MSG_ERR("u32Dst608Len+4: %ld is larger than MAX_608_CC_LEN !! \n",((*pu32Dst608Len)+4)); in _HVD_CC_Parse_CC_data()
5176 pDst608[(*pu32Dst608Len)++] = u8CC_Data1; in _HVD_CC_Parse_CC_data()
5177 pDst608[(*pu32Dst608Len)++] = u8CC_Data2; in _HVD_CC_Parse_CC_data()
5178 pDst608[(*pu32Dst608Len)++] = u8CC_Type; in _HVD_CC_Parse_CC_data()
5179 pDst608[(*pu32Dst608Len)++] = 0; in _HVD_CC_Parse_CC_data()
5185 pDst608[(*pu32Dst608Len)++] = (pEhInfo608->u16TmpRef&0xff); in _HVD_CC_Parse_CC_data()
5186 pDst608[(*pu32Dst608Len)++] = ((pEhInfo608->u16TmpRef>>8)&0xff); in _HVD_CC_Parse_CC_data()
5187 pDst608[(*pu32Dst608Len)++] = (pEhInfo608->u16PicStruct&0xff); in _HVD_CC_Parse_CC_data()
5188 pDst608[(*pu32Dst608Len)++] = ((pEhInfo608->u16PicStruct>>8)&0xff); in _HVD_CC_Parse_CC_data()
5189 pDst608[(*pu32Dst608Len)++] = (pEhInfo608->u32Pts&0xff); in _HVD_CC_Parse_CC_data()
5190 pDst608[(*pu32Dst608Len)++] = ((pEhInfo608->u32Pts>>8)&0xff); in _HVD_CC_Parse_CC_data()
5191 pDst608[(*pu32Dst608Len)++] = ((pEhInfo608->u32Pts>>16)&0xff); in _HVD_CC_Parse_CC_data()
5192 pDst608[(*pu32Dst608Len)++] = ((pEhInfo608->u32Pts>>24)&0xff); in _HVD_CC_Parse_CC_data()
5193 pDst608[(*pu32Dst608Len)++] = pEhInfo608->u8UsrDataCnt; in _HVD_CC_Parse_CC_data()
5196 u32Pad = (*pu32Dst608Len) & 0xf; //align to 16 byte in _HVD_CC_Parse_CC_data()
5199 pDst608[(*pu32Dst608Len)++] = 0xff; in _HVD_CC_Parse_CC_data()
5235 u32Pad = (*pu32Dst608Len) & 0xf; in _HVD_CC_Parse_CC_data()
5238 if((u32Pad + (*pu32Dst608Len)) > MAX_608_CC_LEN) in _HVD_CC_Parse_CC_data()
5240 …ERR("u32Dst608Len:%ld + u32Pad: %ld is larger than MAX_608_CC_LEN !! \n",(*pu32Dst608Len), u32Pad); in _HVD_CC_Parse_CC_data()
5244 pDst608[(*pu32Dst608Len)++] = 0xff; in _HVD_CC_Parse_CC_data()
5253 static void _HVD_CC_Extract_CCdata(MS_U8 *pDst608Buf ,MS_U32 *pu32Dst608Len,MS_U8 *pDst708Buf ,MS_U… in _HVD_CC_Extract_CCdata() argument
5338 …_CC_Parse_CC_data(pCCInfo->u8ParsingStatus,&pUserDataBuf, pDst608Buf, pu32Dst608Len, pDst708Buf, p… in _HVD_CC_Extract_CCdata()