Searched refs:headerInfo (Results 1 – 18 of 18) sorted by relevance
/external/opencore/codecs_v2/video/m4v_h263/dec/src/ |
D | datapart_decode.cpp | 142 uint8 *Mode = video->headerInfo.Mode; in DecodeDataPart_I_VideoPacket() 175 video->headerInfo.CBP[mbnum] = (uint8)((MCBPC >> 4) & 3); in DecodeDataPart_I_VideoPacket() 255 video->headerInfo.CBP[mbnum] |= (uint8)(CBPY << 2); in DecodeDataPart_I_VideoPacket() 307 uint8 *Mode = video->headerInfo.Mode; in DecodeDataPart_P_VideoPacket() 442 video->headerInfo.CBP[mbnum] |= (uint8)(CBPY << 2); in DecodeDataPart_P_VideoPacket() 523 uint8 *Mode = video->headerInfo.Mode; in GetMBheaderDataPart_DQUANT_DC() 579 uint8 *Mode = video->headerInfo.Mode; in GetMBheaderDataPart_P() 609 video->headerInfo.CBP[mbnum] = (uint8)((MCBPC >> 4) & 3); in GetMBheaderDataPart_P() 629 uint CBP = video->headerInfo.CBP[mbnum]; in GetMBData_DataPart() 630 uint8 mode = video->headerInfo.Mode[mbnum]; in GetMBData_DataPart()
|
D | conceal.cpp | 65 video->headerInfo.CBP[mbnum] = 0; in ConcealTexture_I() 94 if (video->headerInfo.Mode[mbnum] & INTER_MASK) in ConcealTexture_P() 100 video->headerInfo.Mode[mbnum] = MODE_SKIPPED; in ConcealTexture_P() 125 video->headerInfo.Mode[i] = MODE_SKIPPED; in ConcealPacket()
|
D | pvdec_api.cpp | 374 video->headerInfo.Mode = (uint8 *)(IMEM_headerInfo_Mode); in PVAllocVideoData() 375 if (video->headerInfo.Mode == NULL) status = PV_FALSE; in PVAllocVideoData() 377 video->headerInfo.CBP = (uint8 *)(IMEM_headerInfo_CBP); in PVAllocVideoData() 378 if (video->headerInfo.CBP == NULL) status = PV_FALSE; in PVAllocVideoData() 415 video->headerInfo.Mode = (uint8 *) oscl_malloc(nTotalMB); in PVAllocVideoData() 416 if (video->headerInfo.Mode == NULL) status = PV_FALSE; in PVAllocVideoData() 418 video->headerInfo.CBP = (uint8 *) oscl_malloc(nTotalMB); in PVAllocVideoData() 419 if (video->headerInfo.CBP == NULL) status = PV_FALSE; in PVAllocVideoData() 575 video->headerInfo.Mode = NULL; in PVCleanUpVideoDecoder() 576 video->headerInfo.CBP = NULL; in PVCleanUpVideoDecoder() [all …]
|
D | combined_decode.cpp | 51 uint8 *Mode = video->headerInfo.Mode; in DecodeFrameCombinedMode() 350 uint8 *Mode = video->headerInfo.Mode; in GetMBheader() 463 video->headerInfo.CBP[mbnum] = (uint8)(CBPY << 2 | (CBPC & 3)); in GetMBheader() 534 uint mode = video->headerInfo.Mode[mbnum]; 535 uint CBP = video->headerInfo.CBP[mbnum];
|
D | dcac_prediction.cpp | 79 if (!comp && x_pos && !(video->headerInfo.Mode[mbnum-1]&INTRA_MASK)) /* not intra */ in doDCACPrediction() 83 if (!comp && y_pos && !(video->headerInfo.Mode[mbnum-nMBPerRow]&INTRA_MASK)) /* not intra */ in doDCACPrediction() 226 uint8 *mode = video->headerInfo.Mode; in doDCACPrediction_I()
|
D | mp4lib_int.h | 227 HeaderInfoDecVideo headerInfo; /* MB Header information */ member
|
D | vlc_dequant.cpp | 58 uint CBP = video->headerInfo.CBP[mbnum]; in VlcDequantMpegIntraBlock() 509 uint CBP = video->headerInfo.CBP[mbnum]; in VlcDequantH263IntraBlock() 811 uint CBP = video->headerInfo.CBP[mbnum]; in VlcDequantH263IntraBlock_SH()
|
D | vop.cpp | 1588 …ock(video->currVop->yChan, video->width, video->height, video->QPMB, video->headerInfo.Mode, 0, 0); in PV_DecodeVop() 1589 …Vop->uChan, video->width >> 1, video->height >> 1, video->QPMB, video->headerInfo.Mode, 1, video->… in PV_DecodeVop() 1590 …Vop->vChan, video->width >> 1, video->height >> 1, video->QPMB, video->headerInfo.Mode, 1, video->… in PV_DecodeVop()
|
D | mb_motion_comp.cpp | 188 mode = video->headerInfo.Mode[mbnum]; in MBMotionComp()
|
/external/opencore/codecs_v2/video/m4v_h263/enc/src/ |
D | vlc_encode.cpp | 891 UChar Mode = video->headerInfo.Mode[video->mbnum]; in MBVlcEncodeDataPar_I_VOP() 906 CBP = video->headerInfo.CBP[mbnum]; in MBVlcEncodeDataPar_I_VOP() 980 UChar Mode = video->headerInfo.Mode[mbnum]; in MBVlcEncodeDataPar_P_VOP() 1009 CBP = video->headerInfo.CBP[mbnum]; in MBVlcEncodeDataPar_P_VOP() 1029 Mode = video->headerInfo.Mode[video->mbnum] = MODE_SKIPPED; in MBVlcEncodeDataPar_P_VOP() 1034 Mode = video->headerInfo.Mode[video->mbnum] = MODE_SKIPPED; in MBVlcEncodeDataPar_P_VOP() 1137 UChar Mode = video->headerInfo.Mode[video->mbnum]; in MBVlcEncodeCombined_I_VOP() 1138 UChar CBP = video->headerInfo.CBP[video->mbnum]; in MBVlcEncodeCombined_I_VOP() 1163 CBP = video->headerInfo.CBP[mbnum]; in MBVlcEncodeCombined_I_VOP() 1254 UChar Mode = video->headerInfo.Mode[mbnum]; in MBVlcEncodeCombined_P_VOP() [all …]
|
D | fastcodemb.cpp | 55 UChar Mode = video->headerInfo.Mode[mbnum]; in CodeMB_H263() 249 video->headerInfo.CBP[mbnum] = CBP; /* 5/18/2001 */ in CodeMB_H263() 284 UChar Mode = video->headerInfo.Mode[mbnum]; in CodeMB_MPEG() 470 video->headerInfo.CBP[mbnum] = CBP; /* 5/18/2001 */ in CodeMB_MPEG()
|
D | datapart_encode.cpp | 216 UChar mode, *Mode = video->headerInfo.Mode; in EncodeSliceDataPartMode() 363 CBP = video->headerInfo.CBP[mbnum]; in EncodeSliceDataPartMode() 421 video->headerInfo.CBP[mbnum] = CBP; in EncodeSliceDataPartMode()
|
D | combined_encode.cpp | 268 UChar *Mode = video->headerInfo.Mode; in EncodeSliceCombinedMode() 441 CBP = video->headerInfo.CBP[mbnum]; in EncodeSliceCombinedMode() 492 video->headerInfo.CBP[mbnum] = CBP; in EncodeSliceCombinedMode()
|
D | mp4enc_api.cpp | 650 …video->headerInfo.Mode = (UChar *) M4VENC_MALLOC(sizeof(UChar) * nTotalMB); /* Memory for MB Modes… in PVInitVideoEncoder() 651 if (video->headerInfo.Mode == NULL) goto CLEAN_UP; in PVInitVideoEncoder() 652 …video->headerInfo.CBP = (UChar *) M4VENC_MALLOC(sizeof(UChar) * nTotalMB); /* Memory for CBP (Y … in PVInitVideoEncoder() 653 if (video->headerInfo.CBP == NULL) goto CLEAN_UP; in PVInitVideoEncoder() 1119 if (video->headerInfo.Mode)M4VENC_FREE(video->headerInfo.Mode); in PVCleanUpVideoEncoder() 1120 if (video->headerInfo.CBP)M4VENC_FREE(video->headerInfo.CBP); in PVCleanUpVideoEncoder()
|
D | mp4lib_int.h | 391 HeaderInfoEncVideo headerInfo; /* MB Header information */ member
|
D | vop.cpp | 47 UChar *Mode = video->headerInfo.Mode; in EncodeVop()
|
D | motion_est.cpp | 147 UChar *mode_mb, *Mode = video->headerInfo.Mode; in MotionEstimation()
|
D | motion_comp.cpp | 109 Int mode = video->headerInfo.Mode[mbnum]; /* get mode */ in getMotionCompensatedMB()
|